tianji/src/client/tailwind.config.ts

27 lines
501 B
TypeScript
Raw Normal View History

2023-12-08 13:49:49 +00:00
import type { Config } from 'tailwindcss';
import colors from 'tailwindcss/colors';
/** @type {import('tailwindcss').Config} */
module.exports = {
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;