feat: integrate 5 charity modules + scrollable desktop + dock autohide

This commit is contained in:
Antigravity AI
2026-06-03 14:00:29 +08:00
commit f1f717cbcb
50 changed files with 10166 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{ts,tsx}'],
theme: {
extend: {
colors: {
brand: { DEFAULT: '#C9A84C', dark: '#B8963A', light: '#E8C97A' },
gold: { DEFAULT: '#C9A84C', light: '#E8C97A' },
green: { DEFAULT: '#00C48C', light: '#00E09E' },
bg: { deep: '#07090C', surface: '#0C1A2E', elevated: '#112236' },
},
fontFamily: {
sans: ['Inter', 'ui-sans-serif', 'system-ui', 'sans-serif'],
heading: ['Cinzel', 'Georgia', 'serif'],
mono: ['JetBrains Mono', 'Courier New', 'monospace'],
},
borderRadius: {
'app': '18px',
'xl2': '28px',
},
},
},
plugins: [],
}