17 lines
363 B
JavaScript
17 lines
363 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
mode: 'jit',
|
|
content: ['./app/**/*.{js,ts,jsx,tsx}', './ui/**/*.{js,ts,jsx,tsx}'],
|
|
future: {
|
|
hoverOnlyWhenSupported: true
|
|
},
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'light-dark': '#282828',
|
|
dark: '#202020'
|
|
}
|
|
}
|
|
},
|
|
plugins: [require('@tailwindcss/forms')]
|
|
};
|