@lucasvu/scope-ui 0.1.0 → 0.1.1

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.
@@ -0,0 +1,343 @@
1
+ :root {
2
+ line-height: 1.5;
3
+ font-weight: 400;
4
+ text-rendering: optimizeLegibility;
5
+ -webkit-font-smoothing: antialiased;
6
+ -moz-osx-font-smoothing: grayscale;
7
+ color-scheme: light dark;
8
+
9
+ /* =======================
10
+ Core (map từ Argon colors)
11
+ ======================= */
12
+
13
+ /* background/surface */
14
+ --bg: #f8f9fa; /* grey.100 */
15
+ --surface: #ffffff; /* white.main */
16
+ --surface-strong: #e9ecef; /* light.main */
17
+ --grey: #e9ecef; /* light.main */
18
+ --border: #dee2e6; /* grey.300 */
19
+
20
+ /* text */
21
+ --text: #67748e; /* text.main */
22
+ --muted: #6c757d; /* grey.600 */
23
+ --foreground: var(--text);
24
+ --muted-foreground: var(--muted);
25
+
26
+ /* accents (chọn theo palette Argon) */
27
+ --accent: #fb6340; /* warning.main */
28
+ --accent-strong: #fbb140; /* gradients.warning.state */
29
+ --accent-2: #5e72e4; /* primary.main */
30
+
31
+ --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
32
+
33
+ /* confirm (giữ dạng HSL cho tailwind-style token) */
34
+ --confirm: 142 71% 45%; /* ~ success */
35
+ --confirm-foreground: 0 0% 100%;
36
+
37
+ /* =======================
38
+ TW tokens (HSL)
39
+ - dùng cho shadcn/tailwind variables
40
+ ======================= */
41
+
42
+ --tw-background: 0 0% 100%;
43
+ --tw-foreground: 215 19% 24%; /* gần #344767 */
44
+
45
+ --tw-card: 0 0% 100%;
46
+ --tw-card-foreground: 215 19% 24%;
47
+
48
+ --tw-popover: 0 0% 100%;
49
+ --tw-popover-foreground: 215 19% 24%;
50
+
51
+ /* primary = #5e72e4 */
52
+ --tw-primary: 232 71% 63%;
53
+ --tw-primary-foreground: 0 0% 100%;
54
+
55
+ /* secondary = #8392ab */
56
+ --tw-secondary: 216 18% 60%;
57
+ --tw-secondary-foreground: 215 19% 24%;
58
+
59
+ /* muted = light main #e9ecef */
60
+ --tw-muted: 210 17% 92%;
61
+ --tw-muted-foreground: 215 14% 45%; /* gần grey.600 */
62
+
63
+ /* accent-2 = #11cdef (info) */
64
+ --tw-accent: 190 88% 50%;
65
+ --tw-accent-foreground: 0 0% 100%;
66
+
67
+ /* destructive = error #f5365c */
68
+ --tw-destructive: 347 91% 58%;
69
+ --tw-destructive-foreground: 0 0% 100%;
70
+
71
+ /* border/input/ring */
72
+ --tw-border: 210 14% 88%; /* ~ grey.300/#dee2e6 */
73
+ --tw-input: 210 14% 88%;
74
+ --tw-ring: 216 18% 60%; /* ~ secondary */
75
+
76
+ /* success */
77
+ --tw-success: 153 64% 49%; /* #2dce89 */
78
+
79
+ /* =======================
80
+ Primary button tokens (giữ format bạn đang dùng)
81
+ ======================= */
82
+ --primary: 232 71% 63%;
83
+ --primary-foreground: 0 0% 100%;
84
+
85
+ /* gradient primary button: #5e72e4 -> #825ee4 */
86
+ --primary-grad-from: 232 71% 63%;
87
+ --primary-grad-to: 251 70% 63%;
88
+ --primary-ring: 232 71% 63%;
89
+
90
+ /* =======================
91
+ Extra: map chi tiết theo Argon (để bạn dùng var(...) trực tiếp)
92
+ ======================= */
93
+
94
+ /* greys */
95
+ --grey-100: #f8f9fa;
96
+ --grey-200: #e9ecef;
97
+ --grey-300: #dee2e6;
98
+ --grey-400: #ced4da;
99
+ --grey-500: #adb5bd;
100
+ --grey-600: #6c757d;
101
+ --grey-700: #495057;
102
+ --grey-800: #343a40;
103
+ --grey-900: #212529;
104
+
105
+ /* base colors */
106
+ --white: #ffffff;
107
+ --black: #000000;
108
+ --black-light: #141414;
109
+
110
+ --primary-hex: #5e72e4;
111
+ --secondary-hex: #8392ab;
112
+ --info-hex: #11cdef;
113
+ --success-hex: #2dce89;
114
+ --warning-hex: #fb6340;
115
+ --error-hex: #f5365c;
116
+ --dark-hex: #344767;
117
+ --light-hex: #e9ecef;
118
+
119
+ /* gradients */
120
+ --grad-primary-main: #5e72e4;
121
+ --grad-primary-state: #825ee4;
122
+
123
+ --grad-secondary-main: #627594;
124
+ --grad-secondary-state: #a8b8d8;
125
+
126
+ --grad-info-main: #1171ef;
127
+ --grad-info-state: #11cdef;
128
+
129
+ --grad-success-main: #2dce89;
130
+ --grad-success-state: #2dcecc;
131
+
132
+ --grad-warning-main: #fb6340;
133
+ --grad-warning-state: #fbb140;
134
+
135
+ --grad-error-main: #f5365c;
136
+ --grad-error-state: #f56036;
137
+
138
+ --grad-light-main: #ced4da;
139
+ --grad-light-state: #ebeff4;
140
+
141
+ --grad-dark-main: #212229;
142
+ --grad-dark-state: #212529;
143
+
144
+ /* alerts */
145
+ --alert-primary-main: #5e72e4;
146
+ --alert-primary-state: #673bde;
147
+ --alert-primary-border: #cfd5f7;
148
+
149
+ --alert-secondary-main: #627594;
150
+ --alert-secondary-state: #8ca1cb;
151
+ --alert-secondary-border: #dadee6;
152
+
153
+ --alert-info-main: #1171ef;
154
+ --alert-info-state: #0eadca;
155
+ --alert-info-border: #b8f0fa;
156
+
157
+ --alert-success-main: #2dce89;
158
+ --alert-success-state: #26adab;
159
+ --alert-success-border: #c0f0dc;
160
+
161
+ --alert-warning-main: #fb6340;
162
+ --alert-warning-state: #faa118;
163
+ --alert-warning-border: #fed0c6;
164
+
165
+ --alert-error-main: #f5365c;
166
+ --alert-error-state: #f3410f;
167
+ --alert-error-border: #fcc3ce;
168
+
169
+ --alert-light-main: #ced4da;
170
+ --alert-light-state: #d1dae6;
171
+ --alert-light-border: #f8f9fa;
172
+
173
+ --alert-dark-main: #212229;
174
+ --alert-dark-state: #0f1112;
175
+ --alert-dark-border: #c2c8d1;
176
+
177
+ /* badges */
178
+ --badge-primary-bg: #eaecfb;
179
+ --badge-primary-text: #2643e9; /* FIX: bỏ 1 dấu # */
180
+
181
+ --badge-secondary-bg: #e4e8ed;
182
+ --badge-secondary-text: #5974a2;
183
+
184
+ --badge-info-bg: #aaedf9;
185
+ --badge-info-text: #03acca;
186
+
187
+ --badge-success-bg: #b0eed3;
188
+ --badge-success-text: #1aae6f;
189
+
190
+ --badge-warning-bg: #fee6e0;
191
+ --badge-warning-text: #ff3709;
192
+
193
+ --badge-error-bg: #fdd1da;
194
+ --badge-error-text: #f80031;
195
+
196
+ --badge-light-bg: #ffffff;
197
+ --badge-light-text: #c7d3de;
198
+
199
+ --badge-dark-bg: #8097bf;
200
+ --badge-dark-text: #1e2e4a;
201
+
202
+ /* inputs */
203
+ --input-border-main: #d2d6da;
204
+ --input-border-focus: #11cdef;
205
+ --input-error: #f5365c;
206
+ --input-success: #2dce89;
207
+
208
+ /* slider */
209
+ --slider-thumb-border: #d9d9d9;
210
+
211
+ /* circle slider */
212
+ --circle-slider-bg: #d3d3d3;
213
+
214
+ /* tabs */
215
+ --tabs-indicator-shadow: #ddd;
216
+
217
+ /* social */
218
+ --social-facebook-main: #3b5998;
219
+ --social-facebook-dark: #344e86;
220
+
221
+ --social-twitter-main: #55acee;
222
+ --social-twitter-dark: #3ea1ec;
223
+
224
+ --social-instagram-main: #125688;
225
+ --social-instagram-dark: #0e456d;
226
+
227
+ --social-linkedin-main: #0077b5;
228
+ --social-linkedin-dark: #00669c;
229
+
230
+ --social-pinterest-main: #cc2127;
231
+ --social-pinterest-dark: #b21d22;
232
+
233
+ --social-youtube-main: #e52d27;
234
+ --social-youtube-dark: #d41f1a;
235
+
236
+ --social-vimeo-main: #1ab7ea;
237
+ --social-vimeo-dark: #13a3d2;
238
+
239
+ --social-slack-main: #3aaf85;
240
+ --social-slack-dark: #329874;
241
+
242
+ --social-dribbble-main: #ea4c89;
243
+ --social-dribbble-dark: #e73177;
244
+
245
+ --social-github-main: #24292e;
246
+ --social-github-dark: #171a1d;
247
+
248
+ --social-reddit-main: #ff4500;
249
+ --social-reddit-dark: #e03d00;
250
+
251
+ --social-tumblr-main: #35465c;
252
+ --social-tumblr-dark: #2a3749;
253
+ }
254
+
255
+ @media (prefers-color-scheme: dark) {
256
+ :root {
257
+ /* Dark mode theo Argon: dùng background.dark + text sáng hơn */
258
+ --bg: #172b4d; /* background.dark */
259
+ --surface: #0f172a;
260
+ --surface-strong: #111827;
261
+ --text: #e2e8f0;
262
+ --muted: #94a3b8;
263
+ --border: #334155;
264
+ --grey: #1e293b;
265
+
266
+ --foreground: var(--text);
267
+ --muted-foreground: var(--muted);
268
+
269
+ /* accent giữ nguyên hệ màu, nhích sáng hơn */
270
+ --accent: #fb923c;
271
+ --accent-strong: #f97316;
272
+ --accent-2: #60a5fa;
273
+
274
+ --shadow: 0 30px 70px rgba(2, 6, 23, 0.65);
275
+
276
+ --confirm: 142 71% 45%;
277
+ --confirm-foreground: 0 0% 100%;
278
+
279
+ /* TW tokens */
280
+ --tw-background: 222.2 84% 4.9%;
281
+ --tw-foreground: 210 40% 98%;
282
+
283
+ --tw-card: 222.2 47.4% 11.2%;
284
+ --tw-card-foreground: 210 40% 98%;
285
+
286
+ --tw-popover: 222.2 84% 4.9%;
287
+ --tw-popover-foreground: 210 40% 98%;
288
+
289
+ /* vẫn dùng primary Argon */
290
+ --tw-primary: 232 71% 63%;
291
+ --tw-primary-foreground: 0 0% 100%;
292
+
293
+ --tw-secondary: 215 27.9% 16.9%;
294
+ --tw-secondary-foreground: 210 40% 98%;
295
+
296
+ --tw-muted: 215 27.9% 16.9%;
297
+ --tw-muted-foreground: 217.9 10.6% 64.9%;
298
+
299
+ --tw-accent: 190 88% 50%;
300
+ --tw-accent-foreground: 222.2 84% 4.9%;
301
+
302
+ --tw-destructive: 347 91% 58%;
303
+ --tw-destructive-foreground: 210 40% 98%;
304
+
305
+ --tw-border: 215 27% 28%;
306
+ --tw-input: 215 27% 28%;
307
+ --tw-ring: 215 16% 60%;
308
+
309
+ --tw-success: 153 64% 49%;
310
+
311
+ /* primary button tokens */
312
+ --primary: 232 71% 63%;
313
+ --primary-foreground: 0 0% 100%;
314
+
315
+ --primary-grad-from: 232 71% 63%;
316
+ --primary-grad-to: 251 70% 63%;
317
+ --primary-ring: 232 71% 63%;
318
+ }
319
+ }
320
+
321
+
322
+ *,
323
+ *::before,
324
+ *::after {
325
+ box-sizing: border-box;
326
+ }
327
+
328
+ body {
329
+ margin: 0;
330
+ min-height: 100vh;
331
+ background: var(--bg);
332
+ color: var(--text);
333
+ }
334
+
335
+ a {
336
+ color: inherit;
337
+ text-decoration: none;
338
+ }
339
+
340
+
341
+ [data-sonner-toaster] {
342
+ z-index: 2000 !important;
343
+ }
@@ -0,0 +1,364 @@
1
+ @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Manrope:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');
2
+
3
+ /* High-contrast graphite theme with mint and citrus accents. */
4
+
5
+ :root[data-client-theme='citrus-ink'] {
6
+ color-scheme: light;
7
+ --brand-tiger: #1f9d80;
8
+ --brand-fire-brick: #d36b1d;
9
+ --brand-asphalt: #1f2937;
10
+ --brand-cobalt: #3b82f6;
11
+ --brand-amethyst: #7c7cf8;
12
+ --brand-canary: #f1b94b;
13
+ --brand-moon-spot: #7a7f87;
14
+ --brand-lemonade: #fff1c9;
15
+ --brand-blush: #fff7db;
16
+ --brand-champagne: #fffdf6;
17
+ --brand-dolphin: #d7dde5;
18
+ --brand-smoke: #ebeef2;
19
+ --brand-silver: #f4f6f8;
20
+
21
+ --font-family-base: 'Manrope', 'Noto Sans', 'Segoe UI', sans-serif;
22
+ --font-family-heading: 'Sora', 'Manrope', 'Noto Sans', 'Segoe UI',
23
+ sans-serif;
24
+ --font-family-mono: 'IBM Plex Mono', 'SFMono-Regular', Menlo, monospace;
25
+
26
+ --bg: #fffaf2;
27
+ --surface: #ffffff;
28
+ --surface-strong: #f8f0e3;
29
+ --surface-elevated: #ffffff;
30
+ --grey: #f3eadb;
31
+ --grey-strong: #e5dccf;
32
+ --border: #e4d8c6;
33
+ --border-strong: #d3c3ad;
34
+
35
+ --text: #4a433b;
36
+ --text-strong: #1f2937;
37
+ --muted: #7a746a;
38
+ --foreground: var(--text);
39
+ --muted-foreground: var(--muted);
40
+
41
+ --accent: #d36b1d;
42
+ --accent-soft: rgba(211, 107, 29, 0.14);
43
+ --accent-strong: #f1b94b;
44
+ --accent-2: #1f9d80;
45
+ --danger: #d84a4a;
46
+ --danger-soft: rgba(216, 74, 74, 0.14);
47
+ --success-strong: #1f9d80;
48
+ --success-soft: rgba(31, 157, 128, 0.16);
49
+ --info: #3b82f6;
50
+ --info-soft: rgba(59, 130, 246, 0.16);
51
+
52
+ --shadow: 0 20px 42px rgba(31, 41, 55, 0.1);
53
+ --shadow-sm: 0 12px 24px rgba(31, 41, 55, 0.07);
54
+ --menu-shadow: 0 24px 46px rgba(31, 41, 55, 0.14);
55
+ --focus-ring: rgba(211, 107, 29, 0.18);
56
+
57
+ --confirm: 165 67% 37%;
58
+ --confirm-foreground: 0 0% 100%;
59
+
60
+ --tw-background: 43 100% 98%;
61
+ --tw-foreground: 214 28% 18%;
62
+ --tw-card: 0 0% 100%;
63
+ --tw-card-foreground: 214 28% 18%;
64
+ --tw-popover: 0 0% 100%;
65
+ --tw-popover-foreground: 214 28% 18%;
66
+ --tw-primary: 29 76% 47%;
67
+ --tw-primary-foreground: 0 0% 100%;
68
+ --tw-secondary: 41 55% 93%;
69
+ --tw-secondary-foreground: 214 28% 18%;
70
+ --tw-muted: 39 44% 93%;
71
+ --tw-muted-foreground: 35 7% 48%;
72
+ --tw-accent: 42 86% 62%;
73
+ --tw-accent-foreground: 214 28% 18%;
74
+ --tw-destructive: 0 64% 56%;
75
+ --tw-destructive-foreground: 0 0% 100%;
76
+ --tw-border: 39 33% 84%;
77
+ --tw-input: 39 33% 84%;
78
+ --tw-ring: 29 76% 47%;
79
+ --tw-success: 165 67% 37%;
80
+
81
+ --primary: 29 76% 47%;
82
+ --primary-foreground: 0 0% 100%;
83
+ --primary-grad-from: 29 76% 47%;
84
+ --primary-grad-to: 42 86% 62%;
85
+ --primary-ring: 29 76% 47%;
86
+
87
+ --input-bg: #ffffff;
88
+ --input-border-main: #ddcfbc;
89
+ --input-border-hover: #c8b59b;
90
+ --input-border-focus: var(--accent);
91
+ --input-placeholder: #9b917f;
92
+ --input-error: var(--danger);
93
+ --input-success: var(--success-strong);
94
+
95
+ --table-head-bg: #fbf1e1;
96
+ --table-row-hover: #fff8ef;
97
+
98
+ --tab-track: #f7efe2;
99
+ --tab-indicator: #ffffff;
100
+ --tab-text: #7a746a;
101
+ --tab-text-active: #1f2937;
102
+
103
+ --menu-surface: #fffdf9;
104
+ --menu-border: #e1d6c8;
105
+ --header-glass: #fffdf8;
106
+ --header-text: #1f2937;
107
+
108
+ --shell-main-bg: #fffaf2;
109
+ --shell-hero-bg: linear-gradient(135deg, #1f2937 0%, #1f9d80 46%, #f1b94b 100%);
110
+ --public-overlay-bg: rgba(24, 28, 33, 0.64);
111
+ --auth-card-bg: #fffefb;
112
+ --card-bg: #ffffff;
113
+ --page-title-bg: #fffdf9;
114
+ --section-icon-bg: #fff0db;
115
+ --section-icon-fg: #d36b1d;
116
+ --avatar-bg: #e8fbf7;
117
+ --avatar-fg: #1f9d80;
118
+ --menu-item-hover-bg: #fff3e5;
119
+ --menu-item-active-bg: #ffecd2;
120
+
121
+ --sidebar-bg: linear-gradient(180deg, #1f2430 0%, #1c4d4a 52%, #d38a2f 100%);
122
+ --sidebar-text: #f6f1e8;
123
+ --sidebar-foreground: #f6f1e8;
124
+ --sidebar-active-text: #ffffff;
125
+ --sidebar-muted: rgba(246, 241, 232, 0.76);
126
+ --sidebar-icon: #f6dfb6;
127
+ --sidebar-icon-active: #fff4d3;
128
+ --sidebar-hover: rgba(255, 255, 255, 0.08);
129
+ --sidebar-active: rgba(255, 255, 255, 0.14);
130
+ --sidebar-divider: rgba(255, 255, 255, 0.08);
131
+ --sidebar-submenu-border: rgba(255, 255, 255, 0.12);
132
+ --brand-badge-bg: rgba(255, 255, 255, 0.14);
133
+ --brand-badge-fg: #ffe8bf;
134
+
135
+ --shell-hero-from: #1f2937;
136
+ --shell-hero-mid: #1f9d80;
137
+ --shell-hero-to: #f1b94b;
138
+
139
+ --button-primary-bg: linear-gradient(135deg, #d36b1d 0%, #f1b94b 100%);
140
+ --button-primary-fg: #1f2937;
141
+ --button-primary-shadow: 0 16px 30px -18px rgba(211, 107, 29, 0.34);
142
+ --button-confirm-bg: linear-gradient(135deg, #1f9d80 0%, #53c7ac 100%);
143
+ --button-confirm-fg: #10231f;
144
+ --button-confirm-shadow: 0 12px 26px -18px rgba(31, 157, 128, 0.3);
145
+ --button-destructive-bg: #d84a4a;
146
+ --button-destructive-fg: #ffffff;
147
+ --button-destructive-shadow: 0 10px 24px -16px rgba(216, 74, 74, 0.3);
148
+ --button-outline-bg: #ffffff;
149
+ --button-secondary-bg: #fff2df;
150
+ --button-ghost-hover-bg: #fff2df;
151
+
152
+ --datatable-bg: #ffffff;
153
+ --empty-icon-bg: #fff0db;
154
+ --empty-icon-fg: #d36b1d;
155
+ --tabs-shadow: rgba(31, 41, 55, 0.05);
156
+ --tab-indicator-shadow: rgba(31, 41, 55, 0.08);
157
+
158
+ --stat-sky-bg: #edf4ff;
159
+ --stat-emerald-bg: #ebfbf6;
160
+ --stat-violet-bg: #f0efff;
161
+ --stat-rose-bg: #fff2de;
162
+ --stat-icon-bg: #ffffff;
163
+ --icon-sky: #3b82f6;
164
+ --icon-emerald: #1f9d80;
165
+ --icon-violet: #7c7cf8;
166
+ --icon-rose: #d36b1d;
167
+
168
+ --switch-track-bg: #eadfce;
169
+ --switch-active-bg: #d36b1d;
170
+
171
+ --detail-cell-bg: #ffffff;
172
+ --detail-cell-hover-bg: #fff8ef;
173
+ --code-card-bg: #fff7ea;
174
+ --code-panel-bg: #151b22;
175
+ --code-copy-hover-bg: #26303b;
176
+ --results-badge-bg: #fff0db;
177
+ --spending-card-bg: #edf8f3;
178
+ --message-success-bg: #ecfaf4;
179
+ --message-error-bg: #fff0ec;
180
+
181
+ --balance-value-color: #d36b1d;
182
+ --spending-value-color: #1f2937;
183
+ --success-text: #1a8a72;
184
+ --sidebar-active-border: rgba(255, 232, 191, 0.22);
185
+
186
+ --tone-emerald: #1f9d80;
187
+ --tone-emerald-soft: rgba(31, 157, 128, 0.16);
188
+ --tone-sky: #3b82f6;
189
+ --tone-sky-soft: rgba(59, 130, 246, 0.14);
190
+ --tone-violet: #7c7cf8;
191
+ --tone-violet-soft: rgba(124, 124, 248, 0.14);
192
+ --tone-rose: #f1b94b;
193
+ --tone-rose-soft: rgba(241, 185, 75, 0.16);
194
+ }
195
+
196
+ :root[data-ui-color-mode='dark'][data-client-theme='citrus-ink'] {
197
+ color-scheme: dark;
198
+ --brand-asphalt: #11161d;
199
+ --brand-cobalt: #7fb0ff;
200
+ --brand-amethyst: #a5a6ff;
201
+ --brand-moon-spot: #b1b9c2;
202
+ --brand-dolphin: #66717e;
203
+
204
+ --bg: #12161d;
205
+ --surface: #181e27;
206
+ --surface-strong: #202834;
207
+ --surface-elevated: #272f3b;
208
+ --grey: #151b23;
209
+ --grey-strong: #334050;
210
+ --border: #334050;
211
+ --border-strong: #46576b;
212
+
213
+ --text: #e8edf3;
214
+ --text-strong: #fffdf8;
215
+ --muted: #aeb9c6;
216
+
217
+ --accent: #f3a24c;
218
+ --accent-soft: rgba(243, 162, 76, 0.18);
219
+ --accent-strong: #f7cf6b;
220
+ --accent-2: #47d0bc;
221
+ --danger: #ff8a72;
222
+ --danger-soft: rgba(255, 138, 114, 0.18);
223
+ --success-strong: #55d1b7;
224
+ --success-soft: rgba(85, 209, 183, 0.18);
225
+ --info: #7fb0ff;
226
+ --info-soft: rgba(127, 176, 255, 0.18);
227
+
228
+ --shadow: 0 24px 52px -30px rgba(0, 0, 0, 0.78);
229
+ --shadow-sm: 0 16px 32px -24px rgba(0, 0, 0, 0.62);
230
+ --menu-shadow: 0 28px 56px -28px rgba(0, 0, 0, 0.72);
231
+ --focus-ring: rgba(243, 162, 76, 0.24);
232
+
233
+ --confirm: 168 56% 58%;
234
+ --confirm-foreground: 214 28% 14%;
235
+
236
+ --tw-background: 215 25% 11%;
237
+ --tw-foreground: 42 100% 98%;
238
+ --tw-card: 215 24% 15%;
239
+ --tw-card-foreground: 42 100% 98%;
240
+ --tw-popover: 215 24% 15%;
241
+ --tw-popover-foreground: 42 100% 98%;
242
+ --tw-primary: 33 87% 63%;
243
+ --tw-primary-foreground: 214 28% 14%;
244
+ --tw-secondary: 213 22% 20%;
245
+ --tw-secondary-foreground: 42 100% 98%;
246
+ --tw-muted: 214 20% 18%;
247
+ --tw-muted-foreground: 214 16% 74%;
248
+ --tw-accent: 48 90% 69%;
249
+ --tw-accent-foreground: 214 28% 14%;
250
+ --tw-destructive: 12 95% 72%;
251
+ --tw-destructive-foreground: 0 0% 100%;
252
+ --tw-border: 214 21% 27%;
253
+ --tw-input: 214 21% 27%;
254
+ --tw-ring: 33 87% 63%;
255
+ --tw-success: 168 56% 58%;
256
+
257
+ --primary: 33 87% 63%;
258
+ --primary-foreground: 214 28% 14%;
259
+ --primary-grad-from: 33 87% 63%;
260
+ --primary-grad-to: 48 90% 69%;
261
+ --primary-ring: 33 87% 63%;
262
+
263
+ --input-bg: #1f2732;
264
+ --input-border-main: #435264;
265
+ --input-border-hover: #56677d;
266
+ --input-placeholder: #9aa8b6;
267
+
268
+ --table-head-bg: #1f2732;
269
+ --table-row-hover: #232d39;
270
+
271
+ --tab-track: #1c2430;
272
+ --tab-indicator: #2b3442;
273
+ --tab-text: #b2bdc8;
274
+ --tab-text-active: #ffffff;
275
+
276
+ --menu-surface: #1b232e;
277
+ --menu-border: #39485a;
278
+ --header-glass: #18202a;
279
+ --header-text: #fffdf8;
280
+
281
+ --shell-main-bg: #12161d;
282
+ --shell-hero-bg: linear-gradient(135deg, #10161d 0%, #145c56 50%, #c37a20 100%);
283
+ --public-overlay-bg: rgba(10, 12, 16, 0.78);
284
+ --auth-card-bg: #1a222d;
285
+ --card-bg: #1b232e;
286
+ --page-title-bg: #212b37;
287
+ --section-icon-bg: #2d3642;
288
+ --section-icon-fg: #f3a24c;
289
+ --avatar-bg: #23363a;
290
+ --avatar-fg: #55d1b7;
291
+ --menu-item-hover-bg: #27313d;
292
+ --menu-item-active-bg: #2e3947;
293
+
294
+ --sidebar-bg: linear-gradient(180deg, #10161d 0%, #153333 54%, #8d5718 100%);
295
+ --sidebar-text: #f6efe4;
296
+ --sidebar-foreground: #f6efe4;
297
+ --sidebar-active-text: #ffffff;
298
+ --sidebar-muted: rgba(246, 239, 228, 0.78);
299
+ --sidebar-icon: #f6dca7;
300
+ --sidebar-icon-active: #fff0cd;
301
+ --sidebar-hover: rgba(255, 255, 255, 0.08);
302
+ --sidebar-active: rgba(255, 255, 255, 0.12);
303
+ --sidebar-divider: rgba(255, 255, 255, 0.08);
304
+ --sidebar-submenu-border: rgba(255, 255, 255, 0.1);
305
+ --brand-badge-bg: rgba(255, 255, 255, 0.14);
306
+ --brand-badge-fg: #ffe5b8;
307
+
308
+ --button-primary-bg: linear-gradient(135deg, #f3a24c 0%, #f7cf6b 100%);
309
+ --button-primary-fg: #14202a;
310
+ --button-primary-shadow: 0 18px 34px -20px rgba(243, 162, 76, 0.38);
311
+ --button-confirm-bg: linear-gradient(135deg, #55d1b7 0%, #8be7d5 100%);
312
+ --button-confirm-fg: #10231f;
313
+ --button-confirm-shadow: 0 14px 28px -18px rgba(85, 209, 183, 0.3);
314
+ --button-destructive-bg: #ff8a72;
315
+ --button-destructive-fg: #ffffff;
316
+ --button-destructive-shadow: 0 12px 26px -16px rgba(255, 138, 114, 0.3);
317
+ --button-outline-bg: #212b37;
318
+ --button-secondary-bg: #2a3440;
319
+ --button-ghost-hover-bg: #2a3440;
320
+
321
+ --datatable-bg: #1b232e;
322
+ --empty-icon-bg: #2d3642;
323
+ --empty-icon-fg: #f3a24c;
324
+ --tabs-shadow: rgba(0, 0, 0, 0.28);
325
+ --tab-indicator-shadow: rgba(0, 0, 0, 0.34);
326
+
327
+ --stat-sky-bg: #1d2b43;
328
+ --stat-emerald-bg: #17342f;
329
+ --stat-violet-bg: #252944;
330
+ --stat-rose-bg: #33291f;
331
+ --stat-icon-bg: #26313d;
332
+ --icon-sky: #7fb0ff;
333
+ --icon-emerald: #55d1b7;
334
+ --icon-violet: #a5a6ff;
335
+ --icon-rose: #f7cf6b;
336
+
337
+ --switch-track-bg: #44505f;
338
+ --switch-active-bg: #f3a24c;
339
+
340
+ --detail-cell-bg: #1d2530;
341
+ --detail-cell-hover-bg: #26303b;
342
+ --code-card-bg: #1c2430;
343
+ --code-panel-bg: #0f141b;
344
+ --code-copy-hover-bg: #293441;
345
+ --results-badge-bg: #2d3642;
346
+ --spending-card-bg: #1b302a;
347
+ --message-success-bg: #17342f;
348
+ --message-error-bg: #352421;
349
+
350
+ --balance-value-color: #f3a24c;
351
+ --spending-value-color: #fffdf8;
352
+ --success-text: #7be2cf;
353
+ --sidebar-active-border: rgba(255, 229, 184, 0.2);
354
+
355
+ --tone-emerald: #55d1b7;
356
+ --tone-emerald-soft: rgba(85, 209, 183, 0.18);
357
+ --tone-sky: #7fb0ff;
358
+ --tone-sky-soft: rgba(127, 176, 255, 0.18);
359
+ --tone-violet: #a5a6ff;
360
+ --tone-violet-soft: rgba(165, 166, 255, 0.18);
361
+ --tone-rose: #f7cf6b;
362
+ --tone-rose-soft: rgba(247, 207, 107, 0.18);
363
+ }
364
+