@vectramindnpm/unified-design-system 0.1.0
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/README.md +255 -0
- package/dist/components.css +387 -0
- package/dist/fonts/Inter-VariableFont_opsz,wght.woff2 +0 -0
- package/dist/fonts/fp-neo.eot +0 -0
- package/dist/fonts/fp-neo.svg +249 -0
- package/dist/fonts/fp-neo.ttf +0 -0
- package/dist/fonts/fp-neo.woff +0 -0
- package/dist/fonts.css +12 -0
- package/dist/icon-font.css +703 -0
- package/dist/index.cjs +3102 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.css +95 -0
- package/dist/index.css.map +1 -0
- package/dist/index.d.cts +775 -0
- package/dist/index.d.ts +775 -0
- package/dist/index.js +2983 -0
- package/dist/index.js.map +1 -0
- package/dist/shadcn-base.css +36 -0
- package/dist/styles.css +11 -0
- package/dist/theme.css +92 -0
- package/dist/tokens.css +685 -0
- package/package.json +89 -0
- package/tailwind-preset.js +84 -0
- package/tailwind-tokens.cjs +87 -0
package/dist/tokens.css
ADDED
|
@@ -0,0 +1,685 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--color-background-card: var(--color-neutral-100);
|
|
3
|
+
--color-background-surface: var(--color-neutral-white);
|
|
4
|
+
--color-border-card: var(--color-neutral-450);
|
|
5
|
+
--color-border-default: var(--color-neutral-muted);
|
|
6
|
+
--color-brand-purple: #5D62B5;
|
|
7
|
+
--color-brand-purple-600: #4A4F99;
|
|
8
|
+
--color-brand-purple-700: #424784;
|
|
9
|
+
--color-gradient-brand: linear-gradient(145deg, #5D62B5 0%, #7B7FD4 50%, #8E92DD 100%);
|
|
10
|
+
--color-button-cancel: #e05c3a;
|
|
11
|
+
--color-button-cancel-hover-bg: #fef4f1;
|
|
12
|
+
--color-button-formcancel-bg: #FFEAEA;
|
|
13
|
+
--color-button-formcancel-hover-bg: #ffd5d5;
|
|
14
|
+
--color-button-formsubmit-hover-bg: #4D52A5;
|
|
15
|
+
--color-button-save-bg: #3d3f8f;
|
|
16
|
+
--color-button-save-hover-bg: #33357a;
|
|
17
|
+
--color-button-selected-gradient-mid: #3b4288;
|
|
18
|
+
--color-button-selected-gradient-start: #1f255a;
|
|
19
|
+
--color-button-submenu-text: #6d6a6a;
|
|
20
|
+
--color-toast-danger-bg: #EF4444;
|
|
21
|
+
--color-toast-info-bg: #eff6ff;
|
|
22
|
+
--color-toast-success-bg: #10B981;
|
|
23
|
+
--color-toast-warning-bg: #f7a23b;
|
|
24
|
+
--color-interactive-brand: var(--color-brand-purple);
|
|
25
|
+
--color-interactive-brand-active: var(--color-brand-purple-600);
|
|
26
|
+
--color-interactive-brand-hover: var(--color-brand-purple-700);
|
|
27
|
+
--color-neutral-100: #f9fafb;
|
|
28
|
+
--color-neutral-200: #f3f4f6;
|
|
29
|
+
--color-neutral-300: #e9eef6;
|
|
30
|
+
--color-neutral-350: #e5e7eb;
|
|
31
|
+
--color-neutral-400: #dddddd;
|
|
32
|
+
--color-neutral-450: #d1d5db;
|
|
33
|
+
--color-neutral-500: #ced4da;
|
|
34
|
+
--color-neutral-600: #9ca3af;
|
|
35
|
+
--color-neutral-700: #374151;
|
|
36
|
+
--color-neutral-800: #263238;
|
|
37
|
+
--color-neutral-900: #111827;
|
|
38
|
+
--color-neutral-gray: #6b7280;
|
|
39
|
+
--color-neutral-muted: #f1f1f1;
|
|
40
|
+
--color-neutral-white: #ffffff;
|
|
41
|
+
--color-status-danger: #F2726F;
|
|
42
|
+
--color-status-success: #63B58F;
|
|
43
|
+
--color-status-warning: #F5A623;
|
|
44
|
+
--color-text-muted: var(--color-neutral-600);
|
|
45
|
+
--color-text-primary: var(--color-neutral-900);
|
|
46
|
+
--component-button-background: var(--color-interactive-brand);
|
|
47
|
+
--component-button-background-hover: var(--color-interactive-brand-hover);
|
|
48
|
+
--component-button-radius: var(--radius-control);
|
|
49
|
+
--component-button-shadow: var(--shadow-elevation-1);
|
|
50
|
+
--component-button-text-color: var(--color-background-surface);
|
|
51
|
+
--component-card-background: var(--color-background-card);
|
|
52
|
+
--component-card-border-color: var(--color-border-card);
|
|
53
|
+
--component-card-radius: var(--radius-card);
|
|
54
|
+
--component-pill-active-bg: var(--color-ext-edf9f4);
|
|
55
|
+
--component-pill-active-border: var(--color-ext-009d6430);
|
|
56
|
+
--component-pill-active-text: var(--color-ext-267352);
|
|
57
|
+
--component-pill-inactive-bg: var(--color-ext-fff2f2);
|
|
58
|
+
--component-pill-inactive-border: var(--color-ext-f6242430);
|
|
59
|
+
--component-pill-inactive-text: var(--color-brand-red);
|
|
60
|
+
--component-pill-tag-bg: #5D62B50D;
|
|
61
|
+
--component-pill-tag-border: #5D62B526;
|
|
62
|
+
--component-pill-tag-text: var(--color-brand-purple);
|
|
63
|
+
--component-table-action-activate-bg: var(--color-brand-blue);
|
|
64
|
+
--component-table-action-activate-hover: var(--color-ext-4a4faa);
|
|
65
|
+
--component-table-action-call-bg: var(--color-brand-green);
|
|
66
|
+
--component-table-action-call-hover: var(--color-ext-059669);
|
|
67
|
+
--component-table-action-end-bg: var(--color-brand-red);
|
|
68
|
+
--component-table-action-end-hover: var(--color-ext-dc2626);
|
|
69
|
+
--component-table-action-hold-bg: var(--color-ext-fbbf24);
|
|
70
|
+
--component-table-action-hold-hover: var(--color-ext-f59e0b);
|
|
71
|
+
--component-table-action-noshow-bg: var(--color-ext-f87171);
|
|
72
|
+
--component-table-action-noshow-hover: var(--color-toast-danger-bg);
|
|
73
|
+
--component-table-action-success-bg: var(--color-brand-green);
|
|
74
|
+
--component-table-action-success-hover: var(--color-ext-36a16f);
|
|
75
|
+
--component-table-action-transfer-bg: var(--color-brand-teal);
|
|
76
|
+
--component-table-action-transfer-hover: var(--color-ext-0f766e);
|
|
77
|
+
--component-table-border: var(--color-ext-eef0f3);
|
|
78
|
+
--component-table-header-bg: var(--color-neutral-100);
|
|
79
|
+
--component-table-header-text: var(--color-neutral-600);
|
|
80
|
+
--component-table-pill-hold-bg: var(--color-ext-fff7e6);
|
|
81
|
+
--component-table-pill-hold-border: var(--color-ext-ffc30040);
|
|
82
|
+
--component-table-pill-hold-text: var(--color-ext-ffc300);
|
|
83
|
+
--component-table-pill-neutral-text: var(--color-neutral-600);
|
|
84
|
+
--component-table-pill-noshow-bg: var(--color-ext-fee2e2);
|
|
85
|
+
--component-table-pill-noshow-text: var(--color-ext-dc2626);
|
|
86
|
+
--component-table-pill-success-bg: var(--color-ext-eaf8f4);
|
|
87
|
+
--component-table-pill-success-text: var(--color-brand-green);
|
|
88
|
+
--component-table-pill-transfer-bg: var(--color-ext-ede9fe);
|
|
89
|
+
--component-table-pill-transfer-text: var(--color-ext-6366f1);
|
|
90
|
+
--component-table-row-alt-bg: var(--color-ext-f8fafc);
|
|
91
|
+
--component-table-row-escalated-bg: var(--color-ext-fff2f1);
|
|
92
|
+
--component-table-row-escalated-border: var(--color-ext-f57070);
|
|
93
|
+
--component-table-row-escalated-hover-bg: var(--color-ext-ffe0e0);
|
|
94
|
+
--component-table-row-escalated-hover-border: var(--color-brand-red);
|
|
95
|
+
--component-table-row-hover-bg: var(--color-ext-eef0fb);
|
|
96
|
+
--ctrl-2xl: 3.5rem;
|
|
97
|
+
--ctrl-xl: 3rem;
|
|
98
|
+
--focus-ring-color: var(--color-interactive-brand);
|
|
99
|
+
--focus-ring-color-soft: #5D62B54D;
|
|
100
|
+
--font-family-base: Inter, Helvetica, Arial, sans-serif;
|
|
101
|
+
--font-lineheight-normal: 1.3;
|
|
102
|
+
--font-size-2xl: 1.5rem;
|
|
103
|
+
--font-size-2xs: 0.625rem;
|
|
104
|
+
--font-size-base: 1rem;
|
|
105
|
+
--font-size-hero: 2.5rem;
|
|
106
|
+
--font-size-lg: 1.125rem;
|
|
107
|
+
--font-size-md: 1.0625rem;
|
|
108
|
+
--font-size-sm: 0.8125rem;
|
|
109
|
+
--font-size-xl: 1.3125rem;
|
|
110
|
+
--font-size-xs: 0.6875rem;
|
|
111
|
+
--font-weight-semibold: 600;
|
|
112
|
+
--motion-duration-fast: 150ms;
|
|
113
|
+
--motion-duration-normal: 200ms;
|
|
114
|
+
--opacity-mid: 0.18;
|
|
115
|
+
--radius-card: var(--radius-lg);
|
|
116
|
+
--radius-control: var(--radius-md);
|
|
117
|
+
--radius-modal: var(--radius-lg);
|
|
118
|
+
--radius-pill: 9999px;
|
|
119
|
+
--radius-xs: 0.375rem;
|
|
120
|
+
--shadow-elevation-1: var(--shadow-sm);
|
|
121
|
+
--shadow-elevation-2: var(--shadow-md);
|
|
122
|
+
--shadow-lg: 0 4px 24px rgba(0,0,0,0.08);
|
|
123
|
+
--shadow-md: 0 4px 16px rgba(0,0,0,0.10);
|
|
124
|
+
--shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
|
|
125
|
+
--spacing-button-x: var(--spacing-xl);
|
|
126
|
+
--spacing-component-gap: var(--spacing-md);
|
|
127
|
+
--spacing-form-control: var(--spacing-sm);
|
|
128
|
+
--spacing-lg: 1rem;
|
|
129
|
+
--spacing-md: 0.75rem;
|
|
130
|
+
--spacing-sm: 0.5rem;
|
|
131
|
+
--spacing-xl: 1.3125rem;
|
|
132
|
+
--spacing-xxl: 2rem;
|
|
133
|
+
--zindex-modal: 1111;
|
|
134
|
+
--zindex-overlay: 9999;
|
|
135
|
+
|
|
136
|
+
/* ─────────────────────────────────────────────────────────────────────────
|
|
137
|
+
Phase 2 color centralization additions.
|
|
138
|
+
--color-brand-* fill gaps versus the existing brand family already named
|
|
139
|
+
in src/designSystem/designTokens.js (blue/red/teal/green were used across
|
|
140
|
+
the app but had no CSS variable yet).
|
|
141
|
+
--color-ext-* are page/component one-off colors that had no existing
|
|
142
|
+
semantic name in the design-token hierarchy — named by their own hex value
|
|
143
|
+
rather than a guessed semantic label, since the same hex is reused across
|
|
144
|
+
unrelated contexts for different purposes and a wrong semantic name would
|
|
145
|
+
be worse than an honest literal one. Still centralizes every value here
|
|
146
|
+
as the single source of truth, per the "remove all hardcoded colors" pass.
|
|
147
|
+
───────────────────────────────────────────────────────────────────────── */
|
|
148
|
+
--color-brand-blue-tint: #5c62bc14;
|
|
149
|
+
--color-brand-blue: #5c62bc;
|
|
150
|
+
--color-brand-green: #3eb78c;
|
|
151
|
+
--color-brand-red: #ff686a;
|
|
152
|
+
--color-brand-teal-tint: #00c6bf14;
|
|
153
|
+
--color-brand-teal: #00c6bf;
|
|
154
|
+
--color-ext-0000001a: #0000001a;
|
|
155
|
+
--color-ext-000000: #000;
|
|
156
|
+
--color-ext-004b81: #004b81;
|
|
157
|
+
--color-ext-009d6430: #009d6430;
|
|
158
|
+
--color-ext-009d64: #009d64;
|
|
159
|
+
--color-ext-00c48c: #00c48c;
|
|
160
|
+
--color-ext-00c6bf0d: #00C6BF0D;
|
|
161
|
+
--color-ext-00c6bf25: #00C6BF25;
|
|
162
|
+
--color-ext-0369a1: #0369a1;
|
|
163
|
+
--color-ext-037edf: #037EDF;
|
|
164
|
+
--color-ext-047857: #047857;
|
|
165
|
+
--color-ext-059669: #059669;
|
|
166
|
+
--color-ext-065f46: #065F46;
|
|
167
|
+
--color-ext-06b6d4: #06B6D4;
|
|
168
|
+
--color-ext-ff6a00: #ff6a00;
|
|
169
|
+
--color-ext-00cac0: #00cac0;
|
|
170
|
+
--color-ext-075985: #075985;
|
|
171
|
+
--color-ext-080e71: #080E71;
|
|
172
|
+
--color-ext-0891b2: #0891b2;
|
|
173
|
+
--color-ext-0b0d1a: #0b0d1a;
|
|
174
|
+
--color-ext-0bc4e8: #0bc4e8;
|
|
175
|
+
--color-ext-0d9488: #0d9488;
|
|
176
|
+
--color-ext-0e1120: #0e1120;
|
|
177
|
+
--color-ext-0ea5a5: #0ea5a5;
|
|
178
|
+
--color-ext-0ea5e904: #0ea5e904;
|
|
179
|
+
--color-ext-0ea5e9: #0ea5e9;
|
|
180
|
+
--color-ext-0ea5e915: #0ea5e915;
|
|
181
|
+
--color-ext-0f1324: #0f1324;
|
|
182
|
+
--color-ext-0f172a: #0f172a;
|
|
183
|
+
--color-ext-0f766e: #0f766e;
|
|
184
|
+
--color-ext-10162a: #10162a;
|
|
185
|
+
--color-ext-10b98104: #10b98104;
|
|
186
|
+
--color-ext-10b98115: #10b98115;
|
|
187
|
+
--color-ext-111111: #111;
|
|
188
|
+
--color-ext-111629: #111629;
|
|
189
|
+
--color-ext-134e4a: #134e4a;
|
|
190
|
+
--color-ext-13c3e7: #13c3e7;
|
|
191
|
+
--color-ext-14b8a6: #14b8a6;
|
|
192
|
+
--color-ext-151729: #151729;
|
|
193
|
+
--color-ext-15803d: #15803d;
|
|
194
|
+
--color-ext-166534: #166534;
|
|
195
|
+
--color-ext-16a34a: #16a34a;
|
|
196
|
+
--color-ext-171717: #171717;
|
|
197
|
+
--color-ext-19b8b0: #19B8B0;
|
|
198
|
+
--color-ext-1a1a1a: #1a1a1a;
|
|
199
|
+
--color-ext-1a1a2e: #1a1a2e;
|
|
200
|
+
--color-ext-1d4ed8: #1d4ed8;
|
|
201
|
+
--color-ext-1e1e1e: #1e1e1e;
|
|
202
|
+
--color-ext-1e2147: #1e2147;
|
|
203
|
+
--color-ext-1f2937: #1f2937;
|
|
204
|
+
--color-ext-1f9d55: #1f9d55;
|
|
205
|
+
--color-ext-20a987: #20a987;
|
|
206
|
+
--color-ext-22c55e: #22c55e;
|
|
207
|
+
--color-ext-24324a: #24324A;
|
|
208
|
+
--color-ext-24c087: #24c087;
|
|
209
|
+
--color-ext-252eb8: #252eb8;
|
|
210
|
+
--color-ext-2563eb: #2563eb;
|
|
211
|
+
--color-ext-267352: #267352;
|
|
212
|
+
--color-ext-28c7d9: #28C7D9;
|
|
213
|
+
--color-ext-2b3473: #2b3473;
|
|
214
|
+
--color-ext-2c9d70: #2c9d70;
|
|
215
|
+
--color-ext-2d2d2d: #2d2d2d;
|
|
216
|
+
--color-ext-2e3260: #2e3260;
|
|
217
|
+
--color-ext-2f345f: #2f345f;
|
|
218
|
+
--color-ext-2fb5c7: #2fb5c7;
|
|
219
|
+
--color-ext-2fd0f6: #2fd0f6;
|
|
220
|
+
--color-ext-32395f: #32395f;
|
|
221
|
+
--color-ext-333333: #333;
|
|
222
|
+
--color-ext-333674: #333674;
|
|
223
|
+
--color-ext-34d399: #34d399;
|
|
224
|
+
--color-ext-36a16f: #36a16f;
|
|
225
|
+
--color-ext-374151: #374151;
|
|
226
|
+
--color-ext-3a3f84: #3a3f84;
|
|
227
|
+
--color-ext-3a7bd5: #3a7bd5;
|
|
228
|
+
--color-ext-3b82f6: #3b82f6;
|
|
229
|
+
--color-ext-3c4aa3: #3c4aa3;
|
|
230
|
+
--color-ext-3d3a5c: #3d3a5c;
|
|
231
|
+
--color-ext-3d3d3d: #3d3d3d;
|
|
232
|
+
--color-ext-3d43a4: #3d43a4;
|
|
233
|
+
--color-ext-3eb78c0d: #3eb78c0d;
|
|
234
|
+
--color-ext-3eb78c14: #3EB78C14;
|
|
235
|
+
--color-ext-3f3d56: #3f3d56;
|
|
236
|
+
--color-ext-404aef: #404aef;
|
|
237
|
+
--color-ext-414884: #414884;
|
|
238
|
+
--color-ext-4338ca: #4338ca;
|
|
239
|
+
--color-ext-454ca0: #454ca0;
|
|
240
|
+
--color-ext-475569: #475569;
|
|
241
|
+
--color-ext-4a4faa: #4a4faa;
|
|
242
|
+
--color-ext-4a50a8: #4a50a8;
|
|
243
|
+
--color-ext-4a90d9: #4a90d9;
|
|
244
|
+
--color-ext-4ade80: #4ade80;
|
|
245
|
+
--color-ext-4b5563: #4B5563;
|
|
246
|
+
--color-ext-4caf7d: #4caf7d;
|
|
247
|
+
--color-ext-4e5299: #4E5299;
|
|
248
|
+
--color-ext-4f46e5: #4F46E5;
|
|
249
|
+
--color-ext-555555: #555;
|
|
250
|
+
--color-ext-5558e3: #5558E3;
|
|
251
|
+
--color-ext-596191: #596191;
|
|
252
|
+
--color-ext-5b21b6: #5b21b6;
|
|
253
|
+
--color-ext-5b50d6: #5b50d6;
|
|
254
|
+
--color-ext-5c62bc04: #5C62BC04;
|
|
255
|
+
--color-ext-5c62bc0d: #5c62bc0d;
|
|
256
|
+
--color-ext-5c62bc12: #5c62bc12;
|
|
257
|
+
--color-ext-5c62bc20: #5C62BC20;
|
|
258
|
+
--color-ext-5c62bc22: #5c62bc22;
|
|
259
|
+
--color-ext-5c62bc30: #5C62BC30;
|
|
260
|
+
--color-ext-5c62bc40: #5C62BC40;
|
|
261
|
+
--color-ext-5f6c7b: #5f6c7b;
|
|
262
|
+
--color-ext-636477: #636477;
|
|
263
|
+
--color-ext-6366f1: #6366F1;
|
|
264
|
+
--color-ext-64748b: #64748B;
|
|
265
|
+
--color-ext-666666: #666;
|
|
266
|
+
--color-ext-6b74d8: #6B74D8;
|
|
267
|
+
--color-ext-6d28d9: #6d28d9;
|
|
268
|
+
--color-ext-6f6e6e: #6f6e6e;
|
|
269
|
+
--color-ext-737b8c: #737B8C;
|
|
270
|
+
--color-ext-78350f: #78350f;
|
|
271
|
+
--color-ext-7a5200: #7a5200;
|
|
272
|
+
--color-ext-7c3aed: #7c3aed;
|
|
273
|
+
--color-ext-7c4dff: #7c4dff;
|
|
274
|
+
--color-ext-7d84b0: #7d84b0;
|
|
275
|
+
--color-ext-7dd3fc: #7dd3fc;
|
|
276
|
+
--color-ext-7e22ce: #7e22ce;
|
|
277
|
+
--color-ext-818cf8: #818cf8;
|
|
278
|
+
--color-ext-86efac: #86efac;
|
|
279
|
+
--color-ext-888888: #888;
|
|
280
|
+
--color-ext-8a91a0: #8A91A0;
|
|
281
|
+
--color-ext-8b5cf604: #8b5cf604;
|
|
282
|
+
--color-ext-8b5cf6: #8b5cf6;
|
|
283
|
+
--color-ext-8b5cf615: #8b5cf615;
|
|
284
|
+
--color-ext-8b95a7: #8B95A7;
|
|
285
|
+
--color-ext-8d7b68: #8d7b68;
|
|
286
|
+
--color-ext-92400e: #92400e;
|
|
287
|
+
--color-ext-9333ea: #9333ea;
|
|
288
|
+
--color-ext-93d2ff40: #93d2ff40;
|
|
289
|
+
--color-ext-94a3b8: #94a3b8;
|
|
290
|
+
--color-ext-9791b8: #9791b8;
|
|
291
|
+
--color-ext-991b1b: #991B1B;
|
|
292
|
+
--color-ext-999999: #999999;
|
|
293
|
+
--color-ext-99f6e4: #99f6e4;
|
|
294
|
+
--color-ext-9aa1c7: #9aa1c7;
|
|
295
|
+
--color-ext-9aa3be: #9aa3be;
|
|
296
|
+
--color-ext-9ea8d8: #9ea8d8;
|
|
297
|
+
--color-ext-a16207: #a16207;
|
|
298
|
+
--color-ext-a3b1c6: #A3B1C6;
|
|
299
|
+
--color-ext-a5b4fc: #a5b4fc;
|
|
300
|
+
--color-ext-a5f3fc: #a5f3fc;
|
|
301
|
+
--color-ext-a7f3d0: #a7f3d0;
|
|
302
|
+
--color-ext-aaaaaa: #aaa;
|
|
303
|
+
--color-ext-b0b3c6: #b0b3c6;
|
|
304
|
+
--color-ext-b45309: #b45309;
|
|
305
|
+
--color-ext-b7bdc8: #B7BDC8;
|
|
306
|
+
--color-ext-b91c1c: #b91c1c;
|
|
307
|
+
--color-ext-bae6fd: #bae6fd;
|
|
308
|
+
--color-ext-bbf7d0: #bbf7d0;
|
|
309
|
+
--color-ext-be123c: #be123c;
|
|
310
|
+
--color-ext-be185d: #be185d;
|
|
311
|
+
--color-ext-bfdbfe: #bfdbfe;
|
|
312
|
+
--color-ext-bff2f2: #bff2f2;
|
|
313
|
+
--color-ext-bff3ff: #bff3ff;
|
|
314
|
+
--color-ext-c026d3: #c026d3;
|
|
315
|
+
--color-ext-c0bcd8: #c0bcd8;
|
|
316
|
+
--color-ext-c2410c: #c2410c;
|
|
317
|
+
--color-ext-c394e4: #c394e4;
|
|
318
|
+
--color-ext-c6ccee: #c6ccee;
|
|
319
|
+
--color-ext-c7c4f0: #c7c4f0;
|
|
320
|
+
--color-ext-c7cae8: #C7CAE8;
|
|
321
|
+
--color-ext-c7d2fe: #c7d2fe;
|
|
322
|
+
--color-ext-c7dbff: #c7dbff;
|
|
323
|
+
--color-ext-c8efd8: #c8efd8;
|
|
324
|
+
--color-ext-c9c6e0: #c9c6e0;
|
|
325
|
+
--color-ext-c9cce8: #C9CCE8;
|
|
326
|
+
--color-ext-c9cdd4: #c9cdd4;
|
|
327
|
+
--color-ext-cbd5e1: #cbd5e1;
|
|
328
|
+
--color-ext-ccfbf1: #ccfbf1;
|
|
329
|
+
--color-ext-cfe0ff: #cfe0ff;
|
|
330
|
+
--color-ext-cfeffc: #CFEFFC;
|
|
331
|
+
--color-ext-d0d3ed: #D0D3ED;
|
|
332
|
+
--color-ext-d1d5db80: #d1d5db80;
|
|
333
|
+
--color-ext-d1fae5: #D1FAE5;
|
|
334
|
+
--color-ext-d4183d: #d4183d;
|
|
335
|
+
--color-ext-d49b00: #d49b00;
|
|
336
|
+
--color-ext-d54c5c: #d54c5c;
|
|
337
|
+
--color-ext-d6dcff: #d6dcff;
|
|
338
|
+
--color-ext-d8d4f0: #d8d4f0;
|
|
339
|
+
--color-ext-d8dbf5: #d8dbf5;
|
|
340
|
+
--color-ext-d8dcff: #D8DCFF;
|
|
341
|
+
--color-ext-d8dee6: #d8dee6;
|
|
342
|
+
--color-ext-d97706: #D97706;
|
|
343
|
+
--color-ext-d9d5ff: #d9d5ff;
|
|
344
|
+
--color-ext-d9d7ec: #d9d7ec;
|
|
345
|
+
--color-ext-d9dadc: #d9dadc;
|
|
346
|
+
--color-ext-d9ddfc: #D9DDFC;
|
|
347
|
+
--color-ext-d9dee8: #D9DEE8;
|
|
348
|
+
--color-ext-d9fdd3: #d9fdd3;
|
|
349
|
+
--color-ext-dbeafe: #dbeafe;
|
|
350
|
+
--color-ext-dc2626: #dc2626;
|
|
351
|
+
--color-ext-dcd9f3: #dcd9f3;
|
|
352
|
+
--color-ext-dcfce7: #dcfce7;
|
|
353
|
+
--color-ext-ddd6fe: #ddd6fe;
|
|
354
|
+
--color-ext-dde0f5: #DDE0F5;
|
|
355
|
+
--color-ext-dfe4ff: #dfe4ff;
|
|
356
|
+
--color-ext-dff6ea: #dff6ea;
|
|
357
|
+
--color-ext-e07a00: #e07a00;
|
|
358
|
+
--color-ext-e0d2ff: #e0d2ff;
|
|
359
|
+
--color-ext-e0e1f5: #e0e1f5;
|
|
360
|
+
--color-ext-e0e7ff: #e0e7ff;
|
|
361
|
+
--color-ext-e0f2fe: #e0f2fe;
|
|
362
|
+
--color-ext-e0f8f8: #E0F8F8;
|
|
363
|
+
--color-ext-e1e3ef: #e1e3ef;
|
|
364
|
+
--color-ext-e1e5ff: #E1E5FF;
|
|
365
|
+
--color-ext-e2e1ed: #e2e1ed;
|
|
366
|
+
--color-ext-e2e8f0: #e2e8f0;
|
|
367
|
+
--color-ext-e4e7f2: #E4E7F2;
|
|
368
|
+
--color-ext-e4e8f5: #E4E8F5;
|
|
369
|
+
--color-ext-e5484d: #e5484d;
|
|
370
|
+
--color-ext-e5e3f5: #e5e3f5;
|
|
371
|
+
--color-ext-e6fff6: #e6fff6;
|
|
372
|
+
--color-ext-e6fffb: #E6FFFB;
|
|
373
|
+
--color-ext-e85d75: #e85d75;
|
|
374
|
+
--color-ext-e8e7f3: #e8e7f3;
|
|
375
|
+
--color-ext-e8eaf6: #E8EAF6;
|
|
376
|
+
--color-ext-e8faf4: #e8faf4;
|
|
377
|
+
--color-ext-e9d5ff: #e9d5ff;
|
|
378
|
+
--color-ext-ea580c: #ea580c;
|
|
379
|
+
--color-ext-eaebf8: #eaebf8;
|
|
380
|
+
--color-ext-eaecf8: #EAECF8;
|
|
381
|
+
--color-ext-eaf8f4: #eaf8f4;
|
|
382
|
+
--color-ext-eafbfa: #EAFBFA;
|
|
383
|
+
--color-ext-ec4899: #ec4899;
|
|
384
|
+
--color-ext-ecebfa: #ecebfa;
|
|
385
|
+
--color-ext-ecedf8: #ecedf8;
|
|
386
|
+
--color-ext-eceef5: #ECEEF5;
|
|
387
|
+
--color-ext-eceefe: #ECEEFE;
|
|
388
|
+
--color-ext-ecfdf5: #ecfdf5;
|
|
389
|
+
--color-ext-ede9fe: #ede9fe;
|
|
390
|
+
--color-ext-edeaf7: #edeaf7;
|
|
391
|
+
--color-ext-ededfb: #ededfb;
|
|
392
|
+
--color-ext-edf9f4: #edf9f4;
|
|
393
|
+
--color-ext-eeedf8: #EEEDF8;
|
|
394
|
+
--color-ext-eef0f3: #eef0f3;
|
|
395
|
+
--color-ext-eef0fb: #eef0fb;
|
|
396
|
+
--color-ext-eef2f7: #eef2f7;
|
|
397
|
+
--color-ext-eef2ff: #EEF2FF;
|
|
398
|
+
--color-ext-eef9f4: #eef9f4;
|
|
399
|
+
--color-ext-ef4444: #ef4444;
|
|
400
|
+
--color-ext-ef444404: #ef444404;
|
|
401
|
+
--color-ext-ef444415: #ef444415;
|
|
402
|
+
--color-ext-ef9299: #ef9299;
|
|
403
|
+
--color-ext-efba1c: #efba1c;
|
|
404
|
+
--color-ext-eff3f6: #EFF3F6;
|
|
405
|
+
--color-ext-f0f0f0: #F0F0F0;
|
|
406
|
+
--color-ext-f0f0f5: #f0f0f5;
|
|
407
|
+
--color-ext-f0f0fb: #f0f0fb;
|
|
408
|
+
--color-ext-f0f9ff: #f0f9ff;
|
|
409
|
+
--color-ext-f0fdf4: #f0fdf4;
|
|
410
|
+
--color-ext-f1d0d0: #f1d0d0;
|
|
411
|
+
--color-ext-f1f1f8: #f1f1f8;
|
|
412
|
+
--color-ext-f1f5f9: #f1f5f9;
|
|
413
|
+
--color-ext-f2f3ff: #f2f3ff;
|
|
414
|
+
--color-ext-f2f4ff: #f2f4ff;
|
|
415
|
+
--color-ext-f39c12: #f39c12;
|
|
416
|
+
--color-ext-f3d0ff: #f3d0ff;
|
|
417
|
+
--color-ext-f3e8ff: #f3e8ff;
|
|
418
|
+
--color-ext-f3f2fa: #f3f2fa;
|
|
419
|
+
--color-ext-f3f3f3: #f3f3f3;
|
|
420
|
+
--color-ext-f3feff: #f3feff;
|
|
421
|
+
--color-ext-f4f4f4: #f4f4f4;
|
|
422
|
+
--color-ext-f4f5f8: #f4f5f8;
|
|
423
|
+
--color-ext-f4f5f9: #f4f5f9;
|
|
424
|
+
--color-ext-f4f8ff: #f4f8ff;
|
|
425
|
+
--color-ext-f4fcf7: #f4fcf7;
|
|
426
|
+
--color-ext-f4fdf7: #f4fdf7;
|
|
427
|
+
--color-ext-f4fefe: #f4fefe;
|
|
428
|
+
--color-ext-f4fffd: #f4fffd;
|
|
429
|
+
--color-ext-f57070: #f57070;
|
|
430
|
+
--color-ext-f59e0b: #f59e0b;
|
|
431
|
+
--color-ext-f59e0b04: #f59e0b04;
|
|
432
|
+
--color-ext-f59e0b15: #f59e0b15;
|
|
433
|
+
--color-ext-f5dfaf: #F5DFAF;
|
|
434
|
+
--color-ext-f5f3ff: #f5f3ff;
|
|
435
|
+
--color-ext-f5f4f9: #f5f4f9;
|
|
436
|
+
--color-ext-f5f4fc: #f5f4fc;
|
|
437
|
+
--color-ext-f5f5f5: #f5f5f5;
|
|
438
|
+
--color-ext-f5f5fb: #f5f5fb;
|
|
439
|
+
--color-ext-f5f6fa: #f5f6fa;
|
|
440
|
+
--color-ext-f5f6ff: #f5f6ff;
|
|
441
|
+
--color-ext-f5f7ff: #f5f7ff;
|
|
442
|
+
--color-ext-f5f9ff: #f5f9ff;
|
|
443
|
+
--color-ext-f5fcff: #F5FCFF;
|
|
444
|
+
--color-ext-f6242430: #f6242430;
|
|
445
|
+
--color-ext-f62424: #f62424;
|
|
446
|
+
--color-ext-f6f6fc: #f6f6fc;
|
|
447
|
+
--color-ext-f6f7ff: #f6f7ff;
|
|
448
|
+
--color-ext-f7f5ff: #f7f5ff;
|
|
449
|
+
--color-ext-f7f6ff: #F7F6FF;
|
|
450
|
+
--color-ext-f7f7fb: #f7f7fb;
|
|
451
|
+
--color-ext-f7f7fc: #f7f7fc;
|
|
452
|
+
--color-ext-f7f8ff: #F7F8FF;
|
|
453
|
+
--color-ext-f87171: #f87171;
|
|
454
|
+
--color-ext-f8f7fc: #f8f7fc;
|
|
455
|
+
--color-ext-f8f7ff: #f8f7ff;
|
|
456
|
+
--color-ext-f8f8fb: #f8f8fb;
|
|
457
|
+
--color-ext-f8f8ff: #F8F8FF;
|
|
458
|
+
--color-ext-f8f9ff: #f8f9ff;
|
|
459
|
+
--color-ext-f8fafc: #f8fafc;
|
|
460
|
+
--color-ext-f8fffe: #F8FFFE;
|
|
461
|
+
--color-ext-f97316: #f97316;
|
|
462
|
+
--color-ext-f9731604: #f9731604;
|
|
463
|
+
--color-ext-f9731615: #f9731615;
|
|
464
|
+
--color-ext-f9f8fd: #f9f8fd;
|
|
465
|
+
--color-ext-faf7ff: #faf7ff;
|
|
466
|
+
--color-ext-fafafa: #fafafa;
|
|
467
|
+
--color-ext-fafaff: #fafaff;
|
|
468
|
+
--color-ext-fafbfc: #fafbfc;
|
|
469
|
+
--color-ext-fafbff: #fafbff;
|
|
470
|
+
--color-ext-fbbf24: #fbbf24;
|
|
471
|
+
--color-ext-fbcfe8: #fbcfe8;
|
|
472
|
+
--color-ext-fbf7ff: #fbf7ff;
|
|
473
|
+
--color-ext-fca5a5: #fca5a5;
|
|
474
|
+
--color-ext-fcd34d: #fcd34d;
|
|
475
|
+
--color-ext-fcf6ff: #fcf6ff;
|
|
476
|
+
--color-ext-fde68a: #fde68a;
|
|
477
|
+
--color-ext-fde8e8: #fde8e8;
|
|
478
|
+
--color-ext-fdf4ff: #fdf4ff;
|
|
479
|
+
--color-ext-fecaca: #fecaca;
|
|
480
|
+
--color-ext-fecdd3: #fecdd3;
|
|
481
|
+
--color-ext-fed7aa: #fed7aa;
|
|
482
|
+
--color-ext-fee2e2: #fee2e2;
|
|
483
|
+
--color-ext-fee7ea: #fee7ea;
|
|
484
|
+
--color-ext-fef08a: #fef08a;
|
|
485
|
+
--color-ext-fef2f2: #fef2f2;
|
|
486
|
+
--color-ext-fef3c7: #fef3c7;
|
|
487
|
+
--color-ext-fef9c3: #fef9c3;
|
|
488
|
+
--color-ext-fef9e7: #fef9e7;
|
|
489
|
+
--color-ext-ff8b8c: #FF8B8C;
|
|
490
|
+
--color-ext-ffc30014: #FFC30014;
|
|
491
|
+
--color-ext-ffc300: #ffc300;
|
|
492
|
+
--color-ext-ffc9cc: #ffc9cc;
|
|
493
|
+
--color-ext-ffcb3b: #ffcb3b;
|
|
494
|
+
--color-ext-ffd7b3: #ffd7b3;
|
|
495
|
+
--color-ext-ffd9bd: #ffd9bd;
|
|
496
|
+
--color-ext-ffe0e0: #FFE0E0;
|
|
497
|
+
--color-ext-ffe49a: #ffe49a;
|
|
498
|
+
--color-ext-fff0f0: #fff0f0;
|
|
499
|
+
--color-ext-fff2f1: #FFF2F1;
|
|
500
|
+
--color-ext-fff2f2: #fff2f2;
|
|
501
|
+
--color-ext-fff3cd: #fff3cd;
|
|
502
|
+
--color-ext-fff3e0: #fff3e0;
|
|
503
|
+
--color-ext-fff4ed: #fff4ed;
|
|
504
|
+
--color-ext-fff4f5: #fff4f5;
|
|
505
|
+
--color-ext-fff5f5: #fff5f5;
|
|
506
|
+
--color-ext-fff6f7: #fff6f7;
|
|
507
|
+
--color-ext-fff6fb: #fff6fb;
|
|
508
|
+
--color-ext-fff7e6: #fff7e6;
|
|
509
|
+
--color-ext-fff7ed: #fff7ed;
|
|
510
|
+
--color-ext-fff7f0: #fff7f0;
|
|
511
|
+
--color-ext-fff8f2: #fff8f2;
|
|
512
|
+
--color-ext-fff8f8: #fff8f8;
|
|
513
|
+
--color-ext-fff9f4: #fff9f4;
|
|
514
|
+
--color-ext-fffbea: #fffbea;
|
|
515
|
+
--color-ext-fffbeb: #fffbeb;
|
|
516
|
+
--color-ext-fffbf2: #FFFBF2;
|
|
517
|
+
--color-ext-fffdf2: #fffdf2;
|
|
518
|
+
|
|
519
|
+
/* Phase 3a additions (chart-adjacent DOM/SVG files rendered via Recharts/D3/plain markup —
|
|
520
|
+
safe for CSS var(), unlike files that build real ECharts option objects). */
|
|
521
|
+
--color-ext-1e1b4b: #1e1b4b;
|
|
522
|
+
--color-ext-22d3ee: #22d3ee;
|
|
523
|
+
--color-ext-29c5e6: #29c5e6;
|
|
524
|
+
--color-ext-3b90f7: #3b90f7;
|
|
525
|
+
--color-ext-444444: #444;
|
|
526
|
+
--color-ext-6ee7b7: #6ee7b7;
|
|
527
|
+
--color-ext-74b9e8: #74b9e8;
|
|
528
|
+
--color-ext-a0a5dd: #a0a5dd;
|
|
529
|
+
--color-ext-a0aec0: #a0aec0;
|
|
530
|
+
--color-ext-a78bfa: #a78bfa;
|
|
531
|
+
--color-ext-a855f7: #a855f7;
|
|
532
|
+
--color-ext-b5e48c: #b5e48c;
|
|
533
|
+
--color-ext-bbbbbb: #bbb;
|
|
534
|
+
--color-ext-cccccc: #ccc;
|
|
535
|
+
--color-ext-d1faf7: #d1faf7;
|
|
536
|
+
--color-ext-f0fdfa: #f0fdfa;
|
|
537
|
+
--color-ext-f472b6: #f472b6;
|
|
538
|
+
--color-ext-f4a9b8: #f4a9b8;
|
|
539
|
+
--color-ext-f6f7fb: #f6f7fb;
|
|
540
|
+
--color-ext-f9c74f: #f9c74f;
|
|
541
|
+
--color-ext-faf5ff: #faf5ff;
|
|
542
|
+
--color-ext-fff1f2: #fff1f2;
|
|
543
|
+
--color-ext-ffffff08: #ffffff08;
|
|
544
|
+
|
|
545
|
+
/* Phase 3b additions (pages.scss hardcoded-color cleanup pass — colors with no prior
|
|
546
|
+
matching token; named by literal hex value per the --color-ext-* convention above). */
|
|
547
|
+
--color-ext-00000008: #00000008;
|
|
548
|
+
--color-ext-0000000a: #0000000a;
|
|
549
|
+
--color-ext-0000000d: #0000000d;
|
|
550
|
+
--color-ext-0000001f: #0000001f;
|
|
551
|
+
--color-ext-00000021: #00000021;
|
|
552
|
+
--color-ext-00000059: #00000059;
|
|
553
|
+
--color-ext-00000061: #00000061;
|
|
554
|
+
--color-ext-00000066: #00000066;
|
|
555
|
+
--color-ext-00000080: #00000080;
|
|
556
|
+
--color-ext-0078d4: #0078d4;
|
|
557
|
+
--color-ext-0078d414: #0078d414;
|
|
558
|
+
--color-ext-00c6bf28: #00c6bf28;
|
|
559
|
+
--color-ext-027eb5: #027eb5;
|
|
560
|
+
--color-ext-064d44: #064d44;
|
|
561
|
+
--color-ext-075e54: #075e54;
|
|
562
|
+
--color-ext-0b141a14: #0b141a14;
|
|
563
|
+
--color-ext-0b141a1a: #0b141a1a;
|
|
564
|
+
--color-ext-0b141a21: #0b141a21;
|
|
565
|
+
--color-ext-0b141a80: #0b141a80;
|
|
566
|
+
--color-ext-0f172a0f: #0f172a0f;
|
|
567
|
+
--color-ext-0f172a14: #0f172a14;
|
|
568
|
+
--color-ext-101828: #101828;
|
|
569
|
+
--color-ext-111b21: #111b21;
|
|
570
|
+
--color-ext-1a1d35: #1a1d35;
|
|
571
|
+
--color-ext-1d6f42: #1d6f42;
|
|
572
|
+
--color-ext-1d6f4214: #1d6f4214;
|
|
573
|
+
--color-ext-1e1f4b: #1e1f4b;
|
|
574
|
+
--color-ext-1e234626: #1e234626;
|
|
575
|
+
--color-ext-1e234640: #1e234640;
|
|
576
|
+
--color-ext-25d366: #25d366;
|
|
577
|
+
--color-ext-25d3664d: #25d3664d;
|
|
578
|
+
--color-ext-26735226: #26735226;
|
|
579
|
+
--color-ext-292929: #292929;
|
|
580
|
+
--color-ext-2a2d55: #2a2d55;
|
|
581
|
+
--color-ext-363a6a: #363a6a;
|
|
582
|
+
--color-ext-3d41a0: #3d41a0;
|
|
583
|
+
--color-ext-454980: #454980;
|
|
584
|
+
--color-ext-494848: #494848;
|
|
585
|
+
--color-ext-4a4f9a: #4a4f9a;
|
|
586
|
+
--color-ext-555a6d: #555a6d;
|
|
587
|
+
--color-ext-5c62bc05: #5c62bc05;
|
|
588
|
+
--color-ext-5c62bc08: #5c62bc08;
|
|
589
|
+
--color-ext-5c62bc0a: #5c62bc0a;
|
|
590
|
+
--color-ext-5c62bc10: #5c62bc10;
|
|
591
|
+
--color-ext-5c62bc33: #5c62bc33;
|
|
592
|
+
--color-ext-5c62bc70: #5c62bc70;
|
|
593
|
+
--color-ext-5c62bc80: #5c62bc80;
|
|
594
|
+
--color-ext-5c62bc99: #5c62bc99;
|
|
595
|
+
--color-ext-5d5fef: #5d5fef;
|
|
596
|
+
--color-ext-5d62b504: #5d62b504;
|
|
597
|
+
--color-ext-5d62b50f: #5d62b50f;
|
|
598
|
+
--color-ext-5d62b515: #5d62b515;
|
|
599
|
+
--color-ext-5d62b51a: #5d62b51a;
|
|
600
|
+
--color-ext-5d62b524: #5d62b524;
|
|
601
|
+
--color-ext-5d62b52e: #5d62b52e;
|
|
602
|
+
--color-ext-5d62b566: #5d62b566;
|
|
603
|
+
--color-ext-5d62b6: #5d62b6;
|
|
604
|
+
--color-ext-63b58f14: #63b58f14;
|
|
605
|
+
--color-ext-666666: #666666;
|
|
606
|
+
--color-ext-667781: #667781;
|
|
607
|
+
--color-ext-6b6fd6: #6b6fd6;
|
|
608
|
+
--color-ext-7d7d7e: #7d7d7e;
|
|
609
|
+
--color-ext-888888: #888888;
|
|
610
|
+
--color-ext-98a2b3: #98a2b3;
|
|
611
|
+
--color-ext-9ca3af30: #9ca3af30;
|
|
612
|
+
--color-ext-9ca3afb3: #9ca3afb3;
|
|
613
|
+
--color-ext-a1a1a1: #a1a1a1;
|
|
614
|
+
--color-ext-aaaaaa: #aaaaaa;
|
|
615
|
+
--color-ext-b0b8c8: #b0b8c8;
|
|
616
|
+
--color-ext-c7c9e8: #c7c9e8;
|
|
617
|
+
--color-ext-c9cbcf: #c9cbcf;
|
|
618
|
+
--color-ext-d5d6f3: #d5d6f3;
|
|
619
|
+
--color-ext-d8d9ff: #d8d9ff;
|
|
620
|
+
--color-ext-d9d9d9: #d9d9d9;
|
|
621
|
+
--color-ext-e05c7d: #e05c7d;
|
|
622
|
+
--color-ext-e0daf0: #e0daf0;
|
|
623
|
+
--color-ext-e0f7f7: #e0f7f7;
|
|
624
|
+
--color-ext-e11d48: #e11d48;
|
|
625
|
+
--color-ext-e1e3f0: #e1e3f0;
|
|
626
|
+
--color-ext-e53935: #e53935;
|
|
627
|
+
--color-ext-e5393514: #e5393514;
|
|
628
|
+
--color-ext-e5ddd5: #e5ddd5;
|
|
629
|
+
--color-ext-e5e5e5: #e5e5e5;
|
|
630
|
+
--color-ext-e8eaed: #e8eaed;
|
|
631
|
+
--color-ext-e9eaec: #e9eaec;
|
|
632
|
+
--color-ext-e9f2ff: #e9f2ff;
|
|
633
|
+
--color-ext-eaebf4: #eaebf4;
|
|
634
|
+
--color-ext-ebebfc: #ebebfc;
|
|
635
|
+
--color-ext-ebfbfa: #ebfbfa;
|
|
636
|
+
--color-ext-ededf5: #ededf5;
|
|
637
|
+
--color-ext-eeeeee: #eeeeee;
|
|
638
|
+
--color-ext-f0efff: #f0efff;
|
|
639
|
+
--color-ext-f0f0f4: #f0f0f4;
|
|
640
|
+
--color-ext-f0f0f8: #f0f0f8;
|
|
641
|
+
--color-ext-f0f2f5: #f0f2f5;
|
|
642
|
+
--color-ext-f1f0f9: #f1f0f9;
|
|
643
|
+
--color-ext-f1f0ff: #f1f0ff;
|
|
644
|
+
--color-ext-f2726f0f: #f2726f0f;
|
|
645
|
+
--color-ext-f2f3f9: #f2f3f9;
|
|
646
|
+
--color-ext-f59e0b30: #f59e0b30;
|
|
647
|
+
--color-ext-f5f4fe: #f5f4fe;
|
|
648
|
+
--color-ext-f5f5fc: #f5f5fc;
|
|
649
|
+
--color-ext-f5f5ff: #f5f5ff;
|
|
650
|
+
--color-ext-f5f6f6: #f5f6f6;
|
|
651
|
+
--color-ext-f8f8fc: #f8f8fc;
|
|
652
|
+
--color-ext-f8f9fa: #f8f9fa;
|
|
653
|
+
--color-ext-f8fbff: #f8fbff;
|
|
654
|
+
--color-ext-faf9ff: #faf9ff;
|
|
655
|
+
--color-ext-fcf8ec: #fcf8ec;
|
|
656
|
+
--color-ext-ff686a50: #ff686a50;
|
|
657
|
+
--color-ext-ffc30008: #ffc30008;
|
|
658
|
+
--color-ext-ffc30018: #ffc30018;
|
|
659
|
+
--color-ext-ffc30030: #ffc30030;
|
|
660
|
+
--color-ext-ffc30040: #ffc30040;
|
|
661
|
+
--color-ext-fff9f0: #fff9f0;
|
|
662
|
+
--color-ext-ffffff: #fff;
|
|
663
|
+
--color-ext-ffffff0d: #ffffff0d;
|
|
664
|
+
--color-ext-ffffff14: #ffffff14;
|
|
665
|
+
--color-ext-ffffff1a: #ffffff1a;
|
|
666
|
+
--color-ext-ffffff1f: #ffffff1f;
|
|
667
|
+
--color-ext-ffffff26: #ffffff26;
|
|
668
|
+
--color-ext-ffffff80: #ffffff80;
|
|
669
|
+
--color-ext-ffffff99: #ffffff99;
|
|
670
|
+
--color-ext-ffffffcc: #ffffffcc;
|
|
671
|
+
|
|
672
|
+
/* Added during full-app color-token migration completion pass */
|
|
673
|
+
--color-ext-dc262640: #dc262640;
|
|
674
|
+
--color-ext-e9eaf0: #e9eaf0;
|
|
675
|
+
--color-ext-eef0ff: #eef0ff;
|
|
676
|
+
--color-ext-0d9c8f: #0d9c8f;
|
|
677
|
+
--color-ext-eef0f4: #eef0f4;
|
|
678
|
+
--color-ext-3a448b: #3A448B;
|
|
679
|
+
--color-ext-cad1e0: #cad1e0;
|
|
680
|
+
--color-ext-ddd: #ddd;
|
|
681
|
+
--color-ext-e9ecef: #e9ecef;
|
|
682
|
+
--color-ext-6b6fc4: #6B6FC4;
|
|
683
|
+
--color-ext-7b7fd4: #7B7FD4;
|
|
684
|
+
--color-ext-8e92dd: #8E92DD;
|
|
685
|
+
}
|