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