Files
portfolio-website/tailwind.config.cjs
T
2022-11-27 23:46:00 -05:00

35 lines
608 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
mode: 'jit',
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
animation: {
fadeIn: "fadeIn 1s ease-in forwards"
},
keyframes: {
fadeIn: {
"0%": { opacity: 0 },
"100%": { opacity: 1 }
}
},
},
},
plugins: [
require('@tailwindcss/typography'),
require("daisyui")
],
daisyui: {
styled: true,
themes: true,
base: true,
utils: true,
logs: true,
rtl: false,
darkTheme: "dark",
}
}