2024-01-15 13:28:35 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
export default {
|
2024-03-09 09:43:55 +00:00
|
|
|
darkMode: ['class', '[data-theme="dark"]'],
|
2024-01-15 13:28:35 +00:00
|
|
|
content: [
|
|
|
|
"./index.html",
|
|
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
|
|
],
|
|
|
|
theme: {
|
2024-03-11 07:17:44 +00:00
|
|
|
extend: {
|
|
|
|
animation: {
|
|
|
|
marquee: 'marquee 30s linear infinite'
|
|
|
|
},
|
|
|
|
keyframes: {
|
|
|
|
marquee: {
|
|
|
|
'0%': { transform: 'translateX(100%)' },
|
|
|
|
'100%': { transform: 'translateX(-160%)' }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2024-01-15 13:28:35 +00:00
|
|
|
},
|
2024-03-05 09:38:41 +00:00
|
|
|
plugins: [
|
|
|
|
require('@tailwindcss/typography'),
|
|
|
|
],
|
2024-01-15 13:28:35 +00:00
|
|
|
}
|