2023-12-08 13:49:49 +00:00
|
|
|
import type { Config } from 'tailwindcss';
|
|
|
|
import colors from 'tailwindcss/colors';
|
|
|
|
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2024-01-20 08:22:44 +00:00
|
|
|
content: {
|
|
|
|
relative: true,
|
|
|
|
files: [
|
|
|
|
'./index.html',
|
|
|
|
'./components/**/*.{js,jsx,ts,tsx}',
|
|
|
|
'./pages/**/*.{js,jsx,ts,tsx}',
|
|
|
|
],
|
|
|
|
},
|
2023-12-08 13:49:49 +00:00
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
colors: {
|
|
|
|
gray: colors.neutral,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
darkMode: 'class',
|
|
|
|
corePlugins: {
|
|
|
|
preflight: false,
|
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
} satisfies Config;
|