32 lines
724 B
TypeScript
32 lines
724 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
|
|
const config: Config = {
|
|
content: [
|
|
'./app/**/*.{js,ts,jsx,tsx}',
|
|
'./components/**/*.{js,ts,jsx,tsx}',
|
|
'./hooks/**/*.{js,ts,jsx,tsx}',
|
|
'./lib/**/*.{js,ts,jsx,tsx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
warm: {
|
|
base: '#f6f0e1',
|
|
panel: '#fff8e6',
|
|
accent: '#d1432d',
|
|
'accent-strong': '#b83822',
|
|
muted: '#7a5b46',
|
|
danger: '#8c2f2f',
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ['var(--font-body)', 'Noto Sans TC', 'PingFang TC', 'Heiti TC', 'sans-serif'],
|
|
mono: ['var(--font-matrix)', 'VT323', 'monospace'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|