@etus/seven-skill 0.1.0-beta.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/.claude/skills/seven/SKILL.md +162 -0
- package/.claude/skills/seven/reference/audit.md +120 -0
- package/.claude/skills/seven/reference/brand.md +24 -0
- package/.claude/skills/seven/reference/clarify.md +76 -0
- package/.claude/skills/seven/reference/color-and-contrast.md +84 -0
- package/.claude/skills/seven/reference/motion-design.md +71 -0
- package/.claude/skills/seven/reference/polish.md +55 -0
- package/.claude/skills/seven/reference/product.md +45 -0
- package/.claude/skills/seven/reference/shape.md +85 -0
- package/.claude/skills/seven/reference/spatial-design.md +60 -0
- package/.claude/skills/seven/reference/typography.md +43 -0
- package/.claude/skills/seven/reference/ux-writing.md +47 -0
- package/.claude/skills/seven/scripts/load-context.mjs +84 -0
- package/.claude-plugin/marketplace.json +34 -0
- package/.claude-plugin/plugin.json +12 -0
- package/LICENSE +190 -0
- package/NOTICE.md +26 -0
- package/README.md +118 -0
- package/cli/bin/commands/skills.mjs +664 -0
- package/cli/bin/seven.mjs +68 -0
- package/cli/engine/browser/injected/index.mjs +84 -0
- package/cli/engine/cli/main.mjs +215 -0
- package/cli/engine/detect-antipatterns-browser.js +3014 -0
- package/cli/engine/detect-antipatterns.mjs +44 -0
- package/cli/engine/engines/browser/detect-url.mjs +108 -0
- package/cli/engine/engines/regex/detect-text.mjs +508 -0
- package/cli/engine/engines/static-html/css-cascade.mjs +957 -0
- package/cli/engine/engines/static-html/detect-html.mjs +211 -0
- package/cli/engine/engines/visual/screenshot-contrast.mjs +192 -0
- package/cli/engine/findings.mjs +28 -0
- package/cli/engine/node/file-system.mjs +212 -0
- package/cli/engine/profile/profiler.mjs +169 -0
- package/cli/engine/registry/seven-antipatterns.mjs +494 -0
- package/cli/engine/rules/checks.mjs +1518 -0
- package/cli/engine/shared/color.mjs +204 -0
- package/cli/engine/shared/constants.mjs +91 -0
- package/cli/engine/shared/page.mjs +9 -0
- package/cli/engine/shared/tokens.mjs +153 -0
- package/cli/engine/token-data.generated.mjs +691 -0
- package/docs/detector-rules.md +605 -0
- package/docs/figma-token-rule-exploration.md +185 -0
- package/package.json +76 -0
|
@@ -0,0 +1,691 @@
|
|
|
1
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
2
|
+
// ETUS Digital — Seven Design System.
|
|
3
|
+
//
|
|
4
|
+
// GENERATED — do not edit. Rebuild: node build/build-token-data.mjs
|
|
5
|
+
// Source: @etus/tokens (dist/tokens.meta.json). When @etus/tokens rebuilds
|
|
6
|
+
// from a Figma sync, regenerate this snapshot so the detector stays a mirror
|
|
7
|
+
// of the design system.
|
|
8
|
+
|
|
9
|
+
export const TOKEN_DATA = {
|
|
10
|
+
"colorByRgba": {
|
|
11
|
+
"0,0,0,1.00": "--base-black",
|
|
12
|
+
"0,0,0,0.20": "--base-black-20",
|
|
13
|
+
"0,0,0,0.40": "--base-black-40",
|
|
14
|
+
"0,0,0,0.60": "--base-black-60",
|
|
15
|
+
"0,0,0,0.80": "--base-black-80",
|
|
16
|
+
"0,0,0,0.00": "--base-transparent",
|
|
17
|
+
"255,255,255,1.00": "--base-white",
|
|
18
|
+
"219,234,254,1.00": "--blue-100",
|
|
19
|
+
"191,219,254,1.00": "--blue-200",
|
|
20
|
+
"147,197,253,1.00": "--blue-300",
|
|
21
|
+
"96,165,250,1.00": "--blue-400",
|
|
22
|
+
"239,246,255,1.00": "--blue-50",
|
|
23
|
+
"59,130,246,1.00": "--blue-500",
|
|
24
|
+
"37,99,235,1.00": "--blue-600",
|
|
25
|
+
"29,78,216,1.00": "--blue-700",
|
|
26
|
+
"30,64,175,1.00": "--blue-800",
|
|
27
|
+
"30,58,138,1.00": "--blue-900",
|
|
28
|
+
"23,37,84,1.00": "--blue-950",
|
|
29
|
+
"6,110,62,1.00": "--brand-green-dark",
|
|
30
|
+
"178,250,153,1.00": "--brand-green-light",
|
|
31
|
+
"141,247,104,1.00": "--brand-green-primary",
|
|
32
|
+
"59,228,118,1.00": "--brand-green-secondary",
|
|
33
|
+
"218,253,206,1.00": "--brand-green-soft",
|
|
34
|
+
"21,21,20,1.00": "--brand-neutral-black",
|
|
35
|
+
"62,62,60,1.00": "--brand-neutral-dark",
|
|
36
|
+
"110,109,104,1.00": "--brand-neutral-gray-01",
|
|
37
|
+
"144,142,137,1.00": "--brand-neutral-gray-02",
|
|
38
|
+
"190,187,183,1.00": "--brand-neutral-gray-03",
|
|
39
|
+
"214,212,209,1.00": "--brand-neutral-gray-04",
|
|
40
|
+
"235,233,229,1.00": "--brand-neutral-gray-05",
|
|
41
|
+
"243,242,239,1.00": "--brand-neutral-gray-06",
|
|
42
|
+
"251,250,249,1.00": "--brand-neutral-off-white",
|
|
43
|
+
"209,250,235,1.00": "--brand-primary-100",
|
|
44
|
+
"163,245,214,1.00": "--brand-primary-200",
|
|
45
|
+
"117,240,194,1.00": "--brand-primary-300",
|
|
46
|
+
"71,235,173,1.00": "--brand-primary-400",
|
|
47
|
+
"232,253,245,1.00": "--brand-primary-50",
|
|
48
|
+
"25,230,153,1.00": "--brand-primary-500",
|
|
49
|
+
"20,184,122,1.00": "--brand-primary-600",
|
|
50
|
+
"15,138,92,1.00": "--brand-primary-700",
|
|
51
|
+
"10,92,61,1.00": "--brand-primary-800",
|
|
52
|
+
"5,46,31,1.00": "--brand-primary-900",
|
|
53
|
+
"2,23,15,1.00": "--brand-primary-950",
|
|
54
|
+
"238,254,234,1.00": "--brand-secondary-100",
|
|
55
|
+
"210,252,199,1.00": "--brand-secondary-200",
|
|
56
|
+
"189,251,171,1.00": "--brand-secondary-300",
|
|
57
|
+
"152,250,115,1.00": "--brand-secondary-400",
|
|
58
|
+
"247,254,245,1.00": "--brand-secondary-50",
|
|
59
|
+
"143,245,102,1.00": "--brand-secondary-500",
|
|
60
|
+
"110,190,77,1.00": "--brand-secondary-600",
|
|
61
|
+
"80,141,55,1.00": "--brand-secondary-700",
|
|
62
|
+
"50,92,34,1.00": "--brand-secondary-800",
|
|
63
|
+
"25,50,15,1.00": "--brand-secondary-900",
|
|
64
|
+
"12,30,6,1.00": "--brand-secondary-950",
|
|
65
|
+
"160,227,243,1.00": "--brand-secondary-blue-01",
|
|
66
|
+
"191,237,248,1.00": "--brand-secondary-blue-02",
|
|
67
|
+
"210,244,252,1.00": "--brand-secondary-blue-03",
|
|
68
|
+
"197,240,122,1.00": "--brand-secondary-green-01",
|
|
69
|
+
"215,244,164,1.00": "--brand-secondary-green-02",
|
|
70
|
+
"228,251,189,1.00": "--brand-secondary-green-03",
|
|
71
|
+
"245,179,216,1.00": "--brand-secondary-pink-01",
|
|
72
|
+
"250,209,232,1.00": "--brand-secondary-pink-02",
|
|
73
|
+
"253,222,239,1.00": "--brand-secondary-pink-03",
|
|
74
|
+
"240,238,122,1.00": "--brand-secondary-yellow-01",
|
|
75
|
+
"247,245,166,1.00": "--brand-secondary-yellow-02",
|
|
76
|
+
"253,251,190,1.00": "--brand-secondary-yellow-03",
|
|
77
|
+
"244,222,252,1.00": "--fuchsia-100",
|
|
78
|
+
"236,191,250,1.00": "--fuchsia-200",
|
|
79
|
+
"227,156,247,1.00": "--fuchsia-300",
|
|
80
|
+
"219,116,244,1.00": "--fuchsia-400",
|
|
81
|
+
"250,240,254,1.00": "--fuchsia-50",
|
|
82
|
+
"212,68,241,1.00": "--fuchsia-500",
|
|
83
|
+
"172,43,197,1.00": "--fuchsia-600",
|
|
84
|
+
"131,30,151,1.00": "--fuchsia-700",
|
|
85
|
+
"93,18,107,1.00": "--fuchsia-800",
|
|
86
|
+
"53,7,62,1.00": "--fuchsia-900",
|
|
87
|
+
"37,4,44,1.00": "--fuchsia-950",
|
|
88
|
+
"220,252,231,1.00": "--green-100",
|
|
89
|
+
"187,247,208,1.00": "--green-200",
|
|
90
|
+
"134,239,172,1.00": "--green-300",
|
|
91
|
+
"74,222,128,1.00": "--green-400",
|
|
92
|
+
"240,253,244,1.00": "--green-50",
|
|
93
|
+
"34,197,94,1.00": "--green-500",
|
|
94
|
+
"22,163,74,1.00": "--green-600",
|
|
95
|
+
"21,128,61,1.00": "--green-700",
|
|
96
|
+
"22,101,52,1.00": "--green-800",
|
|
97
|
+
"20,83,45,1.00": "--green-900",
|
|
98
|
+
"5,46,22,1.00": "--green-950",
|
|
99
|
+
"245,245,245,1.00": "--neutral-100",
|
|
100
|
+
"229,229,229,1.00": "--neutral-200",
|
|
101
|
+
"212,212,212,1.00": "--neutral-300",
|
|
102
|
+
"163,163,163,1.00": "--neutral-400",
|
|
103
|
+
"250,250,250,1.00": "--neutral-50",
|
|
104
|
+
"115,115,115,1.00": "--neutral-500",
|
|
105
|
+
"82,82,82,1.00": "--neutral-600",
|
|
106
|
+
"64,64,64,1.00": "--neutral-700",
|
|
107
|
+
"38,38,38,1.00": "--neutral-800",
|
|
108
|
+
"23,23,23,1.00": "--neutral-900",
|
|
109
|
+
"10,10,10,1.00": "--neutral-950",
|
|
110
|
+
"254,226,226,1.00": "--red-100",
|
|
111
|
+
"254,202,202,1.00": "--red-200",
|
|
112
|
+
"252,165,165,1.00": "--red-300",
|
|
113
|
+
"248,113,113,1.00": "--red-400",
|
|
114
|
+
"254,242,242,1.00": "--red-50",
|
|
115
|
+
"239,68,68,1.00": "--red-500",
|
|
116
|
+
"220,38,38,1.00": "--red-600",
|
|
117
|
+
"185,28,28,1.00": "--red-700",
|
|
118
|
+
"153,27,27,1.00": "--red-800",
|
|
119
|
+
"127,29,29,1.00": "--red-900",
|
|
120
|
+
"69,10,10,1.00": "--red-950",
|
|
121
|
+
"254,249,195,1.00": "--yellow-100",
|
|
122
|
+
"254,240,138,1.00": "--yellow-200",
|
|
123
|
+
"253,224,71,1.00": "--yellow-300",
|
|
124
|
+
"250,204,21,1.00": "--yellow-400",
|
|
125
|
+
"254,252,232,1.00": "--yellow-50",
|
|
126
|
+
"234,179,8,1.00": "--yellow-500",
|
|
127
|
+
"202,138,4,1.00": "--yellow-600",
|
|
128
|
+
"161,98,7,1.00": "--yellow-700",
|
|
129
|
+
"133,77,14,1.00": "--yellow-800",
|
|
130
|
+
"113,63,18,1.00": "--yellow-900",
|
|
131
|
+
"66,32,6,1.00": "--yellow-950",
|
|
132
|
+
"148,163,184,1.00": "--asset-palette-status-draft-color",
|
|
133
|
+
"100,116,139,1.00": "--asset-palette-type-archive-color",
|
|
134
|
+
"100,116,139,0.18": "--asset-palette-type-archive-tint",
|
|
135
|
+
"6,182,212,1.00": "--asset-palette-type-audio-color",
|
|
136
|
+
"6,182,212,0.16": "--asset-palette-type-audio-tint",
|
|
137
|
+
"236,72,153,1.00": "--asset-palette-type-code-css-color",
|
|
138
|
+
"236,72,153,0.14": "--asset-palette-type-code-css-tint",
|
|
139
|
+
"234,179,8,0.16": "--asset-palette-type-code-js-tint",
|
|
140
|
+
"167,139,250,1.00": "--asset-palette-type-code-json-color",
|
|
141
|
+
"167,139,250,0.16": "--asset-palette-type-code-json-tint",
|
|
142
|
+
"59,130,246,0.14": "--asset-palette-type-code-ts-tint",
|
|
143
|
+
"56,189,248,1.00": "--asset-palette-type-code-tsx-color",
|
|
144
|
+
"56,189,248,0.14": "--asset-palette-type-code-tsx-tint",
|
|
145
|
+
"167,139,250,0.18": "--asset-palette-type-design-figma-tint",
|
|
146
|
+
"234,179,8,0.18": "--asset-palette-type-design-illustrator-tint",
|
|
147
|
+
"59,130,246,0.16": "--asset-palette-type-design-raster-tint",
|
|
148
|
+
"220,38,38,0.14": "--asset-palette-type-doc-pdf-tint",
|
|
149
|
+
"37,99,235,0.16": "--asset-palette-type-doc-text-tint",
|
|
150
|
+
"249,115,22,1.00": "--asset-palette-type-image-color",
|
|
151
|
+
"249,115,22,0.16": "--asset-palette-type-image-tint",
|
|
152
|
+
"25,230,153,0.18": "--asset-palette-type-vector-tint",
|
|
153
|
+
"239,68,68,0.16": "--asset-palette-type-video-tint",
|
|
154
|
+
"0,0,0,0.08": "--avatar-border-contrast",
|
|
155
|
+
"217,119,6,1.00": "--border-semantic-warning",
|
|
156
|
+
"255,255,255,0.95": "--feed-item-background-highlight",
|
|
157
|
+
"255,255,255,0.90": "--lightbox-button-background",
|
|
158
|
+
"255,255,255,0.80": "--lightbox-button-background-hover",
|
|
159
|
+
"255,255,255,0.10": "--lightbox-overlay-background",
|
|
160
|
+
"255,215,168,1.00": "--priority-high-bg",
|
|
161
|
+
"144,53,0,1.00": "--priority-high-text",
|
|
162
|
+
"234,239,245,1.00": "--priority-low-bg",
|
|
163
|
+
"105,115,125,1.00": "--priority-low-text",
|
|
164
|
+
"253,232,154,1.00": "--priority-medium-bg",
|
|
165
|
+
"112,81,0,1.00": "--priority-medium-text",
|
|
166
|
+
"255,212,205,1.00": "--priority-urgent-bg",
|
|
167
|
+
"162,5,25,1.00": "--priority-urgent-text",
|
|
168
|
+
"0,0,0,0.30": "--sheet-overlay-bg-blur",
|
|
169
|
+
"255,255,255,0.50": "--sheet-overlay-bg-light",
|
|
170
|
+
"199,247,199,1.00": "--status-approved-bg",
|
|
171
|
+
"0,139,29,1.00": "--status-approved-dot",
|
|
172
|
+
"0,90,0,1.00": "--status-approved-text",
|
|
173
|
+
"149,160,171,1.00": "--status-cancelled-dot",
|
|
174
|
+
"134,144,155,1.00": "--status-cancelled-text",
|
|
175
|
+
"255,227,153,1.00": "--status-changes-requested-bg",
|
|
176
|
+
"209,146,0,1.00": "--status-changes-requested-dot",
|
|
177
|
+
"122,74,0,1.00": "--status-changes-requested-text",
|
|
178
|
+
"230,98,0,1.00": "--status-escalated-dot",
|
|
179
|
+
"119,129,140,1.00": "--status-expired-text",
|
|
180
|
+
"192,237,255,1.00": "--status-in-review-bg",
|
|
181
|
+
"0,130,230,1.00": "--status-in-review-dot",
|
|
182
|
+
"0,86,164,1.00": "--status-in-review-text",
|
|
183
|
+
"212,9,36,1.00": "--status-rejected-dot",
|
|
184
|
+
"194,154,0,1.00": "--task-status-in-review-dot",
|
|
185
|
+
"224,229,235,1.00": "--task-status-todo-bg",
|
|
186
|
+
"133,97,221,1.00": "--tip",
|
|
187
|
+
"244,241,255,1.00": "--tip-bg"
|
|
188
|
+
},
|
|
189
|
+
"colorByRaw": {
|
|
190
|
+
"oklch(0.00% 0.0000 0)": "--base-black",
|
|
191
|
+
"oklch(0.00% 0.0000 0 / 20.0%)": "--base-black-20",
|
|
192
|
+
"oklch(0.00% 0.0000 0 / 40.0%)": "--base-black-40",
|
|
193
|
+
"oklch(0.00% 0.0000 0 / 60.0%)": "--sheet-overlay-bg-default",
|
|
194
|
+
"oklch(0.00% 0.0000 0 / 80.0%)": "--overlay",
|
|
195
|
+
"oklch(0.00% 0.0000 0 / 0.0%)": "--base-transparent",
|
|
196
|
+
"oklch(100.00% 0.0000 0)": "--tooltip-content-foreground",
|
|
197
|
+
"oklch(93.19% 0.0316 255.59)": "--blue-100",
|
|
198
|
+
"oklch(88.23% 0.0571 254.13)": "--alert-variant-info-border",
|
|
199
|
+
"oklch(80.91% 0.0956 251.81)": "--status-info-subtle-foreground",
|
|
200
|
+
"oklch(71.37% 0.1434 254.62)": "--blue-400",
|
|
201
|
+
"oklch(97.05% 0.0142 254.60)": "--featured-icon-color-info-bg",
|
|
202
|
+
"oklch(62.31% 0.1880 259.81)": "--color-firefox",
|
|
203
|
+
"oklch(54.61% 0.2152 262.88)": "--status-indicator-dot-color-info",
|
|
204
|
+
"oklch(48.82% 0.2172 264.38)": "--feature-item-tone-info-fg",
|
|
205
|
+
"oklch(42.44% 0.1809 265.64)": "--status-info-border",
|
|
206
|
+
"oklch(37.91% 0.1378 265.52)": "--blue-900",
|
|
207
|
+
"oklch(28.23% 0.0874 267.94)": "--status-info-subtle",
|
|
208
|
+
"oklch(47.37% 0.1147 155.11)": "--brand-green-dark",
|
|
209
|
+
"oklch(91.50% 0.1458 137.94)": "--brand-green-light",
|
|
210
|
+
"oklch(88.23% 0.2057 138.41)": "--brand-green-primary",
|
|
211
|
+
"oklch(81.06% 0.2032 150.12)": "--brand-green-secondary",
|
|
212
|
+
"oklch(95.70% 0.0719 137.74)": "--brand-green-soft",
|
|
213
|
+
"oklch(19.53% 0.0020 106.58)": "--brand-neutral-black",
|
|
214
|
+
"oklch(36.32% 0.0034 106.57)": "--brand-neutral-dark",
|
|
215
|
+
"oklch(53.41% 0.0078 97.45)": "--brand-neutral-gray-01",
|
|
216
|
+
"oklch(64.69% 0.0077 88.67)": "--brand-neutral-gray-02",
|
|
217
|
+
"oklch(79.33% 0.0065 75.40)": "--brand-neutral-gray-03",
|
|
218
|
+
"oklch(87.07% 0.0047 78.30)": "--brand-neutral-gray-04",
|
|
219
|
+
"oklch(93.45% 0.0058 84.57)": "--brand-neutral-gray-05",
|
|
220
|
+
"oklch(96.11% 0.0041 91.45)": "--brand-neutral-gray-06",
|
|
221
|
+
"oklch(98.56% 0.0017 67.80)": "--brand-neutral-off-white",
|
|
222
|
+
"oklch(95.21% 0.0467 171.12)": "--toggle-variant-default-bg-on",
|
|
223
|
+
"oklch(90.88% 0.0912 168.55)": "--primary-border",
|
|
224
|
+
"oklch(87.18% 0.1296 166.48)": "--primary-subtle-foreground",
|
|
225
|
+
"oklch(84.11% 0.1609 163.31)": "--sidebar-ring",
|
|
226
|
+
"oklch(97.65% 0.0243 170.99)": "--surface-selected",
|
|
227
|
+
"oklch(81.75% 0.1821 159.79)": "--toggle-variant-outline-bg-on",
|
|
228
|
+
"oklch(69.20% 0.1533 159.90)": "--spinner-gradient-end",
|
|
229
|
+
"oklch(56.08% 0.1221 160.56)": "--feature-item-tone-subtle-fg",
|
|
230
|
+
"oklch(42.11% 0.0897 161.06)": "--primary-border",
|
|
231
|
+
"oklch(26.88% 0.0527 163.85)": "--select-item-focus-fg",
|
|
232
|
+
"oklch(18.34% 0.0338 166.67)": "--toggle-variant-outline-color-on",
|
|
233
|
+
"oklch(97.98% 0.0312 139.44)": "--secondary-foreground",
|
|
234
|
+
"oklch(94.80% 0.0824 139.21)": "--secondary-border",
|
|
235
|
+
"oklch(92.69% 0.1227 138.76)": "--secondary-subtle-foreground",
|
|
236
|
+
"oklch(89.58% 0.1950 137.90)": "--brand-secondary-background",
|
|
237
|
+
"oklch(98.93% 0.0139 138.71)": "--secondary-subtle",
|
|
238
|
+
"oklch(87.82% 0.2037 137.75)": "--tags-input-tag-background",
|
|
239
|
+
"oklch(72.57% 0.1684 137.62)": "--button-secondary-color-border-hover",
|
|
240
|
+
"oklch(58.24% 0.1354 137.66)": "--focus-ring-secondary-color",
|
|
241
|
+
"oklch(42.97% 0.0993 137.99)": "--secondary-hover",
|
|
242
|
+
"oklch(28.73% 0.0661 137.75)": "--secondary",
|
|
243
|
+
"oklch(21.23% 0.0502 138.22)": "--tags-input-tag-foreground",
|
|
244
|
+
"oklch(87.65% 0.0705 214.23)": "--brand-secondary-blue-01",
|
|
245
|
+
"oklch(91.74% 0.0496 213.90)": "--brand-secondary-blue-02",
|
|
246
|
+
"oklch(94.53% 0.0369 213.51)": "--brand-secondary-blue-03",
|
|
247
|
+
"oklch(89.98% 0.1534 125.85)": "--brand-secondary-green-01",
|
|
248
|
+
"oklch(92.74% 0.1074 124.65)": "--brand-secondary-green-02",
|
|
249
|
+
"oklch(95.61% 0.0839 124.49)": "--brand-secondary-green-03",
|
|
250
|
+
"oklch(83.87% 0.0897 344.52)": "--brand-secondary-pink-01",
|
|
251
|
+
"oklch(90.22% 0.0546 343.48)": "--brand-secondary-pink-02",
|
|
252
|
+
"oklch(93.10% 0.0406 343.74)": "--brand-secondary-pink-03",
|
|
253
|
+
"oklch(92.74% 0.1387 107.93)": "--brand-secondary-yellow-01",
|
|
254
|
+
"oklch(95.38% 0.0993 106.91)": "--brand-secondary-yellow-02",
|
|
255
|
+
"oklch(97.51% 0.0778 106.19)": "--brand-secondary-yellow-03",
|
|
256
|
+
"oklch(92.74% 0.0464 317.08)": "--fuchsia-100",
|
|
257
|
+
"oklch(86.29% 0.0932 318.07)": "--fuchsia-200",
|
|
258
|
+
"oklch(79.32% 0.1454 318.64)": "--fuchsia-300",
|
|
259
|
+
"oklch(72.33% 0.2034 319.49)": "--fuchsia-400",
|
|
260
|
+
"oklch(96.70% 0.0213 316.46)": "--fuchsia-50",
|
|
261
|
+
"oklch(65.95% 0.2608 320.32)": "--color-safari",
|
|
262
|
+
"oklch(55.67% 0.2346 320.38)": "--fuchsia-600",
|
|
263
|
+
"oklch(45.62% 0.1930 320.21)": "--fuchsia-700",
|
|
264
|
+
"oklch(35.68% 0.1512 320.61)": "--fuchsia-800",
|
|
265
|
+
"oklch(24.61% 0.1035 320.37)": "--fuchsia-900",
|
|
266
|
+
"oklch(19.86% 0.0826 320.14)": "--fuchsia-950",
|
|
267
|
+
"oklch(96.24% 0.0434 156.74)": "--green-100",
|
|
268
|
+
"oklch(92.50% 0.0806 155.99)": "--alert-variant-success-border",
|
|
269
|
+
"oklch(87.12% 0.1363 154.45)": "--success-subtle-foreground",
|
|
270
|
+
"oklch(80.03% 0.1821 151.71)": "--green-400",
|
|
271
|
+
"oklch(98.19% 0.0181 155.83)": "--featured-icon-color-success-bg",
|
|
272
|
+
"oklch(72.27% 0.1920 149.58)": "--success",
|
|
273
|
+
"oklch(62.71% 0.1699 149.21)": "--timeline-marker-color-success",
|
|
274
|
+
"oklch(52.73% 0.1371 150.07)": "--alert-variant-success-fg",
|
|
275
|
+
"oklch(44.79% 0.1083 151.33)": "--status-success-border",
|
|
276
|
+
"oklch(39.25% 0.0896 152.54)": "--green-900",
|
|
277
|
+
"oklch(26.64% 0.0628 152.93)": "--success-subtle",
|
|
278
|
+
"oklch(97.02% 0.0000 0)": "--topbar-root-background",
|
|
279
|
+
"oklch(92.19% 0.0000 0)": "--topbar-root-border-color",
|
|
280
|
+
"oklch(86.99% 0.0000 0)": "--text-disabled",
|
|
281
|
+
"oklch(71.55% 0.0000 0)": "--border-semantic-strong",
|
|
282
|
+
"oklch(98.51% 0.0000 0)": "--surface-sunken",
|
|
283
|
+
"oklch(55.55% 0.0000 0)": "--toolbar-button-foreground-muted",
|
|
284
|
+
"oklch(43.86% 0.0000 0)": "--status-disabled-foreground",
|
|
285
|
+
"oklch(37.15% 0.0000 0)": "--status-disabled-border",
|
|
286
|
+
"oklch(26.86% 0.0000 0)": "--status-disabled-disabled",
|
|
287
|
+
"oklch(20.46% 0.0000 0)": "--slider-tooltip-fg",
|
|
288
|
+
"oklch(14.48% 0.0000 0)": "--tooltip-content-background",
|
|
289
|
+
"oklch(93.56% 0.0309 17.72)": "--red-100",
|
|
290
|
+
"oklch(88.45% 0.0593 18.33)": "--alert-variant-destructive-border",
|
|
291
|
+
"oklch(80.77% 0.1035 19.57)": "--status-destructive-subtle-foreground",
|
|
292
|
+
"oklch(71.06% 0.1661 22.22)": "--status-destructive-hover",
|
|
293
|
+
"oklch(97.05% 0.0129 17.38)": "--featured-icon-color-destructive-bg",
|
|
294
|
+
"oklch(63.68% 0.2078 25.33)": "--timeline-marker-color-error",
|
|
295
|
+
"oklch(57.71% 0.2152 27.33)": "--asset-palette-type-doc-pdf-color",
|
|
296
|
+
"oklch(50.54% 0.1905 27.52)": "--alert-variant-destructive-fg",
|
|
297
|
+
"oklch(44.37% 0.1613 26.90)": "--status-destructive-border",
|
|
298
|
+
"oklch(39.58% 0.1331 25.72)": "--red-900",
|
|
299
|
+
"oklch(25.75% 0.0886 26.04)": "--status-destructive-subtle",
|
|
300
|
+
"oklch(97.29% 0.0693 103.19)": "--yellow-100",
|
|
301
|
+
"oklch(94.51% 0.1243 101.54)": "--alert-variant-warning-border",
|
|
302
|
+
"oklch(90.52% 0.1657 98.11)": "--warning-subtle-foreground",
|
|
303
|
+
"oklch(86.06% 0.1731 91.94)": "--timeline-marker-color-warning",
|
|
304
|
+
"oklch(98.73% 0.0262 102.21)": "--featured-icon-color-warning-bg",
|
|
305
|
+
"oklch(79.52% 0.1617 86.05)": "--asset-palette-type-design-illustrator-color",
|
|
306
|
+
"oklch(68.06% 0.1423 75.83)": "--text-warning",
|
|
307
|
+
"oklch(55.38% 0.1207 66.44)": "--feature-item-tone-warning-fg",
|
|
308
|
+
"oklch(47.62% 0.1034 61.91)": "--status-warning-border",
|
|
309
|
+
"oklch(42.10% 0.0897 57.71)": "--yellow-900",
|
|
310
|
+
"oklch(28.57% 0.0639 53.81)": "--badge-color-warning-fg",
|
|
311
|
+
"transparent": "--toggle-variant-outline-bg-default",
|
|
312
|
+
"oklch(71.07% 0.0351 256.79)": "--asset-palette-status-draft-color",
|
|
313
|
+
"oklch(55.44% 0.0407 257.42)": "--asset-palette-type-code-env-color",
|
|
314
|
+
"rgb(100 116 139 / 0.18)": "--asset-palette-type-code-env-tint",
|
|
315
|
+
"oklch(71.48% 0.1257 215.22)": "--asset-palette-type-audio-color",
|
|
316
|
+
"rgb(6 182 212 / 0.16)": "--asset-palette-type-audio-tint",
|
|
317
|
+
"oklch(65.59% 0.2118 354.31)": "--asset-palette-type-code-css-color",
|
|
318
|
+
"rgb(236 72 153 / 0.14)": "--asset-palette-type-code-css-tint",
|
|
319
|
+
"rgb(234 179 8 / 0.16)": "--asset-palette-type-code-js-tint",
|
|
320
|
+
"oklch(70.90% 0.1592 293.54)": "--asset-palette-type-design-figma-color",
|
|
321
|
+
"rgb(167 139 250 / 0.16)": "--asset-palette-type-code-json-tint",
|
|
322
|
+
"rgb(59 130 246 / 0.14)": "--asset-palette-type-code-ts-tint",
|
|
323
|
+
"oklch(75.35% 0.1390 232.66)": "--asset-palette-type-code-tsx-color",
|
|
324
|
+
"rgb(56 189 248 / 0.14)": "--asset-palette-type-code-tsx-tint",
|
|
325
|
+
"rgb(167 139 250 / 0.18)": "--asset-palette-type-design-figma-tint",
|
|
326
|
+
"rgb(234 179 8 / 0.18)": "--asset-palette-type-design-illustrator-tint",
|
|
327
|
+
"rgb(59 130 246 / 0.16)": "--asset-palette-type-design-raster-tint",
|
|
328
|
+
"rgb(220 38 38 / 0.14)": "--asset-palette-type-doc-pdf-tint",
|
|
329
|
+
"rgb(37 99 235 / 0.16)": "--asset-palette-type-doc-text-tint",
|
|
330
|
+
"oklch(70.49% 0.1867 47.60)": "--asset-palette-type-image-color",
|
|
331
|
+
"rgb(249 115 22 / 0.16)": "--asset-palette-type-image-tint",
|
|
332
|
+
"rgb(25 230 153 / 0.18)": "--asset-palette-type-vector-tint",
|
|
333
|
+
"rgb(239 68 68 / 0.16)": "--asset-palette-type-video-tint",
|
|
334
|
+
"rgba(0, 0, 0, 0.08)": "--avatar-border-contrast",
|
|
335
|
+
"oklch(66.58% 0.1574 58.32)": "--border-semantic-warning",
|
|
336
|
+
"oklch(100.00% 0.0000 0 / 94.9%)": "--feed-item-background-highlight",
|
|
337
|
+
"9999px": "--image-rounded-circle",
|
|
338
|
+
"0.375rem": "--image-rounded-rounded",
|
|
339
|
+
"oklch(100.00% 0.0000 0 / 90.2%)": "--lightbox-button-background",
|
|
340
|
+
"oklch(100.00% 0.0000 0 / 80.0%)": "--split-button-divider-color-contrast",
|
|
341
|
+
"oklch(100.00% 0.0000 0 / 10.2%)": "--lightbox-overlay-background",
|
|
342
|
+
"oklch(93% 0.10 55)": "--status-escalated-bg",
|
|
343
|
+
"oklch(45% 0.15 55)": "--status-escalated-text",
|
|
344
|
+
"oklch(95% 0.01 250)": "--task-status-backlog-bg",
|
|
345
|
+
"oklch(55% 0.02 250)": "--task-status-todo-text",
|
|
346
|
+
"oklch(93% 0.10 95)": "--task-status-in-review-bg",
|
|
347
|
+
"oklch(45% 0.15 95)": "--task-status-in-review-text",
|
|
348
|
+
"oklch(93% 0.08 25)": "--task-status-blocked-bg",
|
|
349
|
+
"oklch(45% 0.18 25)": "--task-status-blocked-text",
|
|
350
|
+
"oklch(0% 0 0 / 30%)": "--sheet-overlay-bg-blur",
|
|
351
|
+
"oklch(100% 0 0 / 50%)": "--sheet-overlay-bg-light",
|
|
352
|
+
"oklch(93% 0.08 145)": "--task-status-done-bg",
|
|
353
|
+
"oklch(55% 0.18 145)": "--task-status-done-dot",
|
|
354
|
+
"oklch(40% 0.15 145)": "--task-status-done-text",
|
|
355
|
+
"oklch(70% 0.02 250)": "--task-status-todo-dot",
|
|
356
|
+
"oklch(65% 0.02 250)": "--status-pending-dot",
|
|
357
|
+
"oklch(93% 0.10 85)": "--status-changes-requested-bg",
|
|
358
|
+
"oklch(70% 0.18 85)": "--status-changes-requested-dot",
|
|
359
|
+
"oklch(45% 0.15 85)": "--status-changes-requested-text",
|
|
360
|
+
"oklch(65% 0.20 55)": "--status-escalated-dot",
|
|
361
|
+
"oklch(60% 0.02 250)": "--task-status-backlog-text",
|
|
362
|
+
"oklch(93% 0.08 250)": "--task-status-in-progress-bg",
|
|
363
|
+
"oklch(60% 0.18 250)": "--task-status-in-progress-dot",
|
|
364
|
+
"oklch(45% 0.15 250)": "--task-status-in-progress-text",
|
|
365
|
+
"oklch(55% 0.22 25)": "--task-status-blocked-dot",
|
|
366
|
+
"oklch(70% 0.18 95)": "--task-status-in-review-dot",
|
|
367
|
+
"oklch(92% 0.01 250)": "--task-status-todo-bg",
|
|
368
|
+
"oklch(58.97% 0.1820 293.54)": "--tip",
|
|
369
|
+
"oklch(96.50% 0.0250 293.54)": "--tip-bg"
|
|
370
|
+
},
|
|
371
|
+
"fontFamilies": [
|
|
372
|
+
"inter"
|
|
373
|
+
],
|
|
374
|
+
"radii": {
|
|
375
|
+
"all": [
|
|
376
|
+
0,
|
|
377
|
+
1,
|
|
378
|
+
1.5,
|
|
379
|
+
2,
|
|
380
|
+
3,
|
|
381
|
+
4,
|
|
382
|
+
5,
|
|
383
|
+
6,
|
|
384
|
+
7,
|
|
385
|
+
8,
|
|
386
|
+
10,
|
|
387
|
+
12,
|
|
388
|
+
13,
|
|
389
|
+
14,
|
|
390
|
+
16,
|
|
391
|
+
20,
|
|
392
|
+
24,
|
|
393
|
+
32,
|
|
394
|
+
999,
|
|
395
|
+
9999
|
|
396
|
+
],
|
|
397
|
+
"component": [
|
|
398
|
+
1,
|
|
399
|
+
1.5,
|
|
400
|
+
2,
|
|
401
|
+
3,
|
|
402
|
+
4,
|
|
403
|
+
5,
|
|
404
|
+
6,
|
|
405
|
+
7,
|
|
406
|
+
8,
|
|
407
|
+
10,
|
|
408
|
+
12
|
|
409
|
+
],
|
|
410
|
+
"surface": [
|
|
411
|
+
13,
|
|
412
|
+
14,
|
|
413
|
+
16,
|
|
414
|
+
20,
|
|
415
|
+
24,
|
|
416
|
+
32
|
|
417
|
+
],
|
|
418
|
+
"pill": [
|
|
419
|
+
999,
|
|
420
|
+
9999
|
|
421
|
+
]
|
|
422
|
+
},
|
|
423
|
+
"fontSizesPx": [
|
|
424
|
+
10,
|
|
425
|
+
12,
|
|
426
|
+
13,
|
|
427
|
+
14,
|
|
428
|
+
16,
|
|
429
|
+
18,
|
|
430
|
+
20,
|
|
431
|
+
24,
|
|
432
|
+
30,
|
|
433
|
+
32,
|
|
434
|
+
36,
|
|
435
|
+
48,
|
|
436
|
+
60,
|
|
437
|
+
72,
|
|
438
|
+
96
|
|
439
|
+
],
|
|
440
|
+
"lineHeights": [
|
|
441
|
+
"1",
|
|
442
|
+
"1.25",
|
|
443
|
+
"1.375",
|
|
444
|
+
"1.5",
|
|
445
|
+
"1.55",
|
|
446
|
+
"1.625",
|
|
447
|
+
"104px",
|
|
448
|
+
"14px",
|
|
449
|
+
"16px",
|
|
450
|
+
"2",
|
|
451
|
+
"20px",
|
|
452
|
+
"24px",
|
|
453
|
+
"28px",
|
|
454
|
+
"32px",
|
|
455
|
+
"36px",
|
|
456
|
+
"40px",
|
|
457
|
+
"44px",
|
|
458
|
+
"56px",
|
|
459
|
+
"68px",
|
|
460
|
+
"80px"
|
|
461
|
+
],
|
|
462
|
+
"letterSpacings": [
|
|
463
|
+
"-0.025em",
|
|
464
|
+
"-0.05em",
|
|
465
|
+
"0.025em",
|
|
466
|
+
"0.05em",
|
|
467
|
+
"0.1em",
|
|
468
|
+
"0em"
|
|
469
|
+
],
|
|
470
|
+
"durations": {
|
|
471
|
+
"--duration-fast": "100ms",
|
|
472
|
+
"--duration-instant": "0ms",
|
|
473
|
+
"--duration-moderate": "300ms",
|
|
474
|
+
"--duration-normal": "200ms",
|
|
475
|
+
"--duration-slow": "300ms",
|
|
476
|
+
"--duration-slower": "500ms",
|
|
477
|
+
"--duration-slowest": "700ms",
|
|
478
|
+
"--accordion-icon-transition-duration": "200ms",
|
|
479
|
+
"--button-transition-duration": "150ms"
|
|
480
|
+
},
|
|
481
|
+
"easings": {
|
|
482
|
+
"--ease-bounce": "cubic-bezier(0.68, -0.55, 0.265, 1.55)",
|
|
483
|
+
"--ease-default": "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
484
|
+
"--ease-emphasized": "cubic-bezier(0.2, 0, 0, 1)",
|
|
485
|
+
"--ease-in": "cubic-bezier(0.4, 0, 1, 1)",
|
|
486
|
+
"--ease-in-out": "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
487
|
+
"--ease-linear": "cubic-bezier(0, 0, 1, 1)",
|
|
488
|
+
"--ease-out": "cubic-bezier(0, 0, 0.2, 1)",
|
|
489
|
+
"--ease-spring": "cubic-bezier(0.34, 1.56, 0.64, 1)"
|
|
490
|
+
},
|
|
491
|
+
"shadows": [
|
|
492
|
+
"--button-shadow-default",
|
|
493
|
+
"--button-shadow-sm",
|
|
494
|
+
"--button-shadow-xs",
|
|
495
|
+
"--card-root-shadow-lg",
|
|
496
|
+
"--card-root-shadow-sm",
|
|
497
|
+
"--card-root-shadow-xl",
|
|
498
|
+
"--collection-batchbar-shadow",
|
|
499
|
+
"--filetree-footer-dot-ring",
|
|
500
|
+
"--focus-ring-destructive-shadow",
|
|
501
|
+
"--focus-ring-ghost-shadow",
|
|
502
|
+
"--focus-ring-outline-shadow",
|
|
503
|
+
"--focus-ring-primary-shadow",
|
|
504
|
+
"--focus-ring-secondary-shadow",
|
|
505
|
+
"--shadow-lg",
|
|
506
|
+
"--shadow-md",
|
|
507
|
+
"--shadow-sm",
|
|
508
|
+
"--shadow-xl",
|
|
509
|
+
"--shadow-xs",
|
|
510
|
+
"--slider-thumb-drop-shadow"
|
|
511
|
+
],
|
|
512
|
+
"spacingPx": [
|
|
513
|
+
0,
|
|
514
|
+
1,
|
|
515
|
+
2,
|
|
516
|
+
4,
|
|
517
|
+
8,
|
|
518
|
+
12,
|
|
519
|
+
16,
|
|
520
|
+
20,
|
|
521
|
+
24,
|
|
522
|
+
32,
|
|
523
|
+
40,
|
|
524
|
+
48,
|
|
525
|
+
56,
|
|
526
|
+
64,
|
|
527
|
+
80,
|
|
528
|
+
96,
|
|
529
|
+
128,
|
|
530
|
+
160,
|
|
531
|
+
192,
|
|
532
|
+
224,
|
|
533
|
+
256
|
|
534
|
+
],
|
|
535
|
+
"semanticColorVars": [
|
|
536
|
+
"--accent",
|
|
537
|
+
"--accent-foreground",
|
|
538
|
+
"--background",
|
|
539
|
+
"--border",
|
|
540
|
+
"--brand-accent-background",
|
|
541
|
+
"--brand-accent-foreground",
|
|
542
|
+
"--brand-primary-active",
|
|
543
|
+
"--brand-primary-background",
|
|
544
|
+
"--brand-primary-border",
|
|
545
|
+
"--brand-primary-foreground",
|
|
546
|
+
"--brand-primary-hover",
|
|
547
|
+
"--brand-primary-subtle",
|
|
548
|
+
"--brand-primary-subtle-foreground",
|
|
549
|
+
"--brand-secondary-active",
|
|
550
|
+
"--brand-secondary-background",
|
|
551
|
+
"--brand-secondary-border",
|
|
552
|
+
"--brand-secondary-foreground",
|
|
553
|
+
"--brand-secondary-hover",
|
|
554
|
+
"--brand-secondary-subtle",
|
|
555
|
+
"--brand-secondary-subtle-foreground",
|
|
556
|
+
"--card",
|
|
557
|
+
"--card-foreground",
|
|
558
|
+
"--chart-1",
|
|
559
|
+
"--chart-2",
|
|
560
|
+
"--chart-3",
|
|
561
|
+
"--chart-4",
|
|
562
|
+
"--chart-5",
|
|
563
|
+
"--core-background-background",
|
|
564
|
+
"--core-background-card",
|
|
565
|
+
"--core-background-card-foreground",
|
|
566
|
+
"--core-background-foreground",
|
|
567
|
+
"--core-background-inversed-foreground",
|
|
568
|
+
"--core-background-muted",
|
|
569
|
+
"--core-background-muted-foreground",
|
|
570
|
+
"--core-background-overlay",
|
|
571
|
+
"--core-background-popover",
|
|
572
|
+
"--core-background-popover-foreground",
|
|
573
|
+
"--core-background-surface",
|
|
574
|
+
"--core-background-surface-foreground",
|
|
575
|
+
"--core-border-border",
|
|
576
|
+
"--core-border-input",
|
|
577
|
+
"--core-border-ring",
|
|
578
|
+
"--destructive",
|
|
579
|
+
"--destructive-border",
|
|
580
|
+
"--destructive-foreground",
|
|
581
|
+
"--destructive-hover",
|
|
582
|
+
"--destructive-subtle",
|
|
583
|
+
"--destructive-subtle-foreground",
|
|
584
|
+
"--disabled",
|
|
585
|
+
"--disabled-background",
|
|
586
|
+
"--disabled-border",
|
|
587
|
+
"--disabled-foreground",
|
|
588
|
+
"--extended-chart-1",
|
|
589
|
+
"--extended-chart-2",
|
|
590
|
+
"--extended-chart-3",
|
|
591
|
+
"--extended-chart-4",
|
|
592
|
+
"--extended-chart-5",
|
|
593
|
+
"--foreground",
|
|
594
|
+
"--info",
|
|
595
|
+
"--info-border",
|
|
596
|
+
"--info-foreground",
|
|
597
|
+
"--info-subtle",
|
|
598
|
+
"--info-subtle-foreground",
|
|
599
|
+
"--input",
|
|
600
|
+
"--inversed-foreground",
|
|
601
|
+
"--kbd-variant-default-background",
|
|
602
|
+
"--kbd-variant-default-color",
|
|
603
|
+
"--kbd-variant-ghost-background",
|
|
604
|
+
"--kbd-variant-ghost-color",
|
|
605
|
+
"--kbd-variant-outline-background",
|
|
606
|
+
"--kbd-variant-outline-border-color",
|
|
607
|
+
"--kbd-variant-outline-color",
|
|
608
|
+
"--label-optional-color",
|
|
609
|
+
"--label-required-color",
|
|
610
|
+
"--link-color-default",
|
|
611
|
+
"--link-color-muted",
|
|
612
|
+
"--link-color-nav",
|
|
613
|
+
"--link-color-nav-hover",
|
|
614
|
+
"--link-color-subtle",
|
|
615
|
+
"--muted",
|
|
616
|
+
"--muted-foreground",
|
|
617
|
+
"--overlay",
|
|
618
|
+
"--paragraph-color-default",
|
|
619
|
+
"--paragraph-color-destructive",
|
|
620
|
+
"--paragraph-color-muted",
|
|
621
|
+
"--paragraph-color-primary",
|
|
622
|
+
"--paragraph-color-success",
|
|
623
|
+
"--popover",
|
|
624
|
+
"--popover-bg",
|
|
625
|
+
"--popover-border",
|
|
626
|
+
"--popover-content-background",
|
|
627
|
+
"--popover-content-foreground",
|
|
628
|
+
"--popover-fg",
|
|
629
|
+
"--popover-foreground",
|
|
630
|
+
"--primary",
|
|
631
|
+
"--primary-active",
|
|
632
|
+
"--primary-border",
|
|
633
|
+
"--primary-foreground",
|
|
634
|
+
"--primary-hover",
|
|
635
|
+
"--primary-subtle",
|
|
636
|
+
"--primary-subtle-foreground",
|
|
637
|
+
"--ring",
|
|
638
|
+
"--ring-offset",
|
|
639
|
+
"--secondary",
|
|
640
|
+
"--secondary-border",
|
|
641
|
+
"--secondary-foreground",
|
|
642
|
+
"--secondary-hover",
|
|
643
|
+
"--secondary-subtle",
|
|
644
|
+
"--secondary-subtle-foreground",
|
|
645
|
+
"--sidebar",
|
|
646
|
+
"--sidebar-accent",
|
|
647
|
+
"--sidebar-accent-foreground",
|
|
648
|
+
"--sidebar-background",
|
|
649
|
+
"--sidebar-border",
|
|
650
|
+
"--sidebar-foreground",
|
|
651
|
+
"--sidebar-ring",
|
|
652
|
+
"--status-destructive-background",
|
|
653
|
+
"--status-destructive-border",
|
|
654
|
+
"--status-destructive-foreground",
|
|
655
|
+
"--status-destructive-hover",
|
|
656
|
+
"--status-destructive-subtle",
|
|
657
|
+
"--status-destructive-subtle-foreground",
|
|
658
|
+
"--status-disabled-border",
|
|
659
|
+
"--status-disabled-disabled",
|
|
660
|
+
"--status-disabled-foreground",
|
|
661
|
+
"--status-info-background",
|
|
662
|
+
"--status-info-border",
|
|
663
|
+
"--status-info-foreground",
|
|
664
|
+
"--status-info-subtle",
|
|
665
|
+
"--status-info-subtle-foreground",
|
|
666
|
+
"--status-success-background",
|
|
667
|
+
"--status-success-border",
|
|
668
|
+
"--status-success-foreground",
|
|
669
|
+
"--status-success-subtle",
|
|
670
|
+
"--status-success-subtle-foreground",
|
|
671
|
+
"--status-warning-background",
|
|
672
|
+
"--status-warning-border",
|
|
673
|
+
"--status-warning-foreground",
|
|
674
|
+
"--status-warning-subtle",
|
|
675
|
+
"--status-warning-subtle-foreground",
|
|
676
|
+
"--success",
|
|
677
|
+
"--success-border",
|
|
678
|
+
"--success-foreground",
|
|
679
|
+
"--success-subtle",
|
|
680
|
+
"--success-subtle-foreground",
|
|
681
|
+
"--surface",
|
|
682
|
+
"--surface-foreground",
|
|
683
|
+
"--warning",
|
|
684
|
+
"--warning-border",
|
|
685
|
+
"--warning-foreground",
|
|
686
|
+
"--warning-subtle",
|
|
687
|
+
"--warning-subtle-foreground"
|
|
688
|
+
]
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
Object.freeze(TOKEN_DATA)
|