first commit

This commit is contained in:
dekun
2026-05-28 21:43:23 +08:00
commit 1d5c97904f
33 changed files with 5250 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{vue,js}'],
theme: {
extend: {
colors: {
dark: {
bg: '#0a0a0a',
card: '#141414',
border: '#262626',
hover: '#1f1f1f',
text: '#e5e5e5',
muted: '#737373',
accent: '#3b82f6',
success: '#22c55e',
warning: '#eab308',
danger: '#ef4444',
},
},
},
},
plugins: [],
}