20 lines
399 B
TypeScript
20 lines
399 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
import colors from 'tailwindcss/colors';
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./index.html', './src/**/*.{js,jsx,ts,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
gray: colors.neutral,
|
|
},
|
|
},
|
|
},
|
|
darkMode: 'class',
|
|
corePlugins: {
|
|
preflight: false,
|
|
},
|
|
plugins: [],
|
|
} satisfies Config;
|