first day of vibe coding

This commit is contained in:
k
2026-04-20 22:11:18 +08:00
commit 1747fc489f
38 changed files with 15267 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./app/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
],
theme: {
extend: {
colors: {
'bg-base': '#000000',
'bg-card': '#0a0a0a',
'bg-deep': '#050505',
'bg-hover': '#0d0d0d',
'bg-input': '#060606',
'border-default': '#141414',
'border-hover': '#222222',
'text-primary': '#ffffff',
'text-secondary': '#e2e8f0',
'text-muted': '#555555',
'text-faint': '#333333',
accent: '#f97316',
'accent-hover': '#fb923c',
green: '#4ade80',
red: '#ef4444',
purple: '#818cf8',
},
},
},
plugins: [],
}
export default config