|
2 | 2 | @tailwind components; |
3 | 3 | @tailwind utilities; |
4 | 4 |
|
5 | | -/* BalatroLLM Design System - Neon cyberpunk aesthetic with professional data visualization |
6 | | -All colors MUST be HSL. |
7 | | -*/ |
| 5 | +/* BalatroBench - Super minimal black and white design system */ |
8 | 6 |
|
9 | 7 | @layer base { |
10 | 8 | :root { |
11 | | - /* Core backgrounds - Deep space blues */ |
12 | | - --background: 222 84% 5%; |
13 | | - --foreground: 210 40% 98%; |
14 | | - |
15 | | - /* Card system - Subtle elevation with glow potential */ |
16 | | - --card: 222 47% 11%; |
17 | | - --card-foreground: 210 40% 95%; |
18 | | - |
19 | | - /* Interactive elements */ |
20 | | - --popover: 222 47% 11%; |
21 | | - --popover-foreground: 210 40% 95%; |
22 | | - |
23 | | - /* Brand colors - Balatro inspired */ |
24 | | - --primary: 270 100% 80%; |
25 | | - --primary-foreground: 222 84% 5%; |
26 | | - |
27 | | - /* Secondary - Neon green accent */ |
28 | | - --secondary: 150 100% 50%; |
29 | | - --secondary-foreground: 222 84% 5%; |
30 | | - |
31 | | - /* Muted elements */ |
32 | | - --muted: 222 47% 15%; |
33 | | - --muted-foreground: 210 20% 65%; |
34 | | - |
35 | | - /* Accent - Neon pink/magenta */ |
36 | | - --accent: 320 100% 70%; |
37 | | - --accent-foreground: 222 84% 5%; |
38 | | - |
39 | | - /* Status colors */ |
40 | | - --destructive: 0 100% 60%; |
41 | | - --destructive-foreground: 210 40% 98%; |
42 | | - |
43 | | - --success: 150 100% 50%; |
44 | | - --success-foreground: 222 84% 5%; |
45 | | - |
46 | | - --warning: 45 100% 60%; |
47 | | - --warning-foreground: 222 84% 5%; |
48 | | - |
49 | | - /* Borders and inputs */ |
50 | | - --border: 222 47% 20%; |
51 | | - --input: 222 47% 15%; |
52 | | - --ring: 270 100% 80%; |
53 | | - |
54 | | - --radius: 0.75rem; |
55 | | - |
56 | | - /* Custom gradients for BalatroLLM */ |
57 | | - --gradient-primary: linear-gradient(135deg, hsl(270 100% 80%), hsl(320 100% 70%)); |
58 | | - --gradient-secondary: linear-gradient(135deg, hsl(150 100% 50%), hsl(180 100% 50%)); |
59 | | - --gradient-background: linear-gradient(135deg, hsl(222 84% 5%), hsl(222 47% 11%)); |
60 | | - --gradient-card: linear-gradient(135deg, hsl(222 47% 11%), hsl(222 47% 15%)); |
61 | | - |
62 | | - /* Glow effects */ |
63 | | - --glow-primary: 0 0 20px hsl(270 100% 80% / 0.3); |
64 | | - --glow-secondary: 0 0 20px hsl(150 100% 50% / 0.3); |
65 | | - --glow-accent: 0 0 20px hsl(320 100% 70% / 0.3); |
66 | | - |
67 | | - /* Enhanced shadows */ |
68 | | - --shadow-card: 0 8px 32px hsl(222 84% 5% / 0.8); |
69 | | - --shadow-elevation: 0 16px 48px hsl(222 84% 5% / 0.9); |
70 | | - |
71 | | - /* Transitions */ |
72 | | - --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); |
73 | | - --transition-glow: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1); |
74 | | - |
| 9 | + /* Light mode - Clean minimal design */ |
| 10 | + --background: 0 0% 100%; |
| 11 | + --foreground: 0 0% 5%; |
| 12 | + --card: 0 0% 100%; |
| 13 | + --card-foreground: 0 0% 5%; |
| 14 | + --popover: 0 0% 100%; |
| 15 | + --popover-foreground: 0 0% 5%; |
| 16 | + --primary: 0 0% 5%; |
| 17 | + --primary-foreground: 0 0% 98%; |
| 18 | + --secondary: 0 0% 97%; |
| 19 | + --secondary-foreground: 0 0% 5%; |
| 20 | + --muted: 0 0% 96%; |
| 21 | + --muted-foreground: 0 0% 40%; |
| 22 | + --accent: 220 100% 50%; /* Blue accent for numbers */ |
| 23 | + --accent-foreground: 0 0% 98%; |
| 24 | + --destructive: 0 84% 60%; |
| 25 | + --destructive-foreground: 0 0% 98%; |
| 26 | + --border: 0 0% 90%; |
| 27 | + --input: 0 0% 96%; |
| 28 | + --ring: 220 100% 50%; |
| 29 | + --radius: 0.375rem; |
| 30 | + |
| 31 | + /* Sidebar */ |
75 | 32 | --sidebar-background: 0 0% 98%; |
76 | | - |
77 | | - --sidebar-foreground: 240 5.3% 26.1%; |
78 | | - |
79 | | - --sidebar-primary: 240 5.9% 10%; |
80 | | - |
| 33 | + --sidebar-foreground: 0 0% 5%; |
| 34 | + --sidebar-primary: 0 0% 5%; |
81 | 35 | --sidebar-primary-foreground: 0 0% 98%; |
82 | | - |
83 | | - --sidebar-accent: 240 4.8% 95.9%; |
84 | | - |
85 | | - --sidebar-accent-foreground: 240 5.9% 10%; |
86 | | - |
87 | | - --sidebar-border: 220 13% 91%; |
88 | | - |
89 | | - --sidebar-ring: 217.2 91.2% 59.8%; |
| 36 | + --sidebar-accent: 0 0% 96%; |
| 37 | + --sidebar-accent-foreground: 0 0% 5%; |
| 38 | + --sidebar-border: 0 0% 90%; |
| 39 | + --sidebar-ring: 220 100% 50%; |
90 | 40 | } |
91 | 41 |
|
92 | | - /* Remove conflicting dark mode - BalatroLLM uses dark theme by default */ |
| 42 | + .dark { |
| 43 | + /* Dark mode - Clean minimal design */ |
| 44 | + --background: 0 0% 5%; |
| 45 | + --foreground: 0 0% 95%; |
| 46 | + --card: 0 0% 8%; |
| 47 | + --card-foreground: 0 0% 95%; |
| 48 | + --popover: 0 0% 5%; |
| 49 | + --popover-foreground: 0 0% 95%; |
| 50 | + --primary: 0 0% 95%; |
| 51 | + --primary-foreground: 0 0% 5%; |
| 52 | + --secondary: 0 0% 10%; |
| 53 | + --secondary-foreground: 0 0% 95%; |
| 54 | + --muted: 0 0% 12%; |
| 55 | + --muted-foreground: 0 0% 60%; |
| 56 | + --accent: 220 100% 60%; /* Blue accent for numbers */ |
| 57 | + --accent-foreground: 0 0% 5%; |
| 58 | + --destructive: 0 62% 50%; |
| 59 | + --destructive-foreground: 0 0% 98%; |
| 60 | + --border: 0 0% 15%; |
| 61 | + --input: 0 0% 12%; |
| 62 | + --ring: 220 100% 60%; |
| 63 | + |
| 64 | + /* Sidebar */ |
| 65 | + --sidebar-background: 0 0% 8%; |
| 66 | + --sidebar-foreground: 0 0% 95%; |
| 67 | + --sidebar-primary: 0 0% 95%; |
| 68 | + --sidebar-primary-foreground: 0 0% 5%; |
| 69 | + --sidebar-accent: 0 0% 12%; |
| 70 | + --sidebar-accent-foreground: 0 0% 95%; |
| 71 | + --sidebar-border: 0 0% 15%; |
| 72 | + --sidebar-ring: 220 100% 60%; |
| 73 | + } |
93 | 74 | } |
94 | 75 |
|
95 | 76 | @layer base { |
|
0 commit comments