This commit is contained in:
yinsx
2026-01-05 10:16:36 +08:00
commit f94ffe0adc
41 changed files with 4387 additions and 0 deletions

16
tailwind.config.js Normal file
View File

@ -0,0 +1,16 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['Inter', '-apple-system', 'BlinkMacSystemFont', '"Segoe UI"', 'Roboto', 'sans-serif'],
mono: ['"SFMono-Regular"', 'Consolas', '"Liberation Mono"', 'Menlo', 'monospace'],
},
boxShadow: {
subtle: '0 10px 30px rgba(0,0,0,0.04)',
},
},
},
plugins: [],
}