@abumble/design-system 0.0.46 → 0.0.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/List.js +4 -4
- package/dist/components/List.js.map +1 -1
- package/dist/components/Sidebar.js +1 -1
- package/dist/components/Sidebar.js.map +1 -1
- package/dist/components/Table.js +3 -3
- package/dist/components/Table.js.map +1 -1
- package/dist/components/Textarea.js +3 -3
- package/dist/components/Textarea.js.map +1 -1
- package/dist/components/ThemeSelector/ThemeSelector.d.ts.map +1 -1
- package/dist/components/ThemeSelector.js +14 -11
- package/dist/components/ThemeSelector.js.map +1 -1
- package/dist/index.css +1 -1
- package/dist/shared/Input.js +5 -5
- package/dist/shared/Input.js.map +1 -1
- package/dist/shared/Select.js +3 -3
- package/dist/shared/Select.js.map +1 -1
- package/dist/themes/ThemeProvider.d.ts +4 -1
- package/dist/themes/ThemeProvider.d.ts.map +1 -1
- package/dist/themes.js +24 -24
- package/dist/themes.js.map +1 -1
- package/package.json +2 -1
- package/src/styles.css +11 -1
- package/src/themes/ThemeProvider.tsx +5 -2
- package/src/themes/canopy.css +157 -0
- package/src/themes/dusk.css +158 -0
- package/src/themes/linen.css +72 -31
- package/src/themes/sage.css +158 -0
- package/src/themes/steel.css +48 -20
package/src/themes/linen.css
CHANGED
|
@@ -1,8 +1,23 @@
|
|
|
1
1
|
:root {
|
|
2
2
|
/* --- Light Theme (Linen & Slate - Minimal Warmth) --- */
|
|
3
|
-
--background: oklch(0.992 0.
|
|
3
|
+
--background: oklch(0.992 0.008 85);
|
|
4
4
|
--foreground: oklch(0.2 0.01 85);
|
|
5
5
|
|
|
6
|
+
/* Brand palette */
|
|
7
|
+
--color-canopy: oklch(0.16 0.015 85);
|
|
8
|
+
--color-hive: oklch(0.68 0.18 75);
|
|
9
|
+
--color-parchment: oklch(0.975 0.006 85);
|
|
10
|
+
|
|
11
|
+
/* Chart palette — semantic (portfolio health) + categorical (unit mix) */
|
|
12
|
+
--chart-1: oklch(0.65 0.18 142);
|
|
13
|
+
--chart-2: oklch(0.72 0.17 72);
|
|
14
|
+
--chart-3: oklch(0.69 0.19 38);
|
|
15
|
+
--chart-4: oklch(0.55 0.2 25);
|
|
16
|
+
--chart-5: oklch(0.57 0.22 264);
|
|
17
|
+
--chart-6: oklch(0.55 0.22 290);
|
|
18
|
+
--chart-7: oklch(0.62 0.2 314);
|
|
19
|
+
--chart-8: oklch(0.62 0.2 340);
|
|
20
|
+
|
|
6
21
|
/* Surfaces (Tables, Cards, Buttons) - Frosted White */
|
|
7
22
|
--card: oklch(1 0 0 / 0.75);
|
|
8
23
|
--card-foreground: oklch(0.2 0.01 85);
|
|
@@ -10,36 +25,34 @@
|
|
|
10
25
|
--popover: oklch(1 0 0);
|
|
11
26
|
--popover-foreground: oklch(0.2 0.01 85);
|
|
12
27
|
|
|
13
|
-
/* Primary:
|
|
14
|
-
--primary: oklch(0.
|
|
28
|
+
/* Primary: Warm Amber */
|
|
29
|
+
--primary: oklch(0.58 0.18 70);
|
|
15
30
|
--primary-foreground: oklch(1 0 0);
|
|
16
31
|
|
|
17
32
|
/* Button/Surface Colors: Pure White */
|
|
18
33
|
--secondary: oklch(1 0 0);
|
|
19
|
-
--secondary-foreground: oklch(0.
|
|
34
|
+
--secondary-foreground: oklch(0.58 0.18 70);
|
|
20
35
|
|
|
21
36
|
--muted: oklch(1 0 0);
|
|
22
37
|
--muted-foreground: oklch(0.5 0.01 85);
|
|
23
38
|
|
|
24
|
-
--accent: oklch(
|
|
25
|
-
--accent-foreground: oklch(0.
|
|
39
|
+
--accent: oklch(0.97 0.01 85);
|
|
40
|
+
--accent-foreground: oklch(0.58 0.18 70);
|
|
26
41
|
|
|
27
|
-
--destructive: oklch(0.55 0.15
|
|
42
|
+
--destructive: oklch(0.55 0.19 15);
|
|
28
43
|
--destructive-foreground: oklch(1 0 0);
|
|
29
44
|
|
|
30
45
|
--border: oklch(0.94 0.005 85);
|
|
31
46
|
--input: oklch(0.94 0.005 85);
|
|
32
|
-
--ring: oklch(0.
|
|
33
|
-
|
|
34
|
-
--radius: 0.6rem;
|
|
47
|
+
--ring: oklch(0.58 0.18 70 / 0.3);
|
|
35
48
|
|
|
36
49
|
/* Sidebar (Soft White) */
|
|
37
|
-
--sidebar: oklch(0
|
|
50
|
+
--sidebar: oklch(1 0 0);
|
|
38
51
|
--sidebar-foreground: oklch(0.2 0.01 85);
|
|
39
|
-
--sidebar-primary: oklch(0.
|
|
52
|
+
--sidebar-primary: oklch(0.58 0.18 70);
|
|
40
53
|
--sidebar-primary-foreground: oklch(1 0 0);
|
|
41
|
-
--sidebar-accent: oklch(0.
|
|
42
|
-
--sidebar-accent-foreground: oklch(0.
|
|
54
|
+
--sidebar-accent: oklch(0.96 0.015 75);
|
|
55
|
+
--sidebar-accent-foreground: oklch(0.35 0.1 70);
|
|
43
56
|
--sidebar-border: oklch(0.95 0.005 85);
|
|
44
57
|
|
|
45
58
|
/* Banners */
|
|
@@ -59,7 +72,7 @@
|
|
|
59
72
|
/* Interactive Elements */
|
|
60
73
|
--badge-success: oklch(0.4 0.1 160);
|
|
61
74
|
--badge-success-foreground: oklch(1 0 0);
|
|
62
|
-
--checkbox-checked: oklch(0.
|
|
75
|
+
--checkbox-checked: oklch(0.58 0.18 70);
|
|
63
76
|
--checkbox-checked-foreground: oklch(1 0 0);
|
|
64
77
|
--checkbox-unchecked-bg: oklch(1 0 0);
|
|
65
78
|
--checkbox-unchecked-border: oklch(0.88 0.01 60);
|
|
@@ -67,9 +80,24 @@
|
|
|
67
80
|
|
|
68
81
|
[data-theme="linen"] {
|
|
69
82
|
/* --- Light Theme (Linen & Slate - Minimal Warmth) --- */
|
|
70
|
-
--background: oklch(0.992 0.
|
|
83
|
+
--background: oklch(0.992 0.008 85);
|
|
71
84
|
--foreground: oklch(0.2 0.01 85);
|
|
72
85
|
|
|
86
|
+
/* Brand palette */
|
|
87
|
+
--color-canopy: oklch(0.16 0.015 85);
|
|
88
|
+
--color-hive: oklch(0.68 0.18 75);
|
|
89
|
+
--color-parchment: oklch(0.975 0.006 85);
|
|
90
|
+
|
|
91
|
+
/* Chart palette */
|
|
92
|
+
--chart-1: oklch(0.65 0.18 142);
|
|
93
|
+
--chart-2: oklch(0.72 0.17 72);
|
|
94
|
+
--chart-3: oklch(0.69 0.19 38);
|
|
95
|
+
--chart-4: oklch(0.55 0.2 25);
|
|
96
|
+
--chart-5: oklch(0.57 0.22 264);
|
|
97
|
+
--chart-6: oklch(0.55 0.22 290);
|
|
98
|
+
--chart-7: oklch(0.62 0.2 314);
|
|
99
|
+
--chart-8: oklch(0.62 0.2 340);
|
|
100
|
+
|
|
73
101
|
/* Surfaces (Tables, Cards, Buttons) - Frosted White */
|
|
74
102
|
--card: oklch(1 0 0 / 0.75);
|
|
75
103
|
--card-foreground: oklch(0.2 0.01 85);
|
|
@@ -77,36 +105,34 @@
|
|
|
77
105
|
--popover: oklch(1 0 0);
|
|
78
106
|
--popover-foreground: oklch(0.2 0.01 85);
|
|
79
107
|
|
|
80
|
-
/* Primary:
|
|
81
|
-
--primary: oklch(0.
|
|
108
|
+
/* Primary: Warm Amber */
|
|
109
|
+
--primary: oklch(0.58 0.18 70);
|
|
82
110
|
--primary-foreground: oklch(1 0 0);
|
|
83
111
|
|
|
84
112
|
/* Button/Surface Colors: Pure White */
|
|
85
113
|
--secondary: oklch(1 0 0);
|
|
86
|
-
--secondary-foreground: oklch(0.
|
|
114
|
+
--secondary-foreground: oklch(0.58 0.18 70);
|
|
87
115
|
|
|
88
116
|
--muted: oklch(1 0 0);
|
|
89
117
|
--muted-foreground: oklch(0.5 0.01 85);
|
|
90
118
|
|
|
91
|
-
--accent: oklch(
|
|
92
|
-
--accent-foreground: oklch(0.
|
|
119
|
+
--accent: oklch(0.97 0.01 85);
|
|
120
|
+
--accent-foreground: oklch(0.58 0.18 70);
|
|
93
121
|
|
|
94
|
-
--destructive: oklch(0.55 0.15
|
|
122
|
+
--destructive: oklch(0.55 0.19 15);
|
|
95
123
|
--destructive-foreground: oklch(1 0 0);
|
|
96
124
|
|
|
97
125
|
--border: oklch(0.94 0.005 85);
|
|
98
126
|
--input: oklch(0.94 0.005 85);
|
|
99
|
-
--ring: oklch(0.
|
|
100
|
-
|
|
101
|
-
--radius: 0.6rem;
|
|
127
|
+
--ring: oklch(0.58 0.18 70 / 0.3);
|
|
102
128
|
|
|
103
129
|
/* Sidebar (Soft White) */
|
|
104
|
-
--sidebar: oklch(0
|
|
130
|
+
--sidebar: oklch(1 0 0);
|
|
105
131
|
--sidebar-foreground: oklch(0.2 0.01 85);
|
|
106
|
-
--sidebar-primary: oklch(0.
|
|
132
|
+
--sidebar-primary: oklch(0.58 0.18 70);
|
|
107
133
|
--sidebar-primary-foreground: oklch(1 0 0);
|
|
108
|
-
--sidebar-accent: oklch(0.
|
|
109
|
-
--sidebar-accent-foreground: oklch(0.
|
|
134
|
+
--sidebar-accent: oklch(0.96 0.015 75);
|
|
135
|
+
--sidebar-accent-foreground: oklch(0.35 0.1 70);
|
|
110
136
|
--sidebar-border: oklch(0.95 0.005 85);
|
|
111
137
|
|
|
112
138
|
/* Banners */
|
|
@@ -126,7 +152,7 @@
|
|
|
126
152
|
/* Interactive Elements */
|
|
127
153
|
--badge-success: oklch(0.4 0.1 160);
|
|
128
154
|
--badge-success-foreground: oklch(1 0 0);
|
|
129
|
-
--checkbox-checked: oklch(0.
|
|
155
|
+
--checkbox-checked: oklch(0.58 0.18 70);
|
|
130
156
|
--checkbox-checked-foreground: oklch(1 0 0);
|
|
131
157
|
--checkbox-unchecked-bg: oklch(1 0 0);
|
|
132
158
|
--checkbox-unchecked-border: oklch(0.88 0.01 60);
|
|
@@ -137,6 +163,21 @@
|
|
|
137
163
|
--background: oklch(0.14 0.01 80);
|
|
138
164
|
--foreground: oklch(0.93 0.01 85);
|
|
139
165
|
|
|
166
|
+
/* Brand palette — dark */
|
|
167
|
+
--color-canopy: oklch(0.09 0.01 85);
|
|
168
|
+
--color-hive: oklch(0.78 0.18 75);
|
|
169
|
+
--color-parchment: oklch(0.17 0.012 80);
|
|
170
|
+
|
|
171
|
+
/* Chart palette — dark */
|
|
172
|
+
--chart-1: oklch(0.72 0.2 142);
|
|
173
|
+
--chart-2: oklch(0.78 0.18 72);
|
|
174
|
+
--chart-3: oklch(0.75 0.2 38);
|
|
175
|
+
--chart-4: oklch(0.65 0.22 25);
|
|
176
|
+
--chart-5: oklch(0.65 0.22 264);
|
|
177
|
+
--chart-6: oklch(0.63 0.22 290);
|
|
178
|
+
--chart-7: oklch(0.7 0.2 314);
|
|
179
|
+
--chart-8: oklch(0.7 0.2 340);
|
|
180
|
+
|
|
140
181
|
/* Card Elevation: Warm lifted surface */
|
|
141
182
|
--card: oklch(0.19 0.012 80 / 0.75);
|
|
142
183
|
--card-foreground: oklch(0.93 0.01 85);
|
|
@@ -165,7 +206,7 @@
|
|
|
165
206
|
--ring: oklch(0.86 0.05 85 / 0.3);
|
|
166
207
|
|
|
167
208
|
/* Sidebar (Warm Dark) */
|
|
168
|
-
--sidebar: oklch(0.
|
|
209
|
+
--sidebar: oklch(0.19 0.012 80);
|
|
169
210
|
--sidebar-foreground: oklch(0.93 0.01 85);
|
|
170
211
|
--sidebar-primary: oklch(0.86 0.05 85);
|
|
171
212
|
--sidebar-primary-foreground: oklch(0.14 0.01 80);
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
[data-theme="sage"] {
|
|
2
|
+
/* --- Light Theme (Natural, Organic - Pale Sage) --- */
|
|
3
|
+
--background: oklch(0.965 0.015 145);
|
|
4
|
+
--foreground: oklch(0.18 0.02 145);
|
|
5
|
+
|
|
6
|
+
/* Brand palette */
|
|
7
|
+
--color-canopy: oklch(0.16 0.04 145);
|
|
8
|
+
--color-hive: oklch(0.62 0.2 145);
|
|
9
|
+
--color-parchment: oklch(0.975 0.008 145);
|
|
10
|
+
|
|
11
|
+
/* Chart palette */
|
|
12
|
+
--chart-1: oklch(0.65 0.18 142);
|
|
13
|
+
--chart-2: oklch(0.72 0.17 72);
|
|
14
|
+
--chart-3: oklch(0.69 0.19 38);
|
|
15
|
+
--chart-4: oklch(0.55 0.2 25);
|
|
16
|
+
--chart-5: oklch(0.57 0.22 264);
|
|
17
|
+
--chart-6: oklch(0.55 0.22 290);
|
|
18
|
+
--chart-7: oklch(0.62 0.2 314);
|
|
19
|
+
--chart-8: oklch(0.62 0.2 340);
|
|
20
|
+
|
|
21
|
+
/* Surfaces - Frosted with green tint */
|
|
22
|
+
--card: oklch(0.99 0.004 145 / 0.75);
|
|
23
|
+
--card-foreground: oklch(0.18 0.02 145);
|
|
24
|
+
|
|
25
|
+
--popover: oklch(1 0 0);
|
|
26
|
+
--popover-foreground: oklch(0.18 0.02 145);
|
|
27
|
+
|
|
28
|
+
/* Primary: Deep Forest Green */
|
|
29
|
+
--primary: oklch(0.25 0.06 145);
|
|
30
|
+
--primary-foreground: oklch(0.97 0.005 145);
|
|
31
|
+
|
|
32
|
+
/* Button/Surface Colors */
|
|
33
|
+
--secondary: oklch(0.97 0.006 145);
|
|
34
|
+
--secondary-foreground: oklch(0.25 0.06 145);
|
|
35
|
+
|
|
36
|
+
--muted: oklch(0.94 0.006 145);
|
|
37
|
+
--muted-foreground: oklch(0.5 0.02 145);
|
|
38
|
+
|
|
39
|
+
--accent: oklch(0.92 0.008 145);
|
|
40
|
+
--accent-foreground: oklch(0.25 0.06 145);
|
|
41
|
+
|
|
42
|
+
--destructive: oklch(0.55 0.15 25);
|
|
43
|
+
--destructive-foreground: oklch(1 0 0);
|
|
44
|
+
|
|
45
|
+
--border: oklch(0.9 0.006 145);
|
|
46
|
+
--input: oklch(0.9 0.006 145);
|
|
47
|
+
--ring: oklch(0.25 0.06 145 / 0.15);
|
|
48
|
+
|
|
49
|
+
/* Sidebar (Soft Sage) */
|
|
50
|
+
--sidebar: oklch(0.99 0.004 145);
|
|
51
|
+
--sidebar-foreground: oklch(0.22 0.02 145);
|
|
52
|
+
--sidebar-primary: oklch(0.25 0.06 145);
|
|
53
|
+
--sidebar-primary-foreground: oklch(0.97 0.005 145);
|
|
54
|
+
--sidebar-accent: oklch(0.93 0.008 145);
|
|
55
|
+
--sidebar-accent-foreground: oklch(0.22 0.02 145);
|
|
56
|
+
--sidebar-border: oklch(0.91 0.006 145);
|
|
57
|
+
|
|
58
|
+
/* Banners */
|
|
59
|
+
--banner-info: oklch(0.94 0.02 240);
|
|
60
|
+
--banner-info-foreground: oklch(0.24 0.09 240);
|
|
61
|
+
--banner-info-border: oklch(0.52 0.18 240);
|
|
62
|
+
--banner-note: oklch(0.94 0.02 145);
|
|
63
|
+
--banner-note-foreground: oklch(0.24 0.1 145);
|
|
64
|
+
--banner-note-border: oklch(0.48 0.16 145);
|
|
65
|
+
--banner-warning: oklch(0.95 0.04 78);
|
|
66
|
+
--banner-warning-foreground: oklch(0.34 0.13 62);
|
|
67
|
+
--banner-warning-border: oklch(0.62 0.18 72);
|
|
68
|
+
--banner-alert: oklch(0.95 0.03 22);
|
|
69
|
+
--banner-alert-foreground: oklch(0.34 0.14 22);
|
|
70
|
+
--banner-alert-border: oklch(0.52 0.2 22);
|
|
71
|
+
|
|
72
|
+
/* Interactive Elements */
|
|
73
|
+
--badge-success: oklch(0.35 0.1 145);
|
|
74
|
+
--badge-success-foreground: oklch(0.98 0.01 145);
|
|
75
|
+
--checkbox-checked: oklch(0.25 0.06 145);
|
|
76
|
+
--checkbox-checked-foreground: oklch(1 0 0);
|
|
77
|
+
--checkbox-unchecked-bg: oklch(1 0 0);
|
|
78
|
+
--checkbox-unchecked-border: oklch(0.87 0.008 145);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
[data-theme="sage"].dark {
|
|
82
|
+
/* --- Dark Theme (Deep Forest with Moss Glow) --- */
|
|
83
|
+
--background: oklch(0.14 0.015 145);
|
|
84
|
+
--foreground: oklch(0.93 0.01 145);
|
|
85
|
+
|
|
86
|
+
/* Brand palette — dark */
|
|
87
|
+
--color-canopy: oklch(0.09 0.02 145);
|
|
88
|
+
--color-hive: oklch(0.75 0.2 145);
|
|
89
|
+
--color-parchment: oklch(0.17 0.018 145);
|
|
90
|
+
|
|
91
|
+
/* Chart palette — dark */
|
|
92
|
+
--chart-1: oklch(0.72 0.2 142);
|
|
93
|
+
--chart-2: oklch(0.78 0.18 72);
|
|
94
|
+
--chart-3: oklch(0.75 0.2 38);
|
|
95
|
+
--chart-4: oklch(0.65 0.22 25);
|
|
96
|
+
--chart-5: oklch(0.65 0.22 264);
|
|
97
|
+
--chart-6: oklch(0.63 0.22 290);
|
|
98
|
+
--chart-7: oklch(0.7 0.2 314);
|
|
99
|
+
--chart-8: oklch(0.7 0.2 340);
|
|
100
|
+
|
|
101
|
+
/* Card Elevation */
|
|
102
|
+
--card: oklch(0.19 0.018 145 / 0.75);
|
|
103
|
+
--card-foreground: oklch(0.93 0.01 145);
|
|
104
|
+
|
|
105
|
+
--popover: oklch(0.17 0.015 145);
|
|
106
|
+
--popover-foreground: oklch(0.93 0.01 145);
|
|
107
|
+
|
|
108
|
+
/* Primary: Bright Moss Green */
|
|
109
|
+
--primary: oklch(0.8 0.1 145);
|
|
110
|
+
--primary-foreground: oklch(0.14 0.015 145);
|
|
111
|
+
|
|
112
|
+
--secondary: oklch(0.24 0.015 145);
|
|
113
|
+
--secondary-foreground: oklch(0.8 0.1 145);
|
|
114
|
+
|
|
115
|
+
--muted: oklch(0.24 0.015 145);
|
|
116
|
+
--muted-foreground: oklch(0.62 0.015 145);
|
|
117
|
+
|
|
118
|
+
--accent: oklch(0.24 0.015 145);
|
|
119
|
+
--accent-foreground: oklch(0.8 0.1 145);
|
|
120
|
+
|
|
121
|
+
--destructive: oklch(0.45 0.15 25);
|
|
122
|
+
--destructive-foreground: oklch(0.93 0.01 145);
|
|
123
|
+
|
|
124
|
+
--border: oklch(0.28 0.015 145);
|
|
125
|
+
--input: oklch(0.28 0.015 145);
|
|
126
|
+
--ring: oklch(0.8 0.1 145 / 0.3);
|
|
127
|
+
|
|
128
|
+
/* Sidebar (Dark Forest) */
|
|
129
|
+
--sidebar: oklch(0.19 0.018 145);
|
|
130
|
+
--sidebar-foreground: oklch(0.93 0.01 145);
|
|
131
|
+
--sidebar-primary: oklch(0.8 0.1 145);
|
|
132
|
+
--sidebar-primary-foreground: oklch(0.14 0.015 145);
|
|
133
|
+
--sidebar-accent: oklch(0.23 0.015 145);
|
|
134
|
+
--sidebar-accent-foreground: oklch(0.93 0.01 145);
|
|
135
|
+
--sidebar-border: oklch(0.28 0.015 145);
|
|
136
|
+
|
|
137
|
+
/* Banners (Dark) */
|
|
138
|
+
--banner-info: oklch(0.22 0.04 240);
|
|
139
|
+
--banner-info-foreground: oklch(0.88 0.05 240);
|
|
140
|
+
--banner-info-border: oklch(0.48 0.16 240);
|
|
141
|
+
--banner-note: oklch(0.22 0.05 145);
|
|
142
|
+
--banner-note-foreground: oklch(0.88 0.06 145);
|
|
143
|
+
--banner-note-border: oklch(0.5 0.12 145);
|
|
144
|
+
--banner-warning: oklch(0.26 0.06 70);
|
|
145
|
+
--banner-warning-foreground: oklch(0.92 0.1 80);
|
|
146
|
+
--banner-warning-border: oklch(0.65 0.2 75);
|
|
147
|
+
--banner-alert: oklch(0.23 0.05 25);
|
|
148
|
+
--banner-alert-foreground: oklch(0.9 0.06 25);
|
|
149
|
+
--banner-alert-border: oklch(0.44 0.14 25);
|
|
150
|
+
|
|
151
|
+
/* Interactive Elements (Dark) */
|
|
152
|
+
--badge-success: oklch(0.48 0.15 145);
|
|
153
|
+
--badge-success-foreground: oklch(1 0 0);
|
|
154
|
+
--checkbox-checked: oklch(0.8 0.1 145);
|
|
155
|
+
--checkbox-checked-foreground: oklch(0.14 0.015 145);
|
|
156
|
+
--checkbox-unchecked-bg: oklch(0.22 0.01 145);
|
|
157
|
+
--checkbox-unchecked-border: oklch(0.38 0.01 145);
|
|
158
|
+
}
|
package/src/themes/steel.css
CHANGED
|
@@ -1,8 +1,23 @@
|
|
|
1
1
|
[data-theme="steel"] {
|
|
2
2
|
/* --- Light Theme (Metallic & Industrial - Brushed Steel) --- */
|
|
3
|
-
--background: oklch(0.95 0.
|
|
3
|
+
--background: oklch(0.95 0.015 250);
|
|
4
4
|
--foreground: oklch(0.2 0.02 250);
|
|
5
5
|
|
|
6
|
+
/* Brand palette */
|
|
7
|
+
--color-canopy: #0f172a;
|
|
8
|
+
--color-hive: #0ea5e9;
|
|
9
|
+
--color-parchment: #f1f5f9;
|
|
10
|
+
|
|
11
|
+
/* Chart palette */
|
|
12
|
+
--chart-1: oklch(0.65 0.18 142);
|
|
13
|
+
--chart-2: oklch(0.72 0.17 72);
|
|
14
|
+
--chart-3: oklch(0.69 0.19 38);
|
|
15
|
+
--chart-4: oklch(0.55 0.2 25);
|
|
16
|
+
--chart-5: oklch(0.57 0.22 264);
|
|
17
|
+
--chart-6: oklch(0.55 0.22 290);
|
|
18
|
+
--chart-7: oklch(0.62 0.2 314);
|
|
19
|
+
--chart-8: oklch(0.62 0.2 340);
|
|
20
|
+
|
|
6
21
|
/* Surfaces - Aluminum Finish */
|
|
7
22
|
--card: oklch(0.98 0.005 250 / 0.85);
|
|
8
23
|
--card-foreground: oklch(0.2 0.02 250);
|
|
@@ -31,10 +46,8 @@
|
|
|
31
46
|
--input: oklch(0.88 0.005 250);
|
|
32
47
|
--ring: oklch(0.3 0.05 250 / 0.15);
|
|
33
48
|
|
|
34
|
-
--radius: 0.25rem; /* Sharper for robotic feel */
|
|
35
|
-
|
|
36
49
|
/* Sidebar (Cold Slate) */
|
|
37
|
-
--sidebar: oklch(0.
|
|
50
|
+
--sidebar: oklch(0.98 0.005 250);
|
|
38
51
|
--sidebar-foreground: oklch(0.25 0.02 250);
|
|
39
52
|
--sidebar-primary: oklch(0.3 0.05 250);
|
|
40
53
|
--sidebar-primary-foreground: oklch(0.98 0.005 250);
|
|
@@ -66,45 +79,60 @@
|
|
|
66
79
|
}
|
|
67
80
|
|
|
68
81
|
[data-theme="steel"].dark {
|
|
69
|
-
/* --- Dark Theme (
|
|
70
|
-
--background: oklch(0.18 0.
|
|
82
|
+
/* --- Dark Theme (Midnight Navy & Cyan) --- */
|
|
83
|
+
--background: oklch(0.18 0.02 225);
|
|
71
84
|
--foreground: oklch(0.985 0 0);
|
|
72
85
|
|
|
86
|
+
/* Brand palette — dark */
|
|
87
|
+
--color-canopy: #020617;
|
|
88
|
+
--color-hive: #38bdf8;
|
|
89
|
+
--color-parchment: #0f172a;
|
|
90
|
+
|
|
91
|
+
/* Chart palette — dark */
|
|
92
|
+
--chart-1: oklch(0.72 0.2 142);
|
|
93
|
+
--chart-2: oklch(0.78 0.18 72);
|
|
94
|
+
--chart-3: oklch(0.75 0.2 38);
|
|
95
|
+
--chart-4: oklch(0.65 0.22 25);
|
|
96
|
+
--chart-5: oklch(0.65 0.22 264);
|
|
97
|
+
--chart-6: oklch(0.63 0.22 290);
|
|
98
|
+
--chart-7: oklch(0.7 0.2 314);
|
|
99
|
+
--chart-8: oklch(0.7 0.2 340);
|
|
100
|
+
|
|
73
101
|
/* Card Elevation: Brighter than background */
|
|
74
|
-
--card: oklch(0.23 0.
|
|
102
|
+
--card: oklch(0.23 0.025 225 / 0.75);
|
|
75
103
|
--card-foreground: oklch(0.985 0 0);
|
|
76
104
|
|
|
77
|
-
--popover: oklch(0.21 0.
|
|
105
|
+
--popover: oklch(0.21 0.02 225);
|
|
78
106
|
--popover-foreground: oklch(0.985 0 0);
|
|
79
107
|
|
|
80
108
|
/* Primary: Electric Cyan Glow */
|
|
81
109
|
--primary: oklch(0.9 0.1 220);
|
|
82
|
-
--primary-foreground: oklch(0.18 0.
|
|
110
|
+
--primary-foreground: oklch(0.18 0.02 225);
|
|
83
111
|
|
|
84
|
-
--secondary: oklch(0.28 0.
|
|
112
|
+
--secondary: oklch(0.28 0.025 225);
|
|
85
113
|
--secondary-foreground: oklch(0.9 0.1 220);
|
|
86
114
|
|
|
87
|
-
--muted: oklch(0.28 0.
|
|
88
|
-
--muted-foreground: oklch(0.705 0.015
|
|
115
|
+
--muted: oklch(0.28 0.025 225);
|
|
116
|
+
--muted-foreground: oklch(0.705 0.015 225);
|
|
89
117
|
|
|
90
|
-
--accent: oklch(0.28 0.
|
|
118
|
+
--accent: oklch(0.28 0.025 225);
|
|
91
119
|
--accent-foreground: oklch(0.9 0.1 220);
|
|
92
120
|
|
|
93
121
|
--destructive: oklch(0.45 0.15 25);
|
|
94
122
|
--destructive-foreground: oklch(0.985 0 0);
|
|
95
123
|
|
|
96
|
-
--border: oklch(0.32 0.
|
|
97
|
-
--input: oklch(0.32 0.
|
|
124
|
+
--border: oklch(0.32 0.025 225);
|
|
125
|
+
--input: oklch(0.32 0.025 225);
|
|
98
126
|
--ring: oklch(0.9 0.1 220 / 0.3);
|
|
99
127
|
|
|
100
|
-
/* Sidebar (
|
|
101
|
-
--sidebar: oklch(0.
|
|
128
|
+
/* Sidebar (Midnight Navy) */
|
|
129
|
+
--sidebar: oklch(0.23 0.025 225);
|
|
102
130
|
--sidebar-foreground: oklch(0.985 0 0);
|
|
103
131
|
--sidebar-primary: oklch(0.9 0.1 220);
|
|
104
|
-
--sidebar-primary-foreground: oklch(0.18 0.
|
|
105
|
-
--sidebar-accent: oklch(0.28 0.
|
|
132
|
+
--sidebar-primary-foreground: oklch(0.18 0.02 225);
|
|
133
|
+
--sidebar-accent: oklch(0.28 0.025 225);
|
|
106
134
|
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
107
|
-
--sidebar-border: oklch(0.32 0.
|
|
135
|
+
--sidebar-border: oklch(0.32 0.025 225);
|
|
108
136
|
|
|
109
137
|
/* Banners (Dark - Desaturated) */
|
|
110
138
|
--banner-info: oklch(0.274 0.079 260);
|