jan/web/tailwind.config.js
2023-10-20 11:29:10 +07:00

23 lines
654 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: ['./app/**/*.{js,ts,jsx,tsx,mdx}'],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
animation: {
bounce200: 'bounce 1s infinite 200ms',
bounce400: 'bounce 1s infinite 400ms',
},
colors: {
'hover-light': { DEFAULT: '#F9FAFB' },
},
},
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')],
}