2022-11-22 09:28:51 -08:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
|
module.exports = {
|
|
|
|
|
mode: 'jit',
|
|
|
|
|
content: [
|
|
|
|
|
"./index.html",
|
|
|
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
|
|
|
],
|
|
|
|
|
theme: {
|
2022-11-27 23:46:00 -05:00
|
|
|
extend: {
|
|
|
|
|
animation: {
|
|
|
|
|
fadeIn: "fadeIn 1s ease-in forwards"
|
|
|
|
|
},
|
|
|
|
|
keyframes: {
|
|
|
|
|
fadeIn: {
|
|
|
|
|
"0%": { opacity: 0 },
|
|
|
|
|
"100%": { opacity: 1 }
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
2022-11-22 09:28:51 -08:00
|
|
|
},
|
2022-11-24 20:34:49 -05:00
|
|
|
plugins: [
|
|
|
|
|
require('@tailwindcss/typography'),
|
|
|
|
|
require("daisyui")
|
|
|
|
|
],
|
|
|
|
|
daisyui: {
|
|
|
|
|
styled: true,
|
|
|
|
|
themes: true,
|
|
|
|
|
base: true,
|
|
|
|
|
utils: true,
|
|
|
|
|
logs: true,
|
|
|
|
|
rtl: false,
|
|
|
|
|
darkTheme: "dark",
|
|
|
|
|
}
|
2022-11-22 09:28:51 -08:00
|
|
|
}
|