2023-02-13 15:58:35 -05:00
|
|
|
// const { fontFamily } = require('tailwindcss/defaultTheme');
|
|
|
|
|
2023-02-04 18:17:47 -05:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
|
|
|
content: ['./src/**/*.{js,jsx,ts,tsx}'],
|
2023-02-13 15:58:35 -05:00
|
|
|
// darkMode: 'class',
|
|
|
|
darkMode: ['class'],
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
// fontFamily: {
|
|
|
|
// sans: ['var(--font-sans)', ...fontFamily.sans]
|
|
|
|
// },
|
|
|
|
keyframes: {
|
|
|
|
'accordion-down': {
|
|
|
|
from: { height: 0 },
|
|
|
|
to: { height: 'var(--radix-accordion-content-height)' }
|
|
|
|
},
|
|
|
|
'accordion-up': {
|
|
|
|
from: { height: 'var(--radix-accordion-content-height)' },
|
|
|
|
to: { height: 0 }
|
|
|
|
}
|
|
|
|
},
|
|
|
|
animation: {
|
|
|
|
'accordion-down': 'accordion-down 0.2s ease-out',
|
|
|
|
'accordion-up': 'accordion-up 0.2s ease-out'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2023-02-23 23:56:55 -05:00
|
|
|
plugins: [
|
|
|
|
require('tailwindcss-animate'),
|
|
|
|
// require('@tailwindcss/typography'),
|
|
|
|
]
|
2023-02-04 18:17:47 -05:00
|
|
|
};
|