@lucasvu/scope-ui 0.0.8 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AI_SETUP.md +313 -43
- package/README.md +89 -14
- package/bin/copy-theme-assets.mjs +29 -0
- package/bin/scope-ui-init.mjs +275 -24
- 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 +247 -15
- package/dist/index.d.cts +2 -771
- package/dist/index.d.ts +2 -771
- package/dist/index.js +4 -817
- 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,603 @@
|
|
|
1
|
+
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Lato:wght@300;400;700;900&display=swap');
|
|
2
|
+
|
|
3
|
+
/* Siraya VIS 2024 light theme
|
|
4
|
+
Source reference: SIRAYA-VII_light.pdf cover palette + typography direction.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
:root[data-client-theme='siraya-vii-light'] {
|
|
8
|
+
color-scheme: light;
|
|
9
|
+
|
|
10
|
+
--brand-tiger: #f15a2b;
|
|
11
|
+
--brand-fire-brick: #d82328;
|
|
12
|
+
--brand-asphalt: #171415;
|
|
13
|
+
--brand-cobalt: #6d6866;
|
|
14
|
+
--brand-amethyst: #b24d57;
|
|
15
|
+
--brand-canary: #c88d59;
|
|
16
|
+
--brand-moon-spot: #8a7f78;
|
|
17
|
+
--brand-lemonade: #f4ddd4;
|
|
18
|
+
--brand-blush: #f9efea;
|
|
19
|
+
--brand-champagne: #fffdfb;
|
|
20
|
+
--brand-dolphin: #d8cac2;
|
|
21
|
+
--brand-smoke: #ebe1da;
|
|
22
|
+
--brand-silver: #f6efea;
|
|
23
|
+
|
|
24
|
+
--font-family-base: 'Lato', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
|
25
|
+
--font-family-heading: 'Lato', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
|
|
26
|
+
--font-family-mono: 'IBM Plex Mono', 'SFMono-Regular', Menlo, monospace;
|
|
27
|
+
|
|
28
|
+
--bg: #f6f1ed;
|
|
29
|
+
--surface: #fffdfb;
|
|
30
|
+
--surface-strong: #f2ebe6;
|
|
31
|
+
--surface-elevated: rgba(255, 253, 251, 0.94);
|
|
32
|
+
--grey: #f2ebe6;
|
|
33
|
+
--grey-strong: #e5dbd4;
|
|
34
|
+
--border: #ddd1c8;
|
|
35
|
+
--border-strong: #ccbcb1;
|
|
36
|
+
|
|
37
|
+
--text: #403735;
|
|
38
|
+
--text-strong: #171415;
|
|
39
|
+
--muted: #756a65;
|
|
40
|
+
--foreground: var(--text);
|
|
41
|
+
--muted-foreground: var(--muted);
|
|
42
|
+
|
|
43
|
+
--accent: #d82328;
|
|
44
|
+
--accent-soft: rgba(216, 35, 40, 0.1);
|
|
45
|
+
--accent-strong: #f15a2b;
|
|
46
|
+
--accent-2: #171415;
|
|
47
|
+
--danger: #c61b22;
|
|
48
|
+
--danger-soft: rgba(198, 27, 34, 0.12);
|
|
49
|
+
--success-strong: #5e7b6c;
|
|
50
|
+
--success-soft: rgba(94, 123, 108, 0.16);
|
|
51
|
+
--info: #7f6b60;
|
|
52
|
+
--info-soft: rgba(127, 107, 96, 0.14);
|
|
53
|
+
|
|
54
|
+
--shadow: 0 24px 50px -34px rgba(36, 18, 17, 0.24);
|
|
55
|
+
--shadow-sm: 0 16px 32px -26px rgba(36, 18, 17, 0.18);
|
|
56
|
+
--menu-shadow: 0 28px 60px -34px rgba(36, 18, 17, 0.28);
|
|
57
|
+
--focus-ring: rgba(216, 35, 40, 0.18);
|
|
58
|
+
|
|
59
|
+
--confirm: 149 18% 43%;
|
|
60
|
+
--confirm-foreground: 0 0% 100%;
|
|
61
|
+
|
|
62
|
+
--tw-background: 26 37% 97%;
|
|
63
|
+
--tw-foreground: 355 7% 9%;
|
|
64
|
+
--tw-card: 0 0% 100%;
|
|
65
|
+
--tw-card-foreground: 355 7% 9%;
|
|
66
|
+
--tw-popover: 0 0% 100%;
|
|
67
|
+
--tw-popover-foreground: 355 7% 9%;
|
|
68
|
+
--tw-primary: 359 72% 49%;
|
|
69
|
+
--tw-primary-foreground: 0 0% 100%;
|
|
70
|
+
--tw-secondary: 25 29% 92%;
|
|
71
|
+
--tw-secondary-foreground: 355 7% 9%;
|
|
72
|
+
--tw-muted: 28 23% 93%;
|
|
73
|
+
--tw-muted-foreground: 22 8% 42%;
|
|
74
|
+
--tw-accent: 15 88% 56%;
|
|
75
|
+
--tw-accent-foreground: 0 0% 100%;
|
|
76
|
+
--tw-destructive: 359 72% 44%;
|
|
77
|
+
--tw-destructive-foreground: 0 0% 100%;
|
|
78
|
+
--tw-border: 26 23% 84%;
|
|
79
|
+
--tw-input: 26 23% 84%;
|
|
80
|
+
--tw-ring: 359 72% 49%;
|
|
81
|
+
--tw-success: 149 18% 43%;
|
|
82
|
+
|
|
83
|
+
--primary: 359 72% 49%;
|
|
84
|
+
--primary-foreground: 0 0% 100%;
|
|
85
|
+
--primary-grad-from: 359 72% 49%;
|
|
86
|
+
--primary-grad-to: 15 88% 56%;
|
|
87
|
+
--primary-ring: 359 72% 49%;
|
|
88
|
+
|
|
89
|
+
--input-bg: rgba(255, 253, 251, 0.96);
|
|
90
|
+
--input-border-main: #d9ccc3;
|
|
91
|
+
--input-border-hover: #c9b8ae;
|
|
92
|
+
--input-border-focus: var(--accent);
|
|
93
|
+
--input-placeholder: #9b8f89;
|
|
94
|
+
--input-error: var(--danger);
|
|
95
|
+
--input-success: var(--success-strong);
|
|
96
|
+
|
|
97
|
+
--table-head-bg: #f4eeea;
|
|
98
|
+
--table-row-hover: #fcf7f3;
|
|
99
|
+
|
|
100
|
+
--tab-track: #efe6e1;
|
|
101
|
+
--tab-indicator: #fffdfb;
|
|
102
|
+
--tab-text: #756a65;
|
|
103
|
+
--tab-text-active: #171415;
|
|
104
|
+
|
|
105
|
+
--menu-surface: rgba(255, 253, 251, 0.98);
|
|
106
|
+
--menu-border: #e4d8d0;
|
|
107
|
+
--header-glass: rgba(255, 253, 251, 0.86);
|
|
108
|
+
--header-text: #171415;
|
|
109
|
+
--header-subtle-text: #756a65;
|
|
110
|
+
--header-transparent-text: #fffaf8;
|
|
111
|
+
--header-transparent-subtle-text: rgba(255, 250, 248, 0.78);
|
|
112
|
+
--header-transparent-hover-bg: rgba(255, 255, 255, 0.14);
|
|
113
|
+
--header-transparent-avatar-bg: rgba(255, 255, 255, 0.18);
|
|
114
|
+
--header-transparent-avatar-fg: #fffaf8;
|
|
115
|
+
|
|
116
|
+
--shell-main-bg:
|
|
117
|
+
radial-gradient(circle at top right, rgba(241, 90, 43, 0.12), transparent 24%),
|
|
118
|
+
radial-gradient(circle at top left, rgba(216, 35, 40, 0.08), transparent 20%),
|
|
119
|
+
linear-gradient(180deg, #fbf8f6 0%, #f4efeb 100%);
|
|
120
|
+
--shell-hero-bg: linear-gradient(135deg, #171415 0%, #7c121b 38%, #d82328 70%, #f15a2b 100%);
|
|
121
|
+
--public-overlay-bg: rgba(22, 18, 19, 0.62);
|
|
122
|
+
--auth-card-bg: rgba(255, 253, 251, 0.92);
|
|
123
|
+
--card-bg: rgba(255, 253, 251, 0.9);
|
|
124
|
+
--page-title-bg: linear-gradient(135deg, rgba(255, 253, 251, 0.98) 0%, rgba(249, 240, 234, 0.96) 100%);
|
|
125
|
+
--section-icon-bg: linear-gradient(135deg, #fff2ed 0%, #f7dfd6 100%);
|
|
126
|
+
--avatar-bg: #fff2ed;
|
|
127
|
+
--menu-item-hover-bg: #f8efea;
|
|
128
|
+
--menu-item-active-bg: #f4e6df;
|
|
129
|
+
|
|
130
|
+
--sidebar-bg: linear-gradient(180deg, rgba(255, 253, 251, 0.96) 0%, rgba(248, 241, 236, 0.98) 100%);
|
|
131
|
+
--sidebar-text: #433734;
|
|
132
|
+
--sidebar-foreground: #433734;
|
|
133
|
+
--sidebar-active-text: #171415;
|
|
134
|
+
--sidebar-muted: rgba(67, 55, 52, 0.72);
|
|
135
|
+
--sidebar-icon: #d82328;
|
|
136
|
+
--sidebar-icon-active: #9e131e;
|
|
137
|
+
--sidebar-hover: rgba(216, 35, 40, 0.06);
|
|
138
|
+
--sidebar-active: linear-gradient(135deg, rgba(216, 35, 40, 0.1) 0%, rgba(241, 90, 43, 0.18) 100%);
|
|
139
|
+
--sidebar-divider: rgba(23, 20, 21, 0.06);
|
|
140
|
+
--sidebar-submenu-border: rgba(23, 20, 21, 0.1);
|
|
141
|
+
--sidebar-brand-label: #171415;
|
|
142
|
+
--brand-badge-bg: linear-gradient(135deg, #d82328 0%, #f15a2b 100%);
|
|
143
|
+
--brand-badge-fg: #ffffff;
|
|
144
|
+
|
|
145
|
+
--shell-hero-from: #171415;
|
|
146
|
+
--shell-hero-mid: #d82328;
|
|
147
|
+
--shell-hero-to: #f15a2b;
|
|
148
|
+
|
|
149
|
+
--button-primary-bg: linear-gradient(135deg, #d82328 0%, #f15a2b 100%);
|
|
150
|
+
--button-primary-fg: #ffffff;
|
|
151
|
+
--button-primary-shadow: 0 16px 30px -18px rgba(216, 35, 40, 0.42);
|
|
152
|
+
--button-confirm-bg: linear-gradient(135deg, #587567 0%, #6f8d7e 100%);
|
|
153
|
+
--button-confirm-fg: #ffffff;
|
|
154
|
+
--button-confirm-shadow: 0 16px 30px -18px rgba(88, 117, 103, 0.34);
|
|
155
|
+
--button-destructive-bg: linear-gradient(135deg, #b1121b 0%, #d82328 100%);
|
|
156
|
+
--button-destructive-fg: #ffffff;
|
|
157
|
+
--button-destructive-shadow: 0 16px 30px -18px rgba(177, 18, 27, 0.34);
|
|
158
|
+
--button-outline-bg: rgba(255, 253, 251, 0.9);
|
|
159
|
+
--button-secondary-bg: #efe6e1;
|
|
160
|
+
--button-ghost-hover-bg: #f5ede8;
|
|
161
|
+
|
|
162
|
+
--datatable-bg: rgba(255, 253, 251, 0.94);
|
|
163
|
+
--empty-icon-bg: #fff0ea;
|
|
164
|
+
--empty-icon-fg: #d82328;
|
|
165
|
+
--tabs-shadow: rgba(23, 20, 21, 0.04);
|
|
166
|
+
--tab-indicator-shadow: rgba(23, 20, 21, 0.08);
|
|
167
|
+
|
|
168
|
+
--stat-sky-bg: linear-gradient(135deg, #fffaf7 0%, #f6eeea 100%);
|
|
169
|
+
--stat-emerald-bg: linear-gradient(135deg, #f2f5f2 0%, #e7efe9 100%);
|
|
170
|
+
--stat-violet-bg: linear-gradient(135deg, #fff3ef 0%, #f7e4de 100%);
|
|
171
|
+
--stat-rose-bg: linear-gradient(135deg, #fff0ea 0%, #f8ddd3 100%);
|
|
172
|
+
--stat-icon-bg: rgba(255, 253, 251, 0.94);
|
|
173
|
+
|
|
174
|
+
--switch-track-bg: #eadfd8;
|
|
175
|
+
--switch-active-bg: #d82328;
|
|
176
|
+
|
|
177
|
+
--detail-cell-bg: rgba(255, 253, 251, 0.94);
|
|
178
|
+
--detail-cell-hover-bg: #fcf7f3;
|
|
179
|
+
--code-card-bg: #f6efea;
|
|
180
|
+
--code-panel-bg: #171415;
|
|
181
|
+
--code-copy-hover-bg: #312829;
|
|
182
|
+
--results-badge-bg: #fff1eb;
|
|
183
|
+
--spending-card-bg: linear-gradient(135deg, #fffaf7 0%, #f5eeea 100%);
|
|
184
|
+
--message-success-bg: #eef4ef;
|
|
185
|
+
--message-error-bg: #fff0ef;
|
|
186
|
+
|
|
187
|
+
--balance-value-color: #b11721;
|
|
188
|
+
--spending-value-color: #171415;
|
|
189
|
+
--success-text: #456353;
|
|
190
|
+
--sidebar-active-border: rgba(216, 35, 40, 0.18);
|
|
191
|
+
|
|
192
|
+
--tone-emerald: #587567;
|
|
193
|
+
--tone-emerald-soft: rgba(88, 117, 103, 0.14);
|
|
194
|
+
--tone-sky: #7f6b60;
|
|
195
|
+
--tone-sky-soft: rgba(127, 107, 96, 0.14);
|
|
196
|
+
--tone-violet: #b24d57;
|
|
197
|
+
--tone-violet-soft: rgba(178, 77, 87, 0.14);
|
|
198
|
+
--tone-rose: #d82328;
|
|
199
|
+
--tone-rose-soft: rgba(216, 35, 40, 0.14);
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
:root[data-ui-color-mode='dark'][data-client-theme='siraya-vii-light'] {
|
|
203
|
+
color-scheme: dark;
|
|
204
|
+
|
|
205
|
+
--brand-asphalt: #0f0c0d;
|
|
206
|
+
--brand-cobalt: #b4a9a4;
|
|
207
|
+
--brand-amethyst: #cf7682;
|
|
208
|
+
--brand-moon-spot: #8d7e78;
|
|
209
|
+
--brand-dolphin: #5a4b48;
|
|
210
|
+
|
|
211
|
+
--bg: #110e0f;
|
|
212
|
+
--surface: #181415;
|
|
213
|
+
--surface-strong: #211b1d;
|
|
214
|
+
--surface-elevated: rgba(24, 20, 21, 0.96);
|
|
215
|
+
--grey: #140f10;
|
|
216
|
+
--grey-strong: #2a2224;
|
|
217
|
+
--border: #32282a;
|
|
218
|
+
--border-strong: #47393c;
|
|
219
|
+
|
|
220
|
+
--text: #e8dfdb;
|
|
221
|
+
--text-strong: #fffaf8;
|
|
222
|
+
--muted: #b4a6a0;
|
|
223
|
+
|
|
224
|
+
--accent: #ff6250;
|
|
225
|
+
--accent-soft: rgba(255, 98, 80, 0.14);
|
|
226
|
+
--accent-strong: #ff9b65;
|
|
227
|
+
--accent-2: #fffaf8;
|
|
228
|
+
--danger: #ff6250;
|
|
229
|
+
--danger-soft: rgba(255, 98, 80, 0.16);
|
|
230
|
+
--success-strong: #84a692;
|
|
231
|
+
--success-soft: rgba(132, 166, 146, 0.16);
|
|
232
|
+
--info: #b9a39a;
|
|
233
|
+
--info-soft: rgba(185, 163, 154, 0.16);
|
|
234
|
+
|
|
235
|
+
--shadow: 0 28px 56px -34px rgba(0, 0, 0, 0.78);
|
|
236
|
+
--shadow-sm: 0 18px 36px -28px rgba(0, 0, 0, 0.64);
|
|
237
|
+
--menu-shadow: 0 28px 60px -32px rgba(0, 0, 0, 0.72);
|
|
238
|
+
--focus-ring: rgba(255, 98, 80, 0.24);
|
|
239
|
+
|
|
240
|
+
--confirm: 149 17% 59%;
|
|
241
|
+
--confirm-foreground: 0 0% 100%;
|
|
242
|
+
|
|
243
|
+
--tw-background: 0 0% 6%;
|
|
244
|
+
--tw-foreground: 24 27% 96%;
|
|
245
|
+
--tw-card: 0 0% 10%;
|
|
246
|
+
--tw-card-foreground: 24 27% 96%;
|
|
247
|
+
--tw-popover: 0 0% 10%;
|
|
248
|
+
--tw-popover-foreground: 24 27% 96%;
|
|
249
|
+
--tw-primary: 8 100% 66%;
|
|
250
|
+
--tw-primary-foreground: 0 0% 100%;
|
|
251
|
+
--tw-secondary: 10 11% 17%;
|
|
252
|
+
--tw-secondary-foreground: 24 27% 96%;
|
|
253
|
+
--tw-muted: 8 10% 14%;
|
|
254
|
+
--tw-muted-foreground: 20 10% 68%;
|
|
255
|
+
--tw-accent: 25 100% 70%;
|
|
256
|
+
--tw-accent-foreground: 355 7% 9%;
|
|
257
|
+
--tw-destructive: 8 100% 66%;
|
|
258
|
+
--tw-destructive-foreground: 0 0% 100%;
|
|
259
|
+
--tw-border: 8 12% 22%;
|
|
260
|
+
--tw-input: 8 12% 22%;
|
|
261
|
+
--tw-ring: 8 100% 66%;
|
|
262
|
+
--tw-success: 149 17% 59%;
|
|
263
|
+
|
|
264
|
+
--primary: 8 100% 66%;
|
|
265
|
+
--primary-foreground: 0 0% 100%;
|
|
266
|
+
--primary-grad-from: 8 100% 66%;
|
|
267
|
+
--primary-grad-to: 25 100% 70%;
|
|
268
|
+
--primary-ring: 8 100% 66%;
|
|
269
|
+
|
|
270
|
+
--input-bg: #211b1d;
|
|
271
|
+
--input-border-main: #3b3033;
|
|
272
|
+
--input-border-hover: #564548;
|
|
273
|
+
--input-placeholder: #8d7f79;
|
|
274
|
+
|
|
275
|
+
--table-head-bg: #1a1517;
|
|
276
|
+
--table-row-hover: #211b1d;
|
|
277
|
+
|
|
278
|
+
--tab-track: #171214;
|
|
279
|
+
--tab-indicator: #2a2325;
|
|
280
|
+
--tab-text: #b4a6a0;
|
|
281
|
+
--tab-text-active: #fffaf8;
|
|
282
|
+
|
|
283
|
+
--menu-surface: rgba(24, 20, 21, 0.98);
|
|
284
|
+
--menu-border: #372d2f;
|
|
285
|
+
--header-glass: rgba(24, 20, 21, 0.92);
|
|
286
|
+
--header-text: #fffaf8;
|
|
287
|
+
--header-subtle-text: #cabdb8;
|
|
288
|
+
--header-transparent-text: #fffaf8;
|
|
289
|
+
--header-transparent-subtle-text: rgba(255, 250, 248, 0.78);
|
|
290
|
+
--header-transparent-hover-bg: rgba(255, 255, 255, 0.08);
|
|
291
|
+
--header-transparent-avatar-bg: rgba(255, 255, 255, 0.12);
|
|
292
|
+
--header-transparent-avatar-fg: #fffaf8;
|
|
293
|
+
|
|
294
|
+
--shell-main-bg:
|
|
295
|
+
radial-gradient(circle at top right, rgba(255, 98, 80, 0.12), transparent 22%),
|
|
296
|
+
radial-gradient(circle at top left, rgba(255, 155, 101, 0.06), transparent 20%),
|
|
297
|
+
linear-gradient(180deg, #120f10 0%, #0f0c0d 100%);
|
|
298
|
+
--shell-hero-bg: linear-gradient(135deg, #0f0c0d 0%, #391317 34%, #9f1621 68%, #ff6e4c 100%);
|
|
299
|
+
--public-overlay-bg: rgba(8, 6, 6, 0.72);
|
|
300
|
+
--auth-card-bg: rgba(24, 20, 21, 0.94);
|
|
301
|
+
--card-bg: rgba(24, 20, 21, 0.92);
|
|
302
|
+
--page-title-bg: linear-gradient(135deg, rgba(24, 20, 21, 0.96) 0%, rgba(30, 24, 26, 0.98) 100%);
|
|
303
|
+
--section-icon-bg: linear-gradient(135deg, rgba(255, 98, 80, 0.18) 0%, rgba(255, 155, 101, 0.14) 100%);
|
|
304
|
+
--avatar-bg: #241d1f;
|
|
305
|
+
--menu-item-hover-bg: #241d1f;
|
|
306
|
+
--menu-item-active-bg: #2c2325;
|
|
307
|
+
|
|
308
|
+
--sidebar-bg: linear-gradient(180deg, #181314 0%, #110e0f 100%);
|
|
309
|
+
--sidebar-text: #e5dcda;
|
|
310
|
+
--sidebar-foreground: #e5dcda;
|
|
311
|
+
--sidebar-active-text: #fffaf8;
|
|
312
|
+
--sidebar-muted: rgba(229, 220, 218, 0.72);
|
|
313
|
+
--sidebar-icon: #ff7b68;
|
|
314
|
+
--sidebar-icon-active: #ffd3c5;
|
|
315
|
+
--sidebar-hover: rgba(255, 98, 80, 0.12);
|
|
316
|
+
--sidebar-active: linear-gradient(135deg, rgba(255, 98, 80, 0.18) 0%, rgba(255, 155, 101, 0.16) 100%);
|
|
317
|
+
--sidebar-divider: rgba(255, 255, 255, 0.08);
|
|
318
|
+
--sidebar-submenu-border: rgba(255, 255, 255, 0.1);
|
|
319
|
+
--sidebar-brand-label: #fffaf8;
|
|
320
|
+
--brand-badge-bg: linear-gradient(135deg, #ff6250 0%, #ff9b65 100%);
|
|
321
|
+
--brand-badge-fg: #fffaf8;
|
|
322
|
+
|
|
323
|
+
--shell-hero-from: #0f0c0d;
|
|
324
|
+
--shell-hero-mid: #9f1621;
|
|
325
|
+
--shell-hero-to: #ff6e4c;
|
|
326
|
+
|
|
327
|
+
--button-primary-bg: linear-gradient(135deg, #ff6250 0%, #ff9b65 100%);
|
|
328
|
+
--button-primary-fg: #fffaf8;
|
|
329
|
+
--button-primary-shadow: 0 18px 32px -18px rgba(255, 98, 80, 0.34);
|
|
330
|
+
--button-confirm-bg: linear-gradient(135deg, #6f8d7e 0%, #84a692 100%);
|
|
331
|
+
--button-confirm-fg: #0f0c0d;
|
|
332
|
+
--button-confirm-shadow: 0 16px 30px -18px rgba(111, 141, 126, 0.3);
|
|
333
|
+
--button-destructive-bg: linear-gradient(135deg, #f24c4c 0%, #ff6250 100%);
|
|
334
|
+
--button-destructive-fg: #fffaf8;
|
|
335
|
+
--button-destructive-shadow: 0 16px 30px -18px rgba(242, 76, 76, 0.3);
|
|
336
|
+
--button-outline-bg: #1f191b;
|
|
337
|
+
--button-secondary-bg: #241d1f;
|
|
338
|
+
--button-ghost-hover-bg: #251f21;
|
|
339
|
+
|
|
340
|
+
--datatable-bg: rgba(24, 20, 21, 0.94);
|
|
341
|
+
--empty-icon-bg: rgba(255, 98, 80, 0.14);
|
|
342
|
+
--empty-icon-fg: #ff9b65;
|
|
343
|
+
--tabs-shadow: rgba(0, 0, 0, 0.26);
|
|
344
|
+
--tab-indicator-shadow: rgba(0, 0, 0, 0.28);
|
|
345
|
+
|
|
346
|
+
--stat-sky-bg: linear-gradient(135deg, #1f1a1b 0%, #171314 100%);
|
|
347
|
+
--stat-emerald-bg: linear-gradient(135deg, #18211d 0%, #141a17 100%);
|
|
348
|
+
--stat-violet-bg: linear-gradient(135deg, #281b1d 0%, #201517 100%);
|
|
349
|
+
--stat-rose-bg: linear-gradient(135deg, #311617 0%, #231112 100%);
|
|
350
|
+
--stat-icon-bg: #251f21;
|
|
351
|
+
|
|
352
|
+
--switch-track-bg: #32282a;
|
|
353
|
+
--switch-active-bg: #ff6250;
|
|
354
|
+
|
|
355
|
+
--detail-cell-bg: rgba(24, 20, 21, 0.94);
|
|
356
|
+
--detail-cell-hover-bg: #221c1e;
|
|
357
|
+
--code-card-bg: #1b1617;
|
|
358
|
+
--code-panel-bg: #0d0a0b;
|
|
359
|
+
--code-copy-hover-bg: #2a2325;
|
|
360
|
+
--results-badge-bg: #261a1b;
|
|
361
|
+
--spending-card-bg: linear-gradient(135deg, #1f1a1b 0%, #171314 100%);
|
|
362
|
+
--message-success-bg: #17201c;
|
|
363
|
+
--message-error-bg: #2b1718;
|
|
364
|
+
|
|
365
|
+
--balance-value-color: #ff8d77;
|
|
366
|
+
--spending-value-color: #fffaf8;
|
|
367
|
+
--success-text: #a9c3b4;
|
|
368
|
+
--sidebar-active-border: rgba(255, 98, 80, 0.22);
|
|
369
|
+
|
|
370
|
+
--tone-emerald: #84a692;
|
|
371
|
+
--tone-emerald-soft: rgba(132, 166, 146, 0.16);
|
|
372
|
+
--tone-sky: #b9a39a;
|
|
373
|
+
--tone-sky-soft: rgba(185, 163, 154, 0.16);
|
|
374
|
+
--tone-violet: #cf7682;
|
|
375
|
+
--tone-violet-soft: rgba(207, 118, 130, 0.16);
|
|
376
|
+
--tone-rose: #ff6250;
|
|
377
|
+
--tone-rose-soft: rgba(255, 98, 80, 0.16);
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
:root[data-client-theme='siraya-vii-light'] body,
|
|
381
|
+
:root[data-client-theme='siraya-vii-light'] input,
|
|
382
|
+
:root[data-client-theme='siraya-vii-light'] button,
|
|
383
|
+
:root[data-client-theme='siraya-vii-light'] select,
|
|
384
|
+
:root[data-client-theme='siraya-vii-light'] textarea {
|
|
385
|
+
font-family: var(--font-family-base);
|
|
386
|
+
letter-spacing: 0.01em;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-shell='main-layout'] {
|
|
390
|
+
background-attachment: fixed;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
:root[data-client-theme='siraya-vii-light'] [data-main-fe-card],
|
|
394
|
+
:root[data-client-theme='siraya-vii-light'] [data-main-fe-page-title],
|
|
395
|
+
:root[data-client-theme='siraya-vii-light'] [data-main-fe-datatable],
|
|
396
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-dashboard='page'] [data-slot='filters'],
|
|
397
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-dashboard='page'] [data-slot='chart-card'],
|
|
398
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-models='filters'],
|
|
399
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-models='page'] [data-slot='empty-state'],
|
|
400
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-credit='history'] [data-slot='filters'],
|
|
401
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-credit='topup'] [data-slot='redeem-panel'],
|
|
402
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-credit='topup'] [data-slot='notice'],
|
|
403
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-credit='overview'] [data-slot='stats-shell'],
|
|
404
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-models='model-card'] {
|
|
405
|
+
border-radius: 28px !important;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
:root[data-client-theme='siraya-vii-light'] [data-main-fe-page-title] [data-slot='title'] {
|
|
409
|
+
font-family: var(--font-family-heading);
|
|
410
|
+
font-size: clamp(1.9rem, 1.55rem + 0.95vw, 2.5rem) !important;
|
|
411
|
+
font-weight: 400 !important;
|
|
412
|
+
letter-spacing: -0.03em;
|
|
413
|
+
line-height: 1.02;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
:root[data-client-theme='siraya-vii-light'] [data-main-fe-page-title] [data-slot='subtitle'] {
|
|
417
|
+
max-width: 54ch;
|
|
418
|
+
font-size: 0.95rem !important;
|
|
419
|
+
line-height: 1.55;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
:root[data-client-theme='siraya-vii-light'] [data-main-fe-section-title] [data-slot='title'],
|
|
423
|
+
:root[data-client-theme='siraya-vii-light'] [data-main-fe-card] [data-slot='card-title'] {
|
|
424
|
+
font-family: var(--font-family-heading);
|
|
425
|
+
font-size: 1.05rem !important;
|
|
426
|
+
font-weight: 700 !important;
|
|
427
|
+
letter-spacing: 0.02em;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
:root[data-client-theme='siraya-vii-light'] [data-main-fe-section-title] [data-slot='subtitle'],
|
|
431
|
+
:root[data-client-theme='siraya-vii-light'] [data-main-fe-card-description] {
|
|
432
|
+
font-size: 0.9rem !important;
|
|
433
|
+
line-height: 1.55;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
:root[data-client-theme='siraya-vii-light'] [data-main-fe-section-title] [data-slot='icon'] {
|
|
437
|
+
border-radius: 20px !important;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
:root[data-client-theme='siraya-vii-light'] [data-main-fe-button] {
|
|
441
|
+
text-transform: none !important;
|
|
442
|
+
letter-spacing: 0.04em !important;
|
|
443
|
+
font-size: 0.78rem !important;
|
|
444
|
+
font-weight: 700 !important;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
:root[data-client-theme='siraya-vii-light'] [data-main-fe-button][data-size='lg'] {
|
|
448
|
+
font-size: 0.92rem !important;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
:root[data-client-theme='siraya-vii-light'] [data-main-fe-input] [data-slot='control'],
|
|
452
|
+
:root[data-client-theme='siraya-vii-light'] [data-main-fe-combobox] [data-slot='control'],
|
|
453
|
+
:root[data-client-theme='siraya-vii-light'] [data-main-fe-date-range] [data-slot='trigger'],
|
|
454
|
+
:root[data-client-theme='siraya-vii-light'] [data-main-fe-date-time] [data-slot='trigger'] {
|
|
455
|
+
border-radius: 18px !important;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
:root[data-client-theme='siraya-vii-light'] [data-main-fe-tabs],
|
|
459
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-credit='wallet'] [data-slot='tabs'] {
|
|
460
|
+
border-radius: 999px !important;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
:root[data-client-theme='siraya-vii-light'] [data-main-fe-tabs] [data-slot='indicator'] {
|
|
464
|
+
border-radius: 999px !important;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
:root[data-client-theme='siraya-vii-light'] [data-main-fe-sidebar] {
|
|
468
|
+
border-radius: 32px !important;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
:root[data-client-theme='siraya-vii-light'] [data-main-fe-sidebar-item] [data-slot='row'] {
|
|
472
|
+
border-radius: 18px !important;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-shell='header'] {
|
|
476
|
+
border-radius: 24px !important;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-shell='header']:not(.bg-transparent) {
|
|
480
|
+
background:
|
|
481
|
+
linear-gradient(
|
|
482
|
+
135deg,
|
|
483
|
+
color-mix(in srgb, var(--surface-elevated) 86%, var(--accent-soft) 14%) 0%,
|
|
484
|
+
color-mix(in srgb, var(--surface-elevated) 94%, var(--surface-strong) 6%) 100%
|
|
485
|
+
) !important;
|
|
486
|
+
border-color: transparent !important;
|
|
487
|
+
box-shadow:
|
|
488
|
+
0 24px 48px -34px rgba(20, 10, 9, 0.5),
|
|
489
|
+
inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
|
|
490
|
+
backdrop-filter: blur(18px) saturate(1.05) !important;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-shell='header'].bg-transparent {
|
|
494
|
+
background:
|
|
495
|
+
linear-gradient(
|
|
496
|
+
135deg,
|
|
497
|
+
color-mix(in srgb, var(--shell-hero-from) 82%, transparent) 0%,
|
|
498
|
+
color-mix(in srgb, var(--shell-hero-mid) 66%, transparent) 58%,
|
|
499
|
+
color-mix(in srgb, var(--shell-hero-to) 48%, transparent) 100%
|
|
500
|
+
) !important;
|
|
501
|
+
border: 1px solid transparent !important;
|
|
502
|
+
box-shadow:
|
|
503
|
+
0 24px 48px -34px rgba(0, 0, 0, 0.58),
|
|
504
|
+
inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
|
|
505
|
+
backdrop-filter: blur(18px) saturate(1.06) !important;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-shell='header'] [data-slot='title'] {
|
|
509
|
+
font-family: var(--font-family-heading);
|
|
510
|
+
font-size: 0.82rem !important;
|
|
511
|
+
font-weight: 900 !important;
|
|
512
|
+
letter-spacing: 0.12em;
|
|
513
|
+
text-transform: uppercase;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-shell='header'] [data-slot='toggle'],
|
|
517
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-shell='header'] [data-slot='user-trigger'] {
|
|
518
|
+
border: 1px solid transparent;
|
|
519
|
+
border-radius: 14px !important;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-shell='header']:not(.bg-transparent) [data-slot='toggle'],
|
|
523
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-shell='header']:not(.bg-transparent) [data-slot='user-trigger'] {
|
|
524
|
+
background: color-mix(in srgb, var(--surface-strong) 82%, transparent) !important;
|
|
525
|
+
border-color: transparent !important;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-shell='header']:not(.bg-transparent) [data-slot='toggle']:hover,
|
|
529
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-shell='header']:not(.bg-transparent) [data-slot='user-trigger']:hover {
|
|
530
|
+
background: color-mix(in srgb, var(--accent-soft) 62%, var(--surface-strong)) !important;
|
|
531
|
+
border-color: transparent !important;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-shell='header'].bg-transparent [data-slot='toggle'],
|
|
535
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-shell='header'].bg-transparent [data-slot='user-trigger'] {
|
|
536
|
+
background: rgba(255, 255, 255, 0.04) !important;
|
|
537
|
+
border-color: transparent !important;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-shell='header'].bg-transparent [data-slot='toggle']:hover,
|
|
541
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-shell='header'].bg-transparent [data-slot='user-trigger']:hover {
|
|
542
|
+
background: rgba(255, 255, 255, 0.1) !important;
|
|
543
|
+
border-color: transparent !important;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-shell='header'] [data-slot='timezone'] {
|
|
547
|
+
font-size: 0.72rem !important;
|
|
548
|
+
letter-spacing: 0.08em;
|
|
549
|
+
text-transform: uppercase;
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-shell='header'] [data-slot='avatar'] {
|
|
553
|
+
border: 1px solid transparent !important;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-theme-settings] [data-slot='theme-option'] {
|
|
557
|
+
border-radius: 24px !important;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
:root[data-client-theme='siraya-vii-light'] [data-client-theme-settings] [data-slot='theme-option'][aria-pressed='true'] {
|
|
561
|
+
border-color: transparent !important;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
:root[data-client-theme='siraya-vii-light'] [data-brand='siraya-badge'] {
|
|
565
|
+
border-color: color-mix(in srgb, var(--accent) 18%, var(--border)) !important;
|
|
566
|
+
background:
|
|
567
|
+
radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.86), transparent 34%),
|
|
568
|
+
linear-gradient(135deg, rgba(255, 253, 251, 0.98) 0%, rgba(247, 231, 224, 0.94) 100%) !important;
|
|
569
|
+
color: var(--brand-asphalt) !important;
|
|
570
|
+
box-shadow:
|
|
571
|
+
inset 0 1px 0 rgba(255, 255, 255, 0.6),
|
|
572
|
+
0 12px 24px -16px rgba(216, 35, 40, 0.2) !important;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
:root[data-client-theme='siraya-vii-light'] [data-brand='siraya-label'] {
|
|
576
|
+
color: var(--sidebar-brand-label, var(--text-strong)) !important;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
:root[data-client-theme='siraya-vii-light'] [data-brand='siraya-wordmark'] {
|
|
580
|
+
font-family: var(--font-family-heading);
|
|
581
|
+
letter-spacing: 0.22em !important;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
:root[data-client-theme='siraya-vii-light'] [data-brand='siraya-subtitle'] {
|
|
585
|
+
color: var(--muted) !important;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
:root[data-client-theme='siraya-vii-light'] [data-brand-tone='inverted'][data-brand='siraya-badge'] {
|
|
589
|
+
border-color: rgba(255, 255, 255, 0.16) !important;
|
|
590
|
+
background:
|
|
591
|
+
radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.26), transparent 34%),
|
|
592
|
+
linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%) !important;
|
|
593
|
+
color: rgba(255, 250, 248, 0.86) !important;
|
|
594
|
+
box-shadow: none !important;
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
:root[data-client-theme='siraya-vii-light'] [data-brand-tone='inverted'][data-brand='siraya-label'] {
|
|
598
|
+
color: #fffaf8 !important;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
:root[data-client-theme='siraya-vii-light'] [data-brand-tone='inverted'] [data-brand='siraya-subtitle'] {
|
|
602
|
+
color: rgba(255, 250, 248, 0.72) !important;
|
|
603
|
+
}
|