Initial scaffold: React+TS+Vite frontend, FastAPI backend, config system

This commit is contained in:
root
2026-02-25 21:57:36 -06:00
commit 11eab66e9d
45 changed files with 4508 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
dark: {
primary: '#0f0f0f',
secondary: '#171717',
tertiary: '#1f1f1f',
border: '#2a2a2a',
hover: '#333333',
},
accent: '#3b82f6',
status: {
success: '#22c55e',
warning: '#f59e0b',
error: '#ef4444',
},
},
},
},
plugins: [],
};