chore: initial baseline with P0-safety .gitignore

This commit is contained in:
Simon
2026-06-14 16:49:18 +08:00
commit 63262292d7
510 changed files with 146008 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
'bg-primary': '#0f172a',
'bg-secondary': '#1e293b',
'bg-tertiary': '#334155',
'accent': '#3b82f6',
'success': '#10b981',
'warning': '#f59e0b',
'danger': '#ef4444',
'text-primary': '#f1f5f9',
'text-secondary': '#94a3b8',
'text-muted': '#64748b',
},
},
},
plugins: [],
}