1
0

Basic navbar, tailwindcss setup, and other stuff

This commit is contained in:
Ahmed Al-Taiar
2023-10-24 20:45:30 -04:00
parent 703c73e058
commit 2f753308b1
20 changed files with 729 additions and 21 deletions

View File

@ -0,0 +1,8 @@
const path = require('path')
module.exports = {
plugins: [
require('tailwindcss')(path.resolve(__dirname, 'tailwind.config.js')),
require('autoprefixer'),
],
}

View File

@ -0,0 +1,19 @@
/** @type {import('tailwindcss').Config} */
export const content = ['src/**/*.{js,jsx,ts,tsx}']
export const theme = {
extend: {
fontFamily: {
inter: ['Inter', 'sans-serif'],
},
colors: {
logo: {
DEFAULT: '#246EB9',
hover: '#1f5d9d',
},
},
},
}
export const plugins = [require('daisyui')]
export const daisyui = {
themes: ['light', 'dark'],
}