peer-at-code-web/tailwind.config.js
2023-02-04 20:34:15 +01:00

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')]
};