This commit is contained in:
zhangyonghao
2026-03-21 17:16:13 +08:00
commit 6cf78d4c86
31 changed files with 970 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
background: 'oklch(0.9816 0.0017 247.8577)',
foreground: 'oklch(0.1221 0 0)',
card: 'oklch(0.9911 0 0)',
'card-foreground': 'oklch(0.1221 0 0)',
popover: 'oklch(0.9911 0 0)',
'popover-foreground': 'oklch(0.1221 0 0)',
primary: 'oklch(0.6264 0.1942 259.2027)',
'primary-foreground': 'oklch(0.9911 0 0)',
secondary: 'oklch(0.2795 0.0368 259.8165)',
'secondary-foreground': 'oklch(0.9911 0 0)',
muted: 'oklch(0.9700 0 0)',
'muted-foreground': 'oklch(0.5560 0 0)',
accent: 'oklch(0.6755 0.1303 40.7093)',
'accent-foreground': 'oklch(0.9911 0 0)',
destructive: 'oklch(0.6498 0.1805 9.8598)',
'destructive-foreground': 'oklch(0.9911 0 0)',
border: 'oklch(0.9189 0 0)',
input: 'oklch(0.9491 0 0)',
ring: 'oklch(0.6264 0.1942 259.2027)',
},
fontFamily: {
sans: ['var(--font-sans)', 'sans-serif'],
mono: ['var(--font-mono)', 'monospace'],
},
},
},
plugins: [],
};