@lucasvu/scope-ui 0.1.0 → 0.1.2

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,969 @@
1
+ /* Shared crisp overrides for all non-default client themes. */
2
+
3
+ :root[data-client-theme] body,
4
+ :root[data-client-theme] input,
5
+ :root[data-client-theme] button,
6
+ :root[data-client-theme] select,
7
+ :root[data-client-theme] textarea {
8
+ font-family: var(--font-family-base, 'Inter', 'Segoe UI', sans-serif);
9
+ -webkit-font-smoothing: antialiased;
10
+ text-rendering: optimizeLegibility;
11
+ }
12
+
13
+ :root[data-client-theme] h1,
14
+ :root[data-client-theme] h2,
15
+ :root[data-client-theme] h3,
16
+ :root[data-client-theme] h4,
17
+ :root[data-client-theme] h5,
18
+ :root[data-client-theme] h6 {
19
+ font-family: var(--font-family-heading, var(--font-family-base, 'Inter', sans-serif));
20
+ }
21
+
22
+ :root[data-client-theme] code,
23
+ :root[data-client-theme] pre {
24
+ font-family: var(--font-family-mono, 'IBM Plex Mono', monospace);
25
+ }
26
+
27
+ :root[data-client-theme] [data-client-shell='main-layout'] {
28
+ background: var(--shell-main-bg, var(--bg));
29
+ color: var(--text);
30
+ }
31
+
32
+ :root[data-client-theme] [data-client-shell='main-layout'] [data-slot='hero-bg'] {
33
+ background: var(--shell-hero-bg);
34
+ }
35
+
36
+ :root[data-client-theme] [data-client-shell='header']:not(.bg-transparent) {
37
+ background: var(--header-glass, var(--surface-elevated)) !important;
38
+ color: var(--header-text, var(--text-strong)) !important;
39
+ border: 1px solid var(--border-strong, var(--border)) !important;
40
+ box-shadow: var(--shadow-sm) !important;
41
+ backdrop-filter: none !important;
42
+ }
43
+
44
+ :root[data-client-theme] [data-client-shell='header']:not(.bg-transparent) [data-slot='title'],
45
+ :root[data-client-theme] [data-client-shell='header']:not(.bg-transparent) [data-slot='toggle'],
46
+ :root[data-client-theme] [data-client-shell='header']:not(.bg-transparent) [data-slot='user-trigger'] {
47
+ color: var(--header-text, var(--text-strong)) !important;
48
+ }
49
+
50
+ :root[data-client-theme] [data-client-shell='header']:not(.bg-transparent) [data-slot='timezone'] {
51
+ color: var(
52
+ --header-subtle-text,
53
+ color-mix(in srgb, var(--header-text, var(--text-strong)) 64%, var(--muted))
54
+ ) !important;
55
+ }
56
+
57
+ :root[data-client-theme] [data-client-shell='header'].bg-transparent {
58
+ color: var(--header-transparent-text, #ffffff) !important;
59
+ }
60
+
61
+ :root[data-client-theme] [data-client-shell='header'].bg-transparent [data-slot='title'],
62
+ :root[data-client-theme] [data-client-shell='header'].bg-transparent [data-slot='toggle'],
63
+ :root[data-client-theme] [data-client-shell='header'].bg-transparent [data-slot='user-trigger'] {
64
+ color: var(--header-transparent-text, #ffffff) !important;
65
+ }
66
+
67
+ :root[data-client-theme] [data-client-shell='header'].bg-transparent [data-slot='timezone'] {
68
+ color: var(
69
+ --header-transparent-subtle-text,
70
+ color-mix(in srgb, var(--header-transparent-text, #ffffff) 74%, transparent)
71
+ ) !important;
72
+ }
73
+
74
+ :root[data-client-theme] [data-client-shell='header'].bg-transparent > div > div:first-child button,
75
+ :root[data-client-theme]
76
+ [data-client-shell='header'].bg-transparent
77
+ button[aria-haspopup='menu'][aria-controls='user-menu'] {
78
+ color: var(--header-transparent-text, #ffffff) !important;
79
+ }
80
+
81
+ :root[data-client-theme] [data-client-shell='header'].bg-transparent > div > div:first-child > span,
82
+ :root[data-client-theme] [data-client-shell='header'].bg-transparent > div > div:last-child > span {
83
+ color: inherit !important;
84
+ }
85
+
86
+ :root[data-client-theme] [data-client-shell='header'].bg-transparent > div > div:first-child button:hover,
87
+ :root[data-client-theme]
88
+ [data-client-shell='header'].bg-transparent
89
+ button[aria-haspopup='menu'][aria-controls='user-menu']:hover {
90
+ background: var(
91
+ --header-transparent-hover-bg,
92
+ rgba(255, 255, 255, 0.1)
93
+ ) !important;
94
+ }
95
+
96
+ :root[data-client-theme] [data-client-shell='header'].bg-transparent [data-slot='avatar'] {
97
+ background: var(
98
+ --header-transparent-avatar-bg,
99
+ rgba(255, 255, 255, 0.2)
100
+ ) !important;
101
+ color: var(
102
+ --header-transparent-avatar-fg,
103
+ var(--header-transparent-text, #ffffff)
104
+ ) !important;
105
+ }
106
+
107
+ :root[data-client-theme] [data-client-shell='header'] [data-slot='avatar'] {
108
+ background: var(--avatar-bg, var(--surface-strong));
109
+ color: var(--avatar-fg, var(--accent));
110
+ box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--avatar-fg, var(--accent)) 18%, var(--border));
111
+ }
112
+
113
+ :root[data-client-theme] [data-client-shell='header'] [data-slot='user-menu'] {
114
+ border-color: var(--menu-border, var(--border)) !important;
115
+ background: var(--menu-surface, var(--surface-elevated)) !important;
116
+ box-shadow: var(--menu-shadow) !important;
117
+ backdrop-filter: none !important;
118
+ }
119
+
120
+ :root[data-client-theme] [data-client-shell='header'] [data-slot='user-menu'] button:hover {
121
+ background: var(--menu-item-hover-bg, var(--surface-strong)) !important;
122
+ color: var(--text-strong) !important;
123
+ }
124
+
125
+ :root[data-client-theme] [data-client-shell='header'] [data-slot='user-menu'] button[aria-current='page'] {
126
+ background: var(--menu-item-active-bg, var(--surface-strong)) !important;
127
+ color: var(--text-strong) !important;
128
+ }
129
+
130
+ :root[data-client-theme] [data-client-shell='public-layout'] [data-slot='overlay'] {
131
+ background: var(--public-overlay-bg) !important;
132
+ backdrop-filter: none !important;
133
+ }
134
+
135
+ :root[data-client-theme] [data-client-shell='auth-card'] {
136
+ border-color: var(--border-strong, var(--border)) !important;
137
+ background: var(--auth-card-bg, var(--surface-elevated)) !important;
138
+ box-shadow: var(--shadow) !important;
139
+ backdrop-filter: none !important;
140
+ }
141
+
142
+ :root[data-client-theme] [data-main-fe-card],
143
+ :root[data-client-theme] [data-main-fe-page-title],
144
+ :root[data-client-theme] [data-main-fe-datatable] {
145
+ border-color: var(--border-strong, var(--border)) !important;
146
+ background: var(--card-bg, var(--surface-elevated)) !important;
147
+ color: var(--text) !important;
148
+ box-shadow: var(--shadow) !important;
149
+ backdrop-filter: none !important;
150
+ }
151
+
152
+ :root[data-client-theme] [data-main-fe-page-title] {
153
+ background: var(--page-title-bg, var(--card-bg, var(--surface-elevated))) !important;
154
+ }
155
+
156
+ :root[data-client-theme] [data-main-fe-page-title] [data-slot='title'],
157
+ :root[data-client-theme] [data-main-fe-section-title] [data-slot='title'],
158
+ :root[data-client-theme] [data-main-fe-card] [data-slot='card-title'] {
159
+ color: var(--text-strong) !important;
160
+ }
161
+
162
+ :root[data-client-theme] [data-main-fe-page-title] [data-slot='subtitle'],
163
+ :root[data-client-theme] [data-main-fe-section-title] [data-slot='subtitle'],
164
+ :root[data-client-theme] [data-main-fe-card-description] {
165
+ color: var(--muted) !important;
166
+ }
167
+
168
+ :root[data-client-theme] [data-main-fe-section-title] [data-slot='icon'] {
169
+ background: var(--section-icon-bg, var(--accent-soft)) !important;
170
+ color: var(--section-icon-fg, var(--accent)) !important;
171
+ box-shadow: inset 0 0 0 1px
172
+ color-mix(in srgb, var(--section-icon-fg, var(--accent)) 14%, var(--border)) !important;
173
+ }
174
+
175
+ :root[data-client-theme] [data-main-fe-button] {
176
+ border-color: transparent;
177
+ }
178
+
179
+ :root[data-client-theme] [data-main-fe-button]:focus-visible {
180
+ box-shadow: 0 0 0 4px var(--focus-ring) !important;
181
+ }
182
+
183
+ :root[data-client-theme] [data-main-fe-button][data-variant='create'],
184
+ :root[data-client-theme] [data-main-fe-button][data-variant='default'] {
185
+ background: var(--button-primary-bg) !important;
186
+ color: var(--button-primary-fg, #fff) !important;
187
+ box-shadow: var(--button-primary-shadow) !important;
188
+ }
189
+
190
+ :root[data-client-theme] [data-main-fe-button][data-variant='confirm'] {
191
+ background: var(--button-confirm-bg) !important;
192
+ color: var(--button-confirm-fg, #fff) !important;
193
+ box-shadow: var(--button-confirm-shadow) !important;
194
+ }
195
+
196
+ :root[data-client-theme] [data-main-fe-button][data-variant='destructive'] {
197
+ background: var(--button-destructive-bg) !important;
198
+ color: var(--button-destructive-fg, #fff) !important;
199
+ box-shadow: var(--button-destructive-shadow) !important;
200
+ }
201
+
202
+ :root[data-client-theme] [data-main-fe-button][data-variant='outline'] {
203
+ border-color: var(--border-strong, var(--border)) !important;
204
+ background: var(--button-outline-bg, var(--surface-elevated)) !important;
205
+ color: var(--text) !important;
206
+ box-shadow: var(--shadow-sm) !important;
207
+ }
208
+
209
+ :root[data-client-theme] [data-main-fe-button][data-variant='secondary'] {
210
+ background: var(--button-secondary-bg, var(--surface-strong)) !important;
211
+ color: var(--text-strong) !important;
212
+ box-shadow: var(--shadow-sm) !important;
213
+ }
214
+
215
+ :root[data-client-theme] [data-main-fe-button][data-variant='ghost'] {
216
+ color: var(--text) !important;
217
+ }
218
+
219
+ :root[data-client-theme] [data-main-fe-button][data-variant='ghost']:hover {
220
+ background: var(--button-ghost-hover-bg, var(--surface-strong)) !important;
221
+ }
222
+
223
+ :root[data-client-theme] [data-main-fe-button][data-variant='link'] {
224
+ color: var(--accent-strong, var(--accent)) !important;
225
+ }
226
+
227
+ :root[data-client-theme] [data-main-fe-input] > label,
228
+ :root[data-client-theme] [data-main-fe-combobox] > label,
229
+ :root[data-client-theme] [data-main-fe-date-range] [data-slot='label'],
230
+ :root[data-client-theme] [data-main-fe-date-time] [data-slot='label'],
231
+ :root[data-client-theme] [data-main-fe-date-time] [data-slot='quick-ranges-label'],
232
+ :root[data-client-theme] [data-main-fe-date-time-popup] [data-slot='quick-ranges-label'] {
233
+ color: var(--text-strong) !important;
234
+ }
235
+
236
+ :root[data-client-theme] [data-main-fe-input] [data-slot='control'],
237
+ :root[data-client-theme] [data-main-fe-combobox] [data-slot='control'],
238
+ :root[data-client-theme] [data-main-fe-date-range] [data-slot='trigger'],
239
+ :root[data-client-theme] [data-main-fe-date-time] [data-slot='trigger'] {
240
+ border-color: var(--input-border-main, var(--border)) !important;
241
+ background: var(--input-bg, var(--surface-elevated)) !important;
242
+ color: var(--text) !important;
243
+ box-shadow: var(--shadow-sm) !important;
244
+ backdrop-filter: none !important;
245
+ }
246
+
247
+ :root[data-client-theme] [data-main-fe-input] [data-slot='control']::placeholder,
248
+ :root[data-client-theme] [data-main-fe-combobox] [data-slot='control']::placeholder {
249
+ color: var(--input-placeholder, var(--muted)) !important;
250
+ }
251
+
252
+ :root[data-client-theme] [data-main-fe-input] [data-slot='control']:hover,
253
+ :root[data-client-theme] [data-main-fe-combobox] [data-slot='control']:hover,
254
+ :root[data-client-theme] [data-main-fe-date-range] [data-slot='trigger']:hover,
255
+ :root[data-client-theme] [data-main-fe-date-time] [data-slot='trigger']:hover {
256
+ border-color: var(--input-border-hover, var(--border-strong)) !important;
257
+ background: var(--surface, var(--input-bg, var(--surface-elevated))) !important;
258
+ }
259
+
260
+ :root[data-client-theme] [data-main-fe-input] [data-slot='control']:focus-visible,
261
+ :root[data-client-theme] [data-main-fe-combobox] [data-slot='control']:focus-visible,
262
+ :root[data-client-theme] [data-main-fe-input] [data-slot='toggle']:focus-visible,
263
+ :root[data-client-theme] [data-main-fe-date-range] [data-slot='trigger']:focus-visible,
264
+ :root[data-client-theme] [data-main-fe-date-time] [data-slot='trigger']:focus-visible {
265
+ box-shadow: 0 0 0 4px var(--focus-ring) !important;
266
+ }
267
+
268
+ :root[data-client-theme] [data-main-fe-input] [data-slot='prefix'],
269
+ :root[data-client-theme] [data-main-fe-input] [data-slot='suffix-wrap'],
270
+ :root[data-client-theme] [data-main-fe-combobox] [data-slot='chevron'],
271
+ :root[data-client-theme] [data-main-fe-combobox] [data-slot='clear'] {
272
+ color: var(--muted) !important;
273
+ }
274
+
275
+ :root[data-client-theme]
276
+ :is(
277
+ [data-main-fe-combobox] [data-slot='dropdown'],
278
+ [data-main-fe-combobox-popup],
279
+ [data-main-fe-date-range] [data-slot='panel'],
280
+ [data-main-fe-date-time] [data-slot='panel'],
281
+ [data-main-fe-date-time-popup],
282
+ [data-client-dashboard='page'] [data-slot='modal-panel'],
283
+ [data-client-models='page'] [data-slot='modal-panel'],
284
+ [data-client-api-keys='modal'] [data-slot='modal-panel'],
285
+ [data-client-api-keys='confirm'] [data-slot='modal-panel'],
286
+ [data-client-request-logs='detail'] [data-slot='modal-panel'],
287
+ [data-client-credit='modal'] [data-slot='panel']
288
+ ) {
289
+ border-color: var(--menu-border, var(--border)) !important;
290
+ background: var(--menu-surface, var(--surface-elevated)) !important;
291
+ box-shadow: var(--menu-shadow) !important;
292
+ backdrop-filter: none !important;
293
+ }
294
+
295
+ :root[data-client-theme]
296
+ :is(
297
+ [data-main-fe-combobox] [data-slot='option'],
298
+ [data-main-fe-combobox-popup] [data-slot='option']
299
+ ) {
300
+ color: var(--text) !important;
301
+ }
302
+
303
+ :root[data-client-theme]
304
+ :is(
305
+ [data-main-fe-combobox] [data-slot='option-description'],
306
+ [data-main-fe-combobox-popup] [data-slot='option-description'],
307
+ [data-main-fe-combobox] [data-slot='empty'],
308
+ [data-main-fe-combobox-popup] [data-slot='empty']
309
+ ) {
310
+ color: var(--muted) !important;
311
+ }
312
+
313
+ :root[data-client-theme]
314
+ :is(
315
+ [data-main-fe-combobox] [data-slot='option']:hover,
316
+ [data-main-fe-combobox] [data-slot='option'][data-highlighted='true'],
317
+ [data-main-fe-combobox-popup] [data-slot='option']:hover,
318
+ [data-main-fe-combobox-popup] [data-slot='option'][data-highlighted='true']
319
+ ) {
320
+ background: var(--menu-item-hover-bg, var(--surface-strong)) !important;
321
+ color: var(--text-strong) !important;
322
+ }
323
+
324
+ :root[data-client-theme] [data-main-fe-tabs] {
325
+ border-color: var(--border) !important;
326
+ background: var(--tab-track) !important;
327
+ box-shadow: inset 0 1px 0 var(--tabs-shadow) !important;
328
+ }
329
+
330
+ :root[data-client-theme] [data-main-fe-tabs] [data-slot='indicator'] {
331
+ background: var(--tab-indicator) !important;
332
+ box-shadow: 0 1px 2px var(--tab-indicator-shadow) !important;
333
+ }
334
+
335
+ :root[data-client-theme] [data-main-fe-tabs] [data-slot='tab'] {
336
+ color: var(--tab-text) !important;
337
+ }
338
+
339
+ :root[data-client-theme] [data-main-fe-tabs] [data-slot='tab'][data-active='true'] {
340
+ color: var(--tab-text-active) !important;
341
+ }
342
+
343
+ :root[data-client-theme] [data-main-fe-datatable] [data-slot='sticky-header'],
344
+ :root[data-client-theme] [data-main-fe-datatable] [data-slot='header'],
345
+ :root[data-client-theme] [data-main-fe-datatable] [data-slot='head-row'] {
346
+ background: var(--table-head-bg) !important;
347
+ backdrop-filter: none !important;
348
+ }
349
+
350
+ :root[data-client-theme] [data-main-fe-datatable] [data-slot='sticky-header'] {
351
+ border-bottom: 1px solid var(--border) !important;
352
+ box-shadow: 0 12px 24px -20px rgba(15, 23, 42, 0.45) !important;
353
+ }
354
+
355
+ :root[data-client-theme] [data-main-fe-datatable] th,
356
+ :root[data-client-theme] [data-main-fe-datatable] td {
357
+ color: var(--text) !important;
358
+ border-color: var(--border) !important;
359
+ }
360
+
361
+ :root[data-client-theme] [data-main-fe-datatable] th {
362
+ background: var(--table-head-bg) !important;
363
+ color: var(--muted) !important;
364
+ }
365
+
366
+ :root[data-client-theme] [data-main-fe-datatable] [data-slot='body-row']:hover {
367
+ background: var(--table-row-hover) !important;
368
+ }
369
+
370
+ :root[data-client-theme] [data-main-fe-datatable] [data-slot='empty-icon'] {
371
+ background: var(--empty-icon-bg, var(--accent-soft)) !important;
372
+ color: var(--empty-icon-fg, var(--accent)) !important;
373
+ box-shadow: inset 0 0 0 1px
374
+ color-mix(in srgb, var(--empty-icon-fg, var(--accent)) 14%, var(--border)) !important;
375
+ }
376
+
377
+ :root[data-client-theme] [data-main-fe-pagination] {
378
+ border-top-color: var(--border) !important;
379
+ color: var(--muted) !important;
380
+ }
381
+
382
+ :root[data-client-theme] [data-main-fe-pagination] [data-slot='page-size'],
383
+ :root[data-client-theme] [data-main-fe-pagination] [data-slot='current'] {
384
+ color: var(--text) !important;
385
+ }
386
+
387
+ :root[data-client-theme] [data-main-fe-pagination] [data-slot='page-size-select'],
388
+ :root[data-client-theme] [data-main-fe-pagination] [data-slot='nav-button'] {
389
+ border-color: var(--border) !important;
390
+ background: var(--surface) !important;
391
+ color: var(--text) !important;
392
+ }
393
+
394
+ :root[data-client-theme] [data-main-fe-pagination] [data-slot='page-size-select']:hover,
395
+ :root[data-client-theme] [data-main-fe-pagination] [data-slot='nav-button']:hover {
396
+ background: var(--surface-strong) !important;
397
+ }
398
+
399
+ :root[data-client-theme] [data-main-fe-sidebar] {
400
+ background: var(--sidebar-bg) !important;
401
+ color: var(--sidebar-foreground, var(--sidebar-text)) !important;
402
+ border: 1px solid var(--border) !important;
403
+ box-shadow: var(--shadow-sm) !important;
404
+ backdrop-filter: none !important;
405
+ }
406
+
407
+ :root[data-client-theme] [data-main-fe-sidebar] [data-slot='brand-badge'] {
408
+ background: var(--brand-badge-bg, rgba(255, 255, 255, 0.14)) !important;
409
+ color: var(--brand-badge-fg, var(--sidebar-active-text)) !important;
410
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12) !important;
411
+ }
412
+
413
+ :root[data-client-theme] [data-main-fe-sidebar] [data-slot='brand-label'] {
414
+ color: var(--sidebar-brand-label, var(--sidebar-active-text)) !important;
415
+ }
416
+
417
+ :root[data-client-theme] [data-main-fe-sidebar-item] [data-slot='action'] {
418
+ color: var(--sidebar-text) !important;
419
+ background: transparent !important;
420
+ box-shadow: none !important;
421
+ }
422
+
423
+ :root[data-client-theme] [data-main-fe-sidebar-item] [data-slot='icon'] {
424
+ color: var(--sidebar-icon, var(--accent)) !important;
425
+ }
426
+
427
+ :root[data-client-theme] [data-main-fe-sidebar-item] [data-slot='label'] {
428
+ color: var(--sidebar-text) !important;
429
+ }
430
+
431
+ :root[data-client-theme] [data-main-fe-sidebar-item] [data-slot='row'][data-active='true'],
432
+ :root[data-client-theme] [data-main-fe-sidebar-item] [data-slot='row'][data-branch-active='true'] {
433
+ background: var(--sidebar-active) !important;
434
+ border: 1px solid var(--sidebar-active-border) !important;
435
+ box-shadow: none !important;
436
+ }
437
+
438
+ :root[data-client-theme] [data-main-fe-sidebar-item] [data-slot='row'][data-active='true'] [data-slot='action'],
439
+ :root[data-client-theme] [data-main-fe-sidebar-item] [data-slot='row'][data-active='true'] [data-slot='label'],
440
+ :root[data-client-theme] [data-main-fe-sidebar-item] [data-slot='row'][data-branch-active='true'] [data-slot='action'],
441
+ :root[data-client-theme] [data-main-fe-sidebar-item] [data-slot='row'][data-branch-active='true'] [data-slot='label'] {
442
+ color: var(--sidebar-active-text) !important;
443
+ }
444
+
445
+ :root[data-client-theme] [data-main-fe-sidebar-item] [data-slot='row'][data-active='true'] [data-slot='icon'],
446
+ :root[data-client-theme] [data-main-fe-sidebar-item] [data-slot='row'][data-branch-active='true'] [data-slot='icon'] {
447
+ color: var(--sidebar-icon-active, var(--sidebar-active-text)) !important;
448
+ }
449
+
450
+ :root[data-client-theme] [data-main-fe-sidebar-item] [data-slot='row']:not([data-active='true']):not([data-branch-active='true']):hover {
451
+ background: var(--sidebar-hover) !important;
452
+ }
453
+
454
+ :root[data-client-theme] [data-main-fe-sidebar-item] [data-slot='submenu'] {
455
+ border-color: var(--sidebar-submenu-border) !important;
456
+ }
457
+
458
+ :root[data-client-theme] [data-main-fe-date-range] [data-slot='nav-button'],
459
+ :root[data-client-theme]
460
+ :is([data-main-fe-date-time], [data-main-fe-date-time-popup]) [data-slot='nav-button'],
461
+ :root[data-client-theme] [data-main-fe-date-range] [data-slot='month-select'],
462
+ :root[data-client-theme] [data-main-fe-date-range] [data-slot='year-select'],
463
+ :root[data-client-theme]
464
+ :is([data-main-fe-date-time], [data-main-fe-date-time-popup]) [data-slot='month-select'],
465
+ :root[data-client-theme]
466
+ :is([data-main-fe-date-time], [data-main-fe-date-time-popup]) [data-slot='year-select'],
467
+ :root[data-client-theme]
468
+ :is([data-main-fe-date-time], [data-main-fe-date-time-popup]) [data-slot='time-select'],
469
+ :root[data-client-theme] [data-main-fe-date-range] [data-slot='preview-value'],
470
+ :root[data-client-theme] [data-main-fe-date-range] [data-slot='scroll-select-menu'],
471
+ :root[data-client-theme]
472
+ :is([data-main-fe-date-time], [data-main-fe-date-time-popup]) [data-slot='scroll-select-menu'] {
473
+ border-color: var(--border-strong, var(--border)) !important;
474
+ background: var(--surface, var(--surface-elevated)) !important;
475
+ color: var(--text) !important;
476
+ box-shadow: none !important;
477
+ backdrop-filter: none !important;
478
+ }
479
+
480
+ :root[data-client-theme] [data-main-fe-date-range] [data-slot='scroll-select-option'],
481
+ :root[data-client-theme]
482
+ :is([data-main-fe-date-time], [data-main-fe-date-time-popup]) [data-slot='scroll-select-option'],
483
+ :root[data-client-theme]
484
+ :is([data-main-fe-date-time], [data-main-fe-date-time-popup]) [data-slot='quick-option'] {
485
+ color: var(--text) !important;
486
+ }
487
+
488
+ :root[data-client-theme] [data-main-fe-date-range] [data-slot='scroll-select-option'][data-selected='true'],
489
+ :root[data-client-theme]
490
+ :is([data-main-fe-date-time], [data-main-fe-date-time-popup])
491
+ [data-slot='scroll-select-option'][data-selected='true'],
492
+ :root[data-client-theme]
493
+ :is([data-main-fe-date-time], [data-main-fe-date-time-popup])
494
+ [data-slot='quick-option'][data-selected='true'] {
495
+ background: var(--button-primary-bg) !important;
496
+ color: #fff !important;
497
+ }
498
+
499
+ :root[data-client-theme] [data-main-fe-date-range] [data-slot='scroll-select-option']:hover,
500
+ :root[data-client-theme]
501
+ :is([data-main-fe-date-time], [data-main-fe-date-time-popup]) [data-slot='scroll-select-option']:hover,
502
+ :root[data-client-theme]
503
+ :is([data-main-fe-date-time], [data-main-fe-date-time-popup]) [data-slot='quick-option']:hover,
504
+ :root[data-client-theme]
505
+ :is([data-main-fe-date-time], [data-main-fe-date-time-popup]) [data-slot='quick-clear']:hover,
506
+ :root[data-client-theme] [data-main-fe-date-range] [data-slot='nav-button']:hover,
507
+ :root[data-client-theme]
508
+ :is([data-main-fe-date-time], [data-main-fe-date-time-popup]) [data-slot='nav-button']:hover,
509
+ :root[data-client-theme] [data-main-fe-date-range] [data-slot='preview-clear']:hover {
510
+ background: var(--menu-item-hover-bg, var(--surface-strong)) !important;
511
+ color: var(--text-strong) !important;
512
+ }
513
+
514
+ :root[data-client-theme] [data-main-fe-date-range] [data-slot='weekday'],
515
+ :root[data-client-theme]
516
+ :is([data-main-fe-date-time], [data-main-fe-date-time-popup]) [data-slot='weekday'] {
517
+ color: var(--muted) !important;
518
+ }
519
+
520
+ :root[data-client-theme] [data-main-fe-date-range] [data-slot='day'],
521
+ :root[data-client-theme]
522
+ :is([data-main-fe-date-time], [data-main-fe-date-time-popup]) [data-slot='day'] {
523
+ color: var(--text) !important;
524
+ }
525
+
526
+ :root[data-client-theme] [data-main-fe-date-range] [data-slot='day'][data-in-month='false'],
527
+ :root[data-client-theme]
528
+ :is([data-main-fe-date-time], [data-main-fe-date-time-popup]) [data-slot='day'][data-in-month='false'] {
529
+ color: color-mix(in srgb, var(--muted) 72%, transparent) !important;
530
+ }
531
+
532
+ :root[data-client-theme] [data-main-fe-date-range] [data-slot='day'][data-in-range='true'] {
533
+ background: var(--accent-soft) !important;
534
+ color: var(--accent) !important;
535
+ }
536
+
537
+ :root[data-client-theme] [data-main-fe-date-range] [data-slot='day'][data-selected='true'],
538
+ :root[data-client-theme]
539
+ :is([data-main-fe-date-time], [data-main-fe-date-time-popup]) [data-slot='day'][data-selected='true'],
540
+ :root[data-client-theme] [data-main-fe-date-range] [data-slot='confirm-button'],
541
+ :root[data-client-theme]
542
+ :is([data-main-fe-date-time], [data-main-fe-date-time-popup]) [data-slot='confirm-button'] {
543
+ background: var(--button-primary-bg) !important;
544
+ color: var(--button-primary-fg, #fff) !important;
545
+ box-shadow: var(--button-primary-shadow) !important;
546
+ }
547
+
548
+ :root[data-client-theme] [data-main-fe-date-range] [data-slot='clear-button'],
549
+ :root[data-client-theme]
550
+ :is([data-main-fe-date-time], [data-main-fe-date-time-popup]) [data-slot='clear-button'] {
551
+ background: var(--button-secondary-bg, var(--surface-strong)) !important;
552
+ color: var(--text-strong) !important;
553
+ }
554
+
555
+ :root[data-client-theme] [data-main-fe-stat-card][data-tone='sky'] {
556
+ border-color: var(--border) !important;
557
+ background: var(--stat-sky-bg) !important;
558
+ }
559
+
560
+ :root[data-client-theme] [data-main-fe-stat-card][data-tone='emerald'] {
561
+ border-color: var(--border) !important;
562
+ background: var(--stat-emerald-bg) !important;
563
+ }
564
+
565
+ :root[data-client-theme] [data-main-fe-stat-card][data-tone='violet'] {
566
+ border-color: var(--border) !important;
567
+ background: var(--stat-violet-bg) !important;
568
+ }
569
+
570
+ :root[data-client-theme] [data-main-fe-stat-card][data-tone='rose'] {
571
+ border-color: var(--border) !important;
572
+ background: var(--stat-rose-bg) !important;
573
+ }
574
+
575
+ :root[data-client-theme] [data-main-fe-stat-card] [data-slot='label'] {
576
+ color: var(--muted) !important;
577
+ }
578
+
579
+ :root[data-client-theme] [data-main-fe-stat-card] [data-slot='value'] {
580
+ color: var(--text-strong) !important;
581
+ }
582
+
583
+ :root[data-client-theme] [data-main-fe-stat-card] [data-slot='icon'] {
584
+ background: var(--stat-icon-bg, var(--surface-elevated)) !important;
585
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.56) !important;
586
+ }
587
+
588
+ :root[data-client-theme] [data-main-fe-stat-card][data-tone='sky'] [data-slot='icon'] {
589
+ color: var(--icon-sky, var(--tone-sky)) !important;
590
+ }
591
+
592
+ :root[data-client-theme] [data-main-fe-stat-card][data-tone='emerald'] [data-slot='icon'] {
593
+ color: var(--icon-emerald, var(--tone-emerald)) !important;
594
+ }
595
+
596
+ :root[data-client-theme] [data-main-fe-stat-card][data-tone='violet'] [data-slot='icon'] {
597
+ color: var(--icon-violet, var(--tone-violet)) !important;
598
+ }
599
+
600
+ :root[data-client-theme] [data-main-fe-stat-card][data-tone='rose'] [data-slot='icon'] {
601
+ color: var(--icon-rose, var(--tone-rose)) !important;
602
+ }
603
+
604
+ :root[data-client-theme] [data-main-fe-switch] [data-slot='track'] {
605
+ border-color: var(--border-strong, var(--border)) !important;
606
+ background: var(--switch-track-bg) !important;
607
+ }
608
+
609
+ :root[data-client-theme] [data-main-fe-switch] input:checked + [data-slot='track'] {
610
+ border-color: var(--accent-strong, var(--accent)) !important;
611
+ background: var(--switch-active-bg) !important;
612
+ }
613
+
614
+ :root[data-client-theme] [data-client-home='test-api'] [data-slot='base-url'],
615
+ :root[data-client-theme] [data-client-models='model-card'] [data-slot='pricing'],
616
+ :root[data-client-theme] [data-client-home='usage-overview'] [data-slot='model-row'],
617
+ :root[data-client-theme] [data-client-request-logs='detail'] [data-slot='detail-cell'],
618
+ :root[data-client-theme] [data-client-dashboard='page'] [data-slot='filters'],
619
+ :root[data-client-theme] [data-client-dashboard='page'] [data-slot='chart-card'],
620
+ :root[data-client-theme] [data-client-models='filters'],
621
+ :root[data-client-theme] [data-client-models='page'] [data-slot='empty-state'],
622
+ :root[data-client-theme] [data-client-api-keys='page'] [data-slot='toolbar'],
623
+ :root[data-client-theme] [data-client-request-logs='filters'],
624
+ :root[data-client-theme] [data-client-credit='history'] [data-slot='filters'],
625
+ :root[data-client-theme] [data-client-credit='topup'] [data-slot='redeem-panel'],
626
+ :root[data-client-theme] [data-client-credit='topup'] [data-slot='notice'],
627
+ :root[data-client-theme] [data-client-credit='overview'] [data-slot='stats-shell'],
628
+ :root[data-client-theme] [data-client-models='model-card'] {
629
+ border-color: var(--border) !important;
630
+ background: var(--card-bg, var(--surface-elevated)) !important;
631
+ box-shadow: var(--shadow) !important;
632
+ }
633
+
634
+ :root[data-client-theme] [data-client-home='usage-overview'] [data-slot='model-row']:hover,
635
+ :root[data-client-theme] [data-client-models='model-card']:hover {
636
+ border-color: var(--border-strong, var(--border)) !important;
637
+ background: var(--detail-cell-hover-bg, var(--surface-strong)) !important;
638
+ box-shadow: var(--shadow) !important;
639
+ }
640
+
641
+ :root[data-client-theme] [data-client-models='model-card'] [data-slot='pricing-icon'] {
642
+ color: var(--tone-emerald, var(--accent)) !important;
643
+ }
644
+
645
+ :root[data-client-theme] [data-client-api-keys='page'] [data-slot='toolbar'] {
646
+ border-color: transparent !important;
647
+ background: transparent !important;
648
+ box-shadow: none !important;
649
+ backdrop-filter: none !important;
650
+ }
651
+
652
+ :root[data-client-theme] [data-client-home='test-api'] [data-slot='base-url-value'] {
653
+ color: var(--muted) !important;
654
+ }
655
+
656
+ :root[data-client-theme] [data-client-home='test-api'] [data-slot='base-url-copy'] {
657
+ color: var(--accent) !important;
658
+ }
659
+
660
+ :root[data-client-theme] [data-client-home='test-api'] [data-slot='base-url-copy']:hover {
661
+ color: var(--accent-strong, var(--accent)) !important;
662
+ }
663
+
664
+ :root[data-client-theme] [data-client-home='test-api'] [data-slot='code-card'] {
665
+ border-color: var(--border) !important;
666
+ background: var(--code-card-bg) !important;
667
+ }
668
+
669
+ :root[data-client-theme] [data-client-home='test-api'] [data-slot='code-panel'] {
670
+ border-color: var(--border) !important;
671
+ background: var(--code-panel-bg) !important;
672
+ box-shadow: none !important;
673
+ }
674
+
675
+ :root[data-client-theme] [data-client-home='test-api'] [data-slot='code-pre'] {
676
+ color: #f8fafc !important;
677
+ }
678
+
679
+ :root[data-client-theme] [data-client-home='test-api'] [data-slot='copy-code'] {
680
+ color: rgba(248, 250, 252, 0.82) !important;
681
+ }
682
+
683
+ :root[data-client-theme] [data-client-home='test-api'] [data-slot='copy-code']:hover {
684
+ background: var(--code-copy-hover-bg) !important;
685
+ color: #ffffff !important;
686
+ }
687
+
688
+ :root[data-client-theme] [data-client-models='page'] [data-slot='results-badge'] {
689
+ border-color: color-mix(in srgb, var(--accent) 18%, var(--border)) !important;
690
+ background: var(--results-badge-bg) !important;
691
+ color: var(--accent) !important;
692
+ }
693
+
694
+ :root[data-client-theme] [data-client-models='page'] [data-slot='empty-icon'] {
695
+ background: var(--empty-icon-bg, var(--accent-soft)) !important;
696
+ color: var(--empty-icon-fg, var(--accent)) !important;
697
+ box-shadow: inset 0 0 0 1px
698
+ color-mix(in srgb, var(--empty-icon-fg, var(--accent)) 14%, var(--border)) !important;
699
+ }
700
+
701
+ :root[data-client-theme] [data-client-models='page'] [data-slot='empty-title'] {
702
+ color: var(--text-strong) !important;
703
+ }
704
+
705
+ :root[data-client-theme] [data-client-api-keys='page'] [data-slot='hover-tooltip'],
706
+ :root[data-client-theme] [data-client-api-keys='action-tooltip'] {
707
+ border: 1px solid var(--menu-border, var(--border)) !important;
708
+ background: var(--menu-surface, var(--surface-elevated)) !important;
709
+ color: var(--text) !important;
710
+ box-shadow: var(--menu-shadow) !important;
711
+ }
712
+
713
+ :root[data-client-theme] [data-client-api-keys='action-trigger'] {
714
+ color: var(--muted) !important;
715
+ }
716
+
717
+ :root[data-client-theme] [data-client-api-keys='action-trigger']:hover,
718
+ :root[data-client-theme] [data-client-api-keys='action-trigger']:focus-visible {
719
+ background: var(--menu-item-hover-bg, var(--surface-strong)) !important;
720
+ color: var(--text-strong) !important;
721
+ }
722
+
723
+ :root[data-client-theme] [data-client-api-keys='action-menu'] {
724
+ border-color: var(--menu-border, var(--border)) !important;
725
+ background: var(--menu-surface, var(--surface-elevated)) !important;
726
+ box-shadow: var(--menu-shadow) !important;
727
+ }
728
+
729
+ :root[data-client-theme] [data-client-api-keys='action-menu'] [data-slot='action-item'] {
730
+ color: var(--text) !important;
731
+ }
732
+
733
+ :root[data-client-theme] [data-client-api-keys='action-menu'] [data-slot='action-item'][data-tone='danger'] {
734
+ color: var(--danger, hsl(var(--tw-destructive))) !important;
735
+ }
736
+
737
+ :root[data-client-theme] [data-client-api-keys='action-menu'] [data-slot='action-item']:not([data-disabled='true']):hover {
738
+ background: var(--menu-item-hover-bg, var(--surface-strong)) !important;
739
+ color: var(--text-strong) !important;
740
+ }
741
+
742
+ :root[data-client-theme] [data-client-api-keys='action-menu'] [data-slot='action-item'][data-tone='danger']:not([data-disabled='true']):hover {
743
+ background: var(--danger-soft, var(--menu-item-hover-bg, var(--surface-strong))) !important;
744
+ color: var(--danger, hsl(var(--tw-destructive))) !important;
745
+ }
746
+
747
+ :root[data-client-theme] [data-client-dashboard='page'] [data-slot='modal-overlay'],
748
+ :root[data-client-theme] [data-client-models='page'] [data-slot='modal-overlay'],
749
+ :root[data-client-theme] [data-client-api-keys='modal'] [data-slot='modal-overlay'],
750
+ :root[data-client-theme] [data-client-api-keys='confirm'] [data-slot='modal-overlay'],
751
+ :root[data-client-theme] [data-client-request-logs='detail'] [data-slot='modal-overlay'],
752
+ :root[data-client-theme] [data-client-credit='modal'][data-slot='overlay'] {
753
+ background: var(--public-overlay-bg) !important;
754
+ backdrop-filter: none !important;
755
+ }
756
+
757
+ :root[data-client-theme] [data-client-credit='wallet'] [data-slot='tabs'] {
758
+ border-color: var(--border) !important;
759
+ background: var(--card-bg, var(--surface-elevated)) !important;
760
+ box-shadow: var(--shadow-sm) !important;
761
+ }
762
+
763
+ :root[data-client-theme] [data-client-credit='wallet'] [data-slot='tab'] {
764
+ color: var(--text) !important;
765
+ background: transparent !important;
766
+ box-shadow: none !important;
767
+ }
768
+
769
+ :root[data-client-theme] [data-client-credit='wallet'] [data-slot='tab'][data-active='true'],
770
+ :root[data-client-theme] [data-client-credit='overview'] [data-slot='topup-action'],
771
+ :root[data-client-theme] [data-client-credit='topup'] [data-slot='coupon-submit'] {
772
+ background: var(--button-primary-bg) !important;
773
+ color: var(--button-primary-fg, #fff) !important;
774
+ box-shadow: var(--button-primary-shadow) !important;
775
+ }
776
+
777
+ :root[data-client-theme] [data-client-credit='wallet'] [data-slot='tab']:not([data-active='true']):hover {
778
+ background: var(--button-ghost-hover-bg, var(--surface-strong)) !important;
779
+ color: var(--text-strong) !important;
780
+ }
781
+
782
+ :root[data-client-theme] [data-client-credit='campaign-form'] [data-slot='cancel-button'],
783
+ :root[data-client-theme] [data-client-credit='coupon-form'] [data-slot='cancel-button'],
784
+ :root[data-client-theme] [data-client-credit='modal'] [data-slot='close-button'] {
785
+ border-color: var(--border-strong, var(--border)) !important;
786
+ background: var(--button-outline-bg, var(--surface-elevated)) !important;
787
+ color: var(--text) !important;
788
+ box-shadow: var(--shadow-sm) !important;
789
+ }
790
+
791
+ :root[data-client-theme] [data-client-credit='campaign-form'] [data-slot='cancel-button']:hover,
792
+ :root[data-client-theme] [data-client-credit='coupon-form'] [data-slot='cancel-button']:hover,
793
+ :root[data-client-theme] [data-client-credit='modal'] [data-slot='close-button']:hover {
794
+ background: var(--button-ghost-hover-bg, var(--surface-strong)) !important;
795
+ color: var(--text-strong) !important;
796
+ }
797
+
798
+ :root[data-client-theme] [data-client-credit='campaign-form'] [data-slot='submit-button'],
799
+ :root[data-client-theme] [data-client-credit='coupon-form'] [data-slot='submit-button'] {
800
+ background: var(--button-primary-bg) !important;
801
+ color: var(--button-primary-fg, #fff) !important;
802
+ box-shadow: var(--button-primary-shadow) !important;
803
+ }
804
+
805
+ :root[data-client-theme] [data-client-credit='overview'] [data-slot='balance-card'] {
806
+ border-color: var(--border) !important;
807
+ background: var(--stat-rose-bg) !important;
808
+ box-shadow: var(--shadow) !important;
809
+ }
810
+
811
+ :root[data-client-theme] [data-client-credit='overview'] [data-slot='spending-card'] {
812
+ border-color: color-mix(in srgb, var(--tone-sky) 18%, var(--border)) !important;
813
+ background: var(--spending-card-bg) !important;
814
+ box-shadow: var(--shadow) !important;
815
+ }
816
+
817
+ :root[data-client-theme] [data-client-credit='overview'] [data-slot='stat-item'] {
818
+ border-color: var(--border) !important;
819
+ background: var(--surface-strong) !important;
820
+ }
821
+
822
+ :root[data-client-theme] [data-client-credit='topup'] [data-slot='coupon-input'] {
823
+ border-color: var(--input-border-main, var(--border)) !important;
824
+ background: var(--input-bg, var(--surface-elevated)) !important;
825
+ color: var(--text) !important;
826
+ }
827
+
828
+ :root[data-client-theme] [data-client-theme-settings] [data-slot='theme-option'] {
829
+ border-color: var(--border-strong, var(--border)) !important;
830
+ background: var(--card-bg, var(--surface-elevated)) !important;
831
+ box-shadow: var(--shadow-sm) !important;
832
+ backdrop-filter: none !important;
833
+ }
834
+
835
+ :root[data-client-theme] [data-client-theme-settings] [data-slot='theme-option'][aria-pressed='true'] {
836
+ border-color: color-mix(in srgb, var(--accent) 40%, var(--border-strong, var(--border))) !important;
837
+ background: color-mix(in srgb, var(--card-bg, var(--surface-elevated)) 88%, var(--accent-soft) 12%) !important;
838
+ box-shadow: var(--shadow) !important;
839
+ }
840
+
841
+ :root[data-client-theme] [data-client-theme-settings] [data-slot='theme-option']:hover {
842
+ border-color: var(--border-strong, var(--border)) !important;
843
+ }
844
+
845
+ :root[data-client-theme] [data-client-theme-settings] [data-slot='theme-option']:focus-visible {
846
+ box-shadow:
847
+ 0 0 0 4px var(--focus-ring),
848
+ var(--shadow-sm) !important;
849
+ }
850
+
851
+ :root[data-client-theme] [data-client-theme-settings] [data-slot='theme-preview'] {
852
+ border-color: color-mix(in srgb, var(--border-strong, var(--border)) 80%, white 20%) !important;
853
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22) !important;
854
+ }
855
+
856
+ :root[data-client-theme] [data-client-theme-settings] [data-slot='theme-label'] {
857
+ color: var(--text-strong) !important;
858
+ }
859
+
860
+ :root[data-client-theme] [data-client-theme-settings] [data-slot='theme-description'] {
861
+ color: var(--muted) !important;
862
+ }
863
+
864
+ :root[data-client-theme] [data-client-theme-settings] [data-slot='theme-check'] {
865
+ background: var(--button-primary-bg, var(--accent)) !important;
866
+ color: var(--button-primary-fg, #fff) !important;
867
+ box-shadow: var(--button-primary-shadow, var(--shadow-sm)) !important;
868
+ }
869
+
870
+ :root[data-client-theme='siraya-vii-light'] [data-client-shell='header']:not(.bg-transparent) {
871
+ background: var(--header-glass, var(--surface-elevated)) !important;
872
+ border: 1px solid var(--border-strong, var(--border)) !important;
873
+ box-shadow: var(--shadow-sm) !important;
874
+ backdrop-filter: none !important;
875
+ }
876
+
877
+ :root[data-client-theme='siraya-vii-light'] [data-client-shell='header'].bg-transparent {
878
+ background: transparent !important;
879
+ border: none !important;
880
+ box-shadow: none !important;
881
+ backdrop-filter: none !important;
882
+ }
883
+
884
+ :root[data-client-theme='siraya-vii-light'] [data-client-shell='header'] [data-slot='avatar'] {
885
+ box-shadow: none !important;
886
+ }
887
+
888
+ :root[data-client-theme='siraya-vii-light']
889
+ [data-client-theme-settings]
890
+ [data-slot='theme-option'][aria-pressed='true'] {
891
+ border-color: transparent !important;
892
+ }
893
+
894
+ /* Normalize hard-coded slate utilities so custom themes stay readable. */
895
+
896
+ :root[data-client-theme] .text-slate-900,
897
+ :root[data-client-theme] .text-slate-800,
898
+ :root[data-client-theme] .text-slate-700 {
899
+ color: var(--text-strong) !important;
900
+ }
901
+
902
+ :root[data-client-theme] .text-slate-600,
903
+ :root[data-client-theme] .text-slate-500,
904
+ :root[data-client-theme] .text-slate-400,
905
+ :root[data-client-theme] .text-slate-300 {
906
+ color: var(--muted) !important;
907
+ }
908
+
909
+ :root[data-client-theme] .bg-white,
910
+ :root[data-client-theme] .bg-white\/95,
911
+ :root[data-client-theme] .bg-white\/90,
912
+ :root[data-client-theme] .bg-white\/80 {
913
+ background-color: var(--surface-elevated) !important;
914
+ }
915
+
916
+ :root[data-client-theme] .bg-slate-100,
917
+ :root[data-client-theme] .bg-slate-100\/95,
918
+ :root[data-client-theme] .bg-slate-100\/90,
919
+ :root[data-client-theme] .bg-slate-100\/80,
920
+ :root[data-client-theme] .bg-slate-50,
921
+ :root[data-client-theme] .bg-slate-50\/90,
922
+ :root[data-client-theme] .bg-slate-50\/80 {
923
+ background-color: var(--surface-strong) !important;
924
+ }
925
+
926
+ :root[data-client-theme] .border-slate-200,
927
+ :root[data-client-theme] .border-slate-200\/80,
928
+ :root[data-client-theme] .border-slate-200\/70,
929
+ :root[data-client-theme] .border-slate-100,
930
+ :root[data-client-theme] .border-slate-100\/80 {
931
+ border-color: var(--border) !important;
932
+ }
933
+
934
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:text-slate-100,
935
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:text-slate-200 {
936
+ color: var(--text-strong) !important;
937
+ }
938
+
939
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:text-slate-300,
940
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:text-slate-400,
941
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:text-slate-500 {
942
+ color: var(--muted) !important;
943
+ }
944
+
945
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:bg-slate-950,
946
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:bg-slate-950\/40,
947
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:bg-slate-900,
948
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:bg-slate-900\/95,
949
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:bg-slate-900\/80,
950
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:bg-slate-900\/70,
951
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:bg-slate-900\/60 {
952
+ background-color: var(--surface-elevated) !important;
953
+ }
954
+
955
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:bg-slate-800,
956
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:bg-slate-800\/70,
957
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:bg-slate-800\/60,
958
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:bg-slate-800\/40 {
959
+ background-color: var(--surface-strong) !important;
960
+ }
961
+
962
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:border-slate-800\/80,
963
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:border-slate-800\/70,
964
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:border-slate-800\/60,
965
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:border-slate-700\/80,
966
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:border-slate-700\/70,
967
+ :root[data-ui-color-mode='dark'][data-client-theme] .dark\:border-slate-700\/60 {
968
+ border-color: var(--border) !important;
969
+ }