@servicetitan/hammer-token 2.5.0 → 3.0.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/CHANGELOG.md +56 -0
- package/README.md +332 -0
- package/build/web/core/component-variables.scss +1088 -131
- package/build/web/core/component.d.ts +558 -0
- package/build/web/core/component.js +6685 -249
- package/build/web/core/component.scss +557 -69
- package/build/web/core/css-utils/a2-border.css +47 -45
- package/build/web/core/css-utils/a2-color.css +443 -227
- package/build/web/core/css-utils/a2-font.css +0 -2
- package/build/web/core/css-utils/a2-spacing.css +476 -478
- package/build/web/core/css-utils/a2-utils.css +992 -772
- package/build/web/core/css-utils/border.css +47 -45
- package/build/web/core/css-utils/color.css +443 -227
- package/build/web/core/css-utils/font.css +0 -2
- package/build/web/core/css-utils/spacing.css +476 -478
- package/build/web/core/css-utils/utils.css +992 -772
- package/build/web/core/index.d.ts +6 -0
- package/build/web/core/index.js +1 -1
- package/build/web/core/primitive-variables.scss +148 -65
- package/build/web/core/primitive.d.ts +209 -0
- package/build/web/core/primitive.js +779 -61
- package/build/web/core/primitive.scss +207 -124
- package/build/web/core/semantic-variables.scss +363 -239
- package/build/web/core/semantic.d.ts +221 -0
- package/build/web/core/semantic.js +1613 -347
- package/build/web/core/semantic.scss +219 -137
- package/build/web/index.d.ts +3 -4
- package/build/web/index.js +0 -1
- package/build/web/types.d.ts +17 -0
- package/config.js +121 -497
- package/eslint.config.mjs +11 -1
- package/package.json +15 -5
- package/src/global/primitive/breakpoint.tokens.json +54 -0
- package/src/global/primitive/color.tokens.json +1092 -0
- package/src/global/primitive/duration.tokens.json +44 -0
- package/src/global/primitive/font.tokens.json +151 -0
- package/src/global/primitive/radius.tokens.json +94 -0
- package/src/global/primitive/size.tokens.json +174 -0
- package/src/global/primitive/transition.tokens.json +32 -0
- package/src/theme/core/background.tokens.json +1312 -0
- package/src/theme/core/border.tokens.json +192 -0
- package/src/theme/core/chart.tokens.json +982 -0
- package/src/theme/core/component/ai-mark.tokens.json +20 -0
- package/src/theme/core/component/alert.tokens.json +261 -0
- package/src/theme/core/component/announcement.tokens.json +460 -0
- package/src/theme/core/component/avatar.tokens.json +137 -0
- package/src/theme/core/component/badge.tokens.json +42 -0
- package/src/theme/core/component/breadcrumb.tokens.json +42 -0
- package/src/theme/core/component/button-toggle.tokens.json +428 -0
- package/src/theme/core/component/button.tokens.json +941 -0
- package/src/theme/core/component/calendar.tokens.json +391 -0
- package/src/theme/core/component/card.tokens.json +107 -0
- package/src/theme/core/component/checkbox.tokens.json +631 -0
- package/src/theme/core/component/chip.tokens.json +169 -0
- package/src/theme/core/component/combobox.tokens.json +269 -0
- package/src/theme/core/component/details.tokens.json +152 -0
- package/src/theme/core/component/dialog.tokens.json +87 -0
- package/src/theme/core/component/divider.tokens.json +23 -0
- package/src/theme/core/component/dnd.tokens.json +208 -0
- package/src/theme/core/component/drawer.tokens.json +61 -0
- package/src/theme/core/component/drilldown.tokens.json +61 -0
- package/src/theme/core/component/edit-card.tokens.json +381 -0
- package/src/theme/core/component/field-label.tokens.json +42 -0
- package/src/theme/core/component/field-message.tokens.json +74 -0
- package/src/theme/core/component/icon.tokens.json +42 -0
- package/src/theme/core/component/link.tokens.json +108 -0
- package/src/theme/core/component/list-view.tokens.json +82 -0
- package/src/theme/core/component/listbox.tokens.json +283 -0
- package/src/theme/core/component/menu.tokens.json +230 -0
- package/src/theme/core/component/overflow.tokens.json +84 -0
- package/src/theme/core/component/page.tokens.json +377 -0
- package/src/theme/core/component/pagination.tokens.json +63 -0
- package/src/theme/core/component/popover.tokens.json +122 -0
- package/src/theme/core/component/progress-bar.tokens.json +133 -0
- package/src/theme/core/component/radio.tokens.json +631 -0
- package/src/theme/core/component/segmented-control.tokens.json +175 -0
- package/src/theme/core/component/select-card.tokens.json +943 -0
- package/src/theme/core/component/side-nav.tokens.json +349 -0
- package/src/theme/core/component/skeleton.tokens.json +42 -0
- package/src/theme/core/component/spinner.tokens.json +96 -0
- package/src/theme/core/component/status-icon.tokens.json +164 -0
- package/src/theme/core/component/stepper.tokens.json +484 -0
- package/src/theme/core/component/switch.tokens.json +285 -0
- package/src/theme/core/component/tab.tokens.json +192 -0
- package/src/theme/core/component/text-field.tokens.json +160 -0
- package/src/theme/core/component/text.tokens.json +59 -0
- package/src/theme/core/component/toast.tokens.json +343 -0
- package/src/theme/core/component/toolbar.tokens.json +114 -0
- package/src/theme/core/component/tooltip.tokens.json +61 -0
- package/src/theme/core/focus.tokens.json +56 -0
- package/src/theme/core/foreground.tokens.json +416 -0
- package/src/theme/core/gradient.tokens.json +41 -0
- package/src/theme/core/opacity.tokens.json +25 -0
- package/src/theme/core/shadow.tokens.json +81 -0
- package/src/theme/core/status.tokens.json +74 -0
- package/src/theme/core/typography.tokens.json +163 -0
- package/src/utils/__tests__/css-utils-format-utils.test.js +312 -0
- package/src/utils/__tests__/sd-build-configs.test.js +306 -0
- package/src/utils/__tests__/sd-formats.test.js +950 -0
- package/src/utils/__tests__/sd-transforms.test.js +336 -0
- package/src/utils/__tests__/token-helpers.test.js +1160 -0
- package/src/utils/copy-css-utils-cli.js +13 -1
- package/src/utils/css-utils-format-utils.js +105 -176
- package/src/utils/figma/__tests__/sync-gradient.test.js +561 -0
- package/src/utils/figma/__tests__/token-conversion.test.js +117 -0
- package/src/utils/figma/__tests__/token-resolution.test.js +231 -0
- package/src/utils/figma/auth.js +355 -0
- package/src/utils/figma/constants.js +22 -0
- package/src/utils/figma/errors.js +80 -0
- package/src/utils/figma/figma-api.js +1069 -0
- package/src/utils/figma/get-token.js +348 -0
- package/src/utils/figma/sync-components.js +909 -0
- package/src/utils/figma/sync-main.js +692 -0
- package/src/utils/figma/sync-orchestration.js +683 -0
- package/src/utils/figma/sync-primitives.js +230 -0
- package/src/utils/figma/sync-semantic.js +1056 -0
- package/src/utils/figma/token-conversion.js +340 -0
- package/src/utils/figma/token-parsing.js +186 -0
- package/src/utils/figma/token-resolution.js +569 -0
- package/src/utils/figma/utils.js +199 -0
- package/src/utils/sd-build-configs.js +305 -0
- package/src/utils/sd-formats.js +965 -0
- package/src/utils/sd-transforms.js +165 -0
- package/src/utils/token-helpers.js +848 -0
- package/tsconfig.json +18 -0
- package/vitest.config.js +17 -0
- package/.turbo/turbo-build.log +0 -37
- package/build/web/core/raw.js +0 -229
- package/src/global/primitive/breakpoint.js +0 -19
- package/src/global/primitive/color.js +0 -231
- package/src/global/primitive/duration.js +0 -16
- package/src/global/primitive/font.js +0 -60
- package/src/global/primitive/radius.js +0 -31
- package/src/global/primitive/size.js +0 -55
- package/src/global/primitive/transition.js +0 -16
- package/src/theme/core/background.js +0 -170
- package/src/theme/core/border.js +0 -103
- package/src/theme/core/charts.js +0 -439
- package/src/theme/core/component/button.js +0 -708
- package/src/theme/core/component/checkbox.js +0 -405
- package/src/theme/core/focus.js +0 -35
- package/src/theme/core/foreground.js +0 -148
- package/src/theme/core/overlay.js +0 -137
- package/src/theme/core/shadow.js +0 -29
- package/src/theme/core/status.js +0 -49
- package/src/theme/core/typography.js +0 -82
- package/type/types.ts +0 -341
|
@@ -0,0 +1,1092 @@
|
|
|
1
|
+
{
|
|
2
|
+
"color": {
|
|
3
|
+
"neutral": {
|
|
4
|
+
"0": {
|
|
5
|
+
"$type": "color",
|
|
6
|
+
"$value": "#ffffff",
|
|
7
|
+
"$extensions": {
|
|
8
|
+
"com.figma.scopes": []
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"10": {
|
|
12
|
+
"$type": "color",
|
|
13
|
+
"$value": "#fcfcfc",
|
|
14
|
+
"$extensions": {
|
|
15
|
+
"com.figma.scopes": []
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"20": {
|
|
19
|
+
"$type": "color",
|
|
20
|
+
"$value": "#f9f9f9",
|
|
21
|
+
"$extensions": {
|
|
22
|
+
"com.figma.scopes": []
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"30": {
|
|
26
|
+
"$type": "color",
|
|
27
|
+
"$value": "#f6f6f6",
|
|
28
|
+
"$extensions": {
|
|
29
|
+
"com.figma.scopes": []
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"40": {
|
|
33
|
+
"$type": "color",
|
|
34
|
+
"$value": "#f1f1f1",
|
|
35
|
+
"$extensions": {
|
|
36
|
+
"com.figma.scopes": []
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"50": {
|
|
40
|
+
"$type": "color",
|
|
41
|
+
"$value": "#eeeeee",
|
|
42
|
+
"$extensions": {
|
|
43
|
+
"com.figma.scopes": []
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"60": {
|
|
47
|
+
"$type": "color",
|
|
48
|
+
"$value": "#ededed",
|
|
49
|
+
"$extensions": {
|
|
50
|
+
"com.figma.scopes": []
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"70": {
|
|
54
|
+
"$type": "color",
|
|
55
|
+
"$value": "#e8e8e8",
|
|
56
|
+
"$extensions": {
|
|
57
|
+
"com.figma.scopes": []
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"80": {
|
|
61
|
+
"$type": "color",
|
|
62
|
+
"$value": "#e6e6e6",
|
|
63
|
+
"$extensions": {
|
|
64
|
+
"com.figma.scopes": []
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"90": {
|
|
68
|
+
"$type": "color",
|
|
69
|
+
"$value": "#e5e5e5",
|
|
70
|
+
"$extensions": {
|
|
71
|
+
"com.figma.scopes": []
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"100": {
|
|
75
|
+
"$type": "color",
|
|
76
|
+
"$value": "#dfdfdf",
|
|
77
|
+
"$extensions": {
|
|
78
|
+
"com.figma.scopes": []
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"200": {
|
|
82
|
+
"$type": "color",
|
|
83
|
+
"$value": "#c4c4c4",
|
|
84
|
+
"$extensions": {
|
|
85
|
+
"com.figma.scopes": []
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"300": {
|
|
89
|
+
"$type": "color",
|
|
90
|
+
"$value": "#a8a8a8",
|
|
91
|
+
"$extensions": {
|
|
92
|
+
"com.figma.scopes": []
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"400": {
|
|
96
|
+
"$type": "color",
|
|
97
|
+
"$value": "#8b8b8b",
|
|
98
|
+
"$extensions": {
|
|
99
|
+
"com.figma.scopes": []
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"500": {
|
|
103
|
+
"$type": "color",
|
|
104
|
+
"$value": "#707070",
|
|
105
|
+
"$extensions": {
|
|
106
|
+
"com.figma.scopes": []
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
"600": {
|
|
110
|
+
"$type": "color",
|
|
111
|
+
"$value": "#545454",
|
|
112
|
+
"$extensions": {
|
|
113
|
+
"com.figma.scopes": []
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
"700": {
|
|
117
|
+
"$type": "color",
|
|
118
|
+
"$value": "#404040",
|
|
119
|
+
"$extensions": {
|
|
120
|
+
"com.figma.scopes": []
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
"800": {
|
|
124
|
+
"$type": "color",
|
|
125
|
+
"$value": "#292929",
|
|
126
|
+
"$extensions": {
|
|
127
|
+
"com.figma.scopes": []
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
"900": {
|
|
131
|
+
"$type": "color",
|
|
132
|
+
"$value": "#1a1a1a",
|
|
133
|
+
"$extensions": {
|
|
134
|
+
"com.figma.scopes": []
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
"950": {
|
|
138
|
+
"$type": "color",
|
|
139
|
+
"$value": "#040404",
|
|
140
|
+
"$extensions": {
|
|
141
|
+
"com.figma.scopes": []
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"blue": {
|
|
146
|
+
"10": {
|
|
147
|
+
"$type": "color",
|
|
148
|
+
"$value": "#fafcff",
|
|
149
|
+
"$extensions": {
|
|
150
|
+
"com.figma.scopes": []
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
"50": {
|
|
154
|
+
"$type": "color",
|
|
155
|
+
"$value": "#e6f1ff",
|
|
156
|
+
"$extensions": {
|
|
157
|
+
"com.figma.scopes": []
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
"100": {
|
|
161
|
+
"$type": "color",
|
|
162
|
+
"$value": "#cce3ff",
|
|
163
|
+
"$extensions": {
|
|
164
|
+
"com.figma.scopes": []
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
"200": {
|
|
168
|
+
"$type": "color",
|
|
169
|
+
"$value": "#9ecaff",
|
|
170
|
+
"$extensions": {
|
|
171
|
+
"com.figma.scopes": []
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
"300": {
|
|
175
|
+
"$type": "color",
|
|
176
|
+
"$value": "#70b1ff",
|
|
177
|
+
"$extensions": {
|
|
178
|
+
"com.figma.scopes": []
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
"400": {
|
|
182
|
+
"$type": "color",
|
|
183
|
+
"$value": "#3d95ff",
|
|
184
|
+
"$extensions": {
|
|
185
|
+
"com.figma.scopes": []
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
"500": {
|
|
189
|
+
"$type": "color",
|
|
190
|
+
"$value": "#1a82ff",
|
|
191
|
+
"$extensions": {
|
|
192
|
+
"com.figma.scopes": []
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
"600": {
|
|
196
|
+
"$type": "color",
|
|
197
|
+
"$value": "#0265dc",
|
|
198
|
+
"$extensions": {
|
|
199
|
+
"com.figma.scopes": []
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
"700": {
|
|
203
|
+
"$type": "color",
|
|
204
|
+
"$value": "#1d4ca3",
|
|
205
|
+
"$extensions": {
|
|
206
|
+
"com.figma.scopes": []
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
"800": {
|
|
210
|
+
"$type": "color",
|
|
211
|
+
"$value": "#003472",
|
|
212
|
+
"$extensions": {
|
|
213
|
+
"com.figma.scopes": []
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
"900": {
|
|
217
|
+
"$type": "color",
|
|
218
|
+
"$value": "#002047",
|
|
219
|
+
"$extensions": {
|
|
220
|
+
"com.figma.scopes": []
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
"950": {
|
|
224
|
+
"$type": "color",
|
|
225
|
+
"$value": "#000b19",
|
|
226
|
+
"$extensions": {
|
|
227
|
+
"com.figma.scopes": []
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
"red": {
|
|
232
|
+
"10": {
|
|
233
|
+
"$type": "color",
|
|
234
|
+
"$value": "#fffbfa",
|
|
235
|
+
"$extensions": {
|
|
236
|
+
"com.figma.scopes": []
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
"50": {
|
|
240
|
+
"$type": "color",
|
|
241
|
+
"$value": "#ffe9e5",
|
|
242
|
+
"$extensions": {
|
|
243
|
+
"com.figma.scopes": []
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
"100": {
|
|
247
|
+
"$type": "color",
|
|
248
|
+
"$value": "#ffd4cc",
|
|
249
|
+
"$extensions": {
|
|
250
|
+
"com.figma.scopes": []
|
|
251
|
+
}
|
|
252
|
+
},
|
|
253
|
+
"200": {
|
|
254
|
+
"$type": "color",
|
|
255
|
+
"$value": "#ffac9e",
|
|
256
|
+
"$extensions": {
|
|
257
|
+
"com.figma.scopes": []
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
"300": {
|
|
261
|
+
"$type": "color",
|
|
262
|
+
"$value": "#ff8670",
|
|
263
|
+
"$extensions": {
|
|
264
|
+
"com.figma.scopes": []
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
"400": {
|
|
268
|
+
"$type": "color",
|
|
269
|
+
"$value": "#ff5b3d",
|
|
270
|
+
"$extensions": {
|
|
271
|
+
"com.figma.scopes": []
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
"500": {
|
|
275
|
+
"$type": "color",
|
|
276
|
+
"$value": "#ff3914",
|
|
277
|
+
"$extensions": {
|
|
278
|
+
"com.figma.scopes": []
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
"600": {
|
|
282
|
+
"$type": "color",
|
|
283
|
+
"$value": "#d62100",
|
|
284
|
+
"$extensions": {
|
|
285
|
+
"com.figma.scopes": []
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
"700": {
|
|
289
|
+
"$type": "color",
|
|
290
|
+
"$value": "#a31900",
|
|
291
|
+
"$extensions": {
|
|
292
|
+
"com.figma.scopes": []
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
"800": {
|
|
296
|
+
"$type": "color",
|
|
297
|
+
"$value": "#731100",
|
|
298
|
+
"$extensions": {
|
|
299
|
+
"com.figma.scopes": []
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
"900": {
|
|
303
|
+
"$type": "color",
|
|
304
|
+
"$value": "#470b00",
|
|
305
|
+
"$extensions": {
|
|
306
|
+
"com.figma.scopes": []
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
"950": {
|
|
310
|
+
"$type": "color",
|
|
311
|
+
"$value": "#0a0200",
|
|
312
|
+
"$extensions": {
|
|
313
|
+
"com.figma.scopes": []
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
"green": {
|
|
318
|
+
"10": {
|
|
319
|
+
"$type": "color",
|
|
320
|
+
"$value": "#f5fefb",
|
|
321
|
+
"$extensions": {
|
|
322
|
+
"com.figma.scopes": []
|
|
323
|
+
}
|
|
324
|
+
},
|
|
325
|
+
"50": {
|
|
326
|
+
"$type": "color",
|
|
327
|
+
"$value": "#d3fded",
|
|
328
|
+
"$extensions": {
|
|
329
|
+
"com.figma.scopes": []
|
|
330
|
+
}
|
|
331
|
+
},
|
|
332
|
+
"100": {
|
|
333
|
+
"$type": "color",
|
|
334
|
+
"$value": "#b8f5dd",
|
|
335
|
+
"$extensions": {
|
|
336
|
+
"com.figma.scopes": []
|
|
337
|
+
}
|
|
338
|
+
},
|
|
339
|
+
"200": {
|
|
340
|
+
"$type": "color",
|
|
341
|
+
"$value": "#70ebbc",
|
|
342
|
+
"$extensions": {
|
|
343
|
+
"com.figma.scopes": []
|
|
344
|
+
}
|
|
345
|
+
},
|
|
346
|
+
"300": {
|
|
347
|
+
"$type": "color",
|
|
348
|
+
"$value": "#3be3a2",
|
|
349
|
+
"$extensions": {
|
|
350
|
+
"com.figma.scopes": []
|
|
351
|
+
}
|
|
352
|
+
},
|
|
353
|
+
"400": {
|
|
354
|
+
"$type": "color",
|
|
355
|
+
"$value": "#0bd085",
|
|
356
|
+
"$extensions": {
|
|
357
|
+
"com.figma.scopes": []
|
|
358
|
+
}
|
|
359
|
+
},
|
|
360
|
+
"500": {
|
|
361
|
+
"$type": "color",
|
|
362
|
+
"$value": "#0aa86c",
|
|
363
|
+
"$extensions": {
|
|
364
|
+
"com.figma.scopes": []
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
"600": {
|
|
368
|
+
"$type": "color",
|
|
369
|
+
"$value": "#077e50",
|
|
370
|
+
"$extensions": {
|
|
371
|
+
"com.figma.scopes": []
|
|
372
|
+
}
|
|
373
|
+
},
|
|
374
|
+
"700": {
|
|
375
|
+
"$type": "color",
|
|
376
|
+
"$value": "#05613e",
|
|
377
|
+
"$extensions": {
|
|
378
|
+
"com.figma.scopes": []
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
"800": {
|
|
382
|
+
"$type": "color",
|
|
383
|
+
"$value": "#04482e",
|
|
384
|
+
"$extensions": {
|
|
385
|
+
"com.figma.scopes": []
|
|
386
|
+
}
|
|
387
|
+
},
|
|
388
|
+
"900": {
|
|
389
|
+
"$type": "color",
|
|
390
|
+
"$value": "#022c1c",
|
|
391
|
+
"$extensions": {
|
|
392
|
+
"com.figma.scopes": []
|
|
393
|
+
}
|
|
394
|
+
},
|
|
395
|
+
"950": {
|
|
396
|
+
"$type": "color",
|
|
397
|
+
"$value": "#010f0a",
|
|
398
|
+
"$extensions": {
|
|
399
|
+
"com.figma.scopes": []
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
"blue-grey": {
|
|
404
|
+
"10": {
|
|
405
|
+
"$type": "color",
|
|
406
|
+
"$value": "#f7f9fa",
|
|
407
|
+
"$extensions": {
|
|
408
|
+
"com.figma.scopes": []
|
|
409
|
+
}
|
|
410
|
+
},
|
|
411
|
+
"50": {
|
|
412
|
+
"$type": "color",
|
|
413
|
+
"$value": "#e9eef2",
|
|
414
|
+
"$extensions": {
|
|
415
|
+
"com.figma.scopes": []
|
|
416
|
+
}
|
|
417
|
+
},
|
|
418
|
+
"100": {
|
|
419
|
+
"$type": "color",
|
|
420
|
+
"$value": "#dce4ea",
|
|
421
|
+
"$extensions": {
|
|
422
|
+
"com.figma.scopes": []
|
|
423
|
+
}
|
|
424
|
+
},
|
|
425
|
+
"200": {
|
|
426
|
+
"$type": "color",
|
|
427
|
+
"$value": "#b9c9d5",
|
|
428
|
+
"$extensions": {
|
|
429
|
+
"com.figma.scopes": []
|
|
430
|
+
}
|
|
431
|
+
},
|
|
432
|
+
"300": {
|
|
433
|
+
"$type": "color",
|
|
434
|
+
"$value": "#99b1c2",
|
|
435
|
+
"$extensions": {
|
|
436
|
+
"com.figma.scopes": []
|
|
437
|
+
}
|
|
438
|
+
},
|
|
439
|
+
"400": {
|
|
440
|
+
"$type": "color",
|
|
441
|
+
"$value": "#7899b0",
|
|
442
|
+
"$extensions": {
|
|
443
|
+
"com.figma.scopes": []
|
|
444
|
+
}
|
|
445
|
+
},
|
|
446
|
+
"500": {
|
|
447
|
+
"$type": "color",
|
|
448
|
+
"$value": "#55768e",
|
|
449
|
+
"$extensions": {
|
|
450
|
+
"com.figma.scopes": []
|
|
451
|
+
}
|
|
452
|
+
},
|
|
453
|
+
"600": {
|
|
454
|
+
"$type": "color",
|
|
455
|
+
"$value": "#445e71",
|
|
456
|
+
"$extensions": {
|
|
457
|
+
"com.figma.scopes": []
|
|
458
|
+
}
|
|
459
|
+
},
|
|
460
|
+
"700": {
|
|
461
|
+
"$type": "color",
|
|
462
|
+
"$value": "#344856",
|
|
463
|
+
"$extensions": {
|
|
464
|
+
"com.figma.scopes": []
|
|
465
|
+
}
|
|
466
|
+
},
|
|
467
|
+
"800": {
|
|
468
|
+
"$type": "color",
|
|
469
|
+
"$value": "#24333d",
|
|
470
|
+
"$extensions": {
|
|
471
|
+
"com.figma.scopes": []
|
|
472
|
+
}
|
|
473
|
+
},
|
|
474
|
+
"900": {
|
|
475
|
+
"$type": "color",
|
|
476
|
+
"$value": "#192329",
|
|
477
|
+
"$extensions": {
|
|
478
|
+
"com.figma.scopes": []
|
|
479
|
+
}
|
|
480
|
+
},
|
|
481
|
+
"950": {
|
|
482
|
+
"$type": "color",
|
|
483
|
+
"$value": "#090d10",
|
|
484
|
+
"$extensions": {
|
|
485
|
+
"com.figma.scopes": []
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
},
|
|
489
|
+
"orange": {
|
|
490
|
+
"10": {
|
|
491
|
+
"$type": "color",
|
|
492
|
+
"$value": "#fff8f1",
|
|
493
|
+
"$extensions": {
|
|
494
|
+
"com.figma.scopes": []
|
|
495
|
+
}
|
|
496
|
+
},
|
|
497
|
+
"50": {
|
|
498
|
+
"$type": "color",
|
|
499
|
+
"$value": "#ffecd6",
|
|
500
|
+
"$extensions": {
|
|
501
|
+
"com.figma.scopes": []
|
|
502
|
+
}
|
|
503
|
+
},
|
|
504
|
+
"100": {
|
|
505
|
+
"$type": "color",
|
|
506
|
+
"$value": "#ffddb7",
|
|
507
|
+
"$extensions": {
|
|
508
|
+
"com.figma.scopes": []
|
|
509
|
+
}
|
|
510
|
+
},
|
|
511
|
+
"200": {
|
|
512
|
+
"$type": "color",
|
|
513
|
+
"$value": "#ffc07a",
|
|
514
|
+
"$extensions": {
|
|
515
|
+
"com.figma.scopes": []
|
|
516
|
+
}
|
|
517
|
+
},
|
|
518
|
+
"300": {
|
|
519
|
+
"$type": "color",
|
|
520
|
+
"$value": "#ffa037",
|
|
521
|
+
"$extensions": {
|
|
522
|
+
"com.figma.scopes": []
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
"400": {
|
|
526
|
+
"$type": "color",
|
|
527
|
+
"$value": "#e37700",
|
|
528
|
+
"$extensions": {
|
|
529
|
+
"com.figma.scopes": []
|
|
530
|
+
}
|
|
531
|
+
},
|
|
532
|
+
"500": {
|
|
533
|
+
"$type": "color",
|
|
534
|
+
"$value": "#c16500",
|
|
535
|
+
"$extensions": {
|
|
536
|
+
"com.figma.scopes": []
|
|
537
|
+
}
|
|
538
|
+
},
|
|
539
|
+
"600": {
|
|
540
|
+
"$type": "color",
|
|
541
|
+
"$value": "#964f00",
|
|
542
|
+
"$extensions": {
|
|
543
|
+
"com.figma.scopes": []
|
|
544
|
+
}
|
|
545
|
+
},
|
|
546
|
+
"700": {
|
|
547
|
+
"$type": "color",
|
|
548
|
+
"$value": "#693700",
|
|
549
|
+
"$extensions": {
|
|
550
|
+
"com.figma.scopes": []
|
|
551
|
+
}
|
|
552
|
+
},
|
|
553
|
+
"800": {
|
|
554
|
+
"$type": "color",
|
|
555
|
+
"$value": "#4d2800",
|
|
556
|
+
"$extensions": {
|
|
557
|
+
"com.figma.scopes": []
|
|
558
|
+
}
|
|
559
|
+
},
|
|
560
|
+
"900": {
|
|
561
|
+
"$type": "color",
|
|
562
|
+
"$value": "#2e1900",
|
|
563
|
+
"$extensions": {
|
|
564
|
+
"com.figma.scopes": []
|
|
565
|
+
}
|
|
566
|
+
},
|
|
567
|
+
"950": {
|
|
568
|
+
"$type": "color",
|
|
569
|
+
"$value": "#140b00",
|
|
570
|
+
"$extensions": {
|
|
571
|
+
"com.figma.scopes": []
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
},
|
|
575
|
+
"cyan": {
|
|
576
|
+
"10": {
|
|
577
|
+
"$type": "color",
|
|
578
|
+
"$value": "#f2fcfe",
|
|
579
|
+
"$extensions": {
|
|
580
|
+
"com.figma.scopes": []
|
|
581
|
+
}
|
|
582
|
+
},
|
|
583
|
+
"50": {
|
|
584
|
+
"$type": "color",
|
|
585
|
+
"$value": "#daf7fc",
|
|
586
|
+
"$extensions": {
|
|
587
|
+
"com.figma.scopes": []
|
|
588
|
+
}
|
|
589
|
+
},
|
|
590
|
+
"100": {
|
|
591
|
+
"$type": "color",
|
|
592
|
+
"$value": "#c2f2fb",
|
|
593
|
+
"$extensions": {
|
|
594
|
+
"com.figma.scopes": []
|
|
595
|
+
}
|
|
596
|
+
},
|
|
597
|
+
"200": {
|
|
598
|
+
"$type": "color",
|
|
599
|
+
"$value": "#7fe5f6",
|
|
600
|
+
"$extensions": {
|
|
601
|
+
"com.figma.scopes": []
|
|
602
|
+
}
|
|
603
|
+
},
|
|
604
|
+
"300": {
|
|
605
|
+
"$type": "color",
|
|
606
|
+
"$value": "#45d8f2",
|
|
607
|
+
"$extensions": {
|
|
608
|
+
"com.figma.scopes": []
|
|
609
|
+
}
|
|
610
|
+
},
|
|
611
|
+
"400": {
|
|
612
|
+
"$type": "color",
|
|
613
|
+
"$value": "#10c2e2",
|
|
614
|
+
"$extensions": {
|
|
615
|
+
"com.figma.scopes": []
|
|
616
|
+
}
|
|
617
|
+
},
|
|
618
|
+
"500": {
|
|
619
|
+
"$type": "color",
|
|
620
|
+
"$value": "#0da2bd",
|
|
621
|
+
"$extensions": {
|
|
622
|
+
"com.figma.scopes": []
|
|
623
|
+
}
|
|
624
|
+
},
|
|
625
|
+
"600": {
|
|
626
|
+
"$type": "color",
|
|
627
|
+
"$value": "#0a7a8e",
|
|
628
|
+
"$extensions": {
|
|
629
|
+
"com.figma.scopes": []
|
|
630
|
+
}
|
|
631
|
+
},
|
|
632
|
+
"700": {
|
|
633
|
+
"$type": "color",
|
|
634
|
+
"$value": "#075563",
|
|
635
|
+
"$extensions": {
|
|
636
|
+
"com.figma.scopes": []
|
|
637
|
+
}
|
|
638
|
+
},
|
|
639
|
+
"800": {
|
|
640
|
+
"$type": "color",
|
|
641
|
+
"$value": "#05424d",
|
|
642
|
+
"$extensions": {
|
|
643
|
+
"com.figma.scopes": []
|
|
644
|
+
}
|
|
645
|
+
},
|
|
646
|
+
"900": {
|
|
647
|
+
"$type": "color",
|
|
648
|
+
"$value": "#032025",
|
|
649
|
+
"$extensions": {
|
|
650
|
+
"com.figma.scopes": []
|
|
651
|
+
}
|
|
652
|
+
},
|
|
653
|
+
"950": {
|
|
654
|
+
"$type": "color",
|
|
655
|
+
"$value": "#011013",
|
|
656
|
+
"$extensions": {
|
|
657
|
+
"com.figma.scopes": []
|
|
658
|
+
}
|
|
659
|
+
}
|
|
660
|
+
},
|
|
661
|
+
"purple": {
|
|
662
|
+
"10": {
|
|
663
|
+
"$type": "color",
|
|
664
|
+
"$value": "#fcfbfe",
|
|
665
|
+
"$extensions": {
|
|
666
|
+
"com.figma.scopes": []
|
|
667
|
+
}
|
|
668
|
+
},
|
|
669
|
+
"50": {
|
|
670
|
+
"$type": "color",
|
|
671
|
+
"$value": "#eeecf9",
|
|
672
|
+
"$extensions": {
|
|
673
|
+
"com.figma.scopes": []
|
|
674
|
+
}
|
|
675
|
+
},
|
|
676
|
+
"100": {
|
|
677
|
+
"$type": "color",
|
|
678
|
+
"$value": "#e7e4f6",
|
|
679
|
+
"$extensions": {
|
|
680
|
+
"com.figma.scopes": []
|
|
681
|
+
}
|
|
682
|
+
},
|
|
683
|
+
"200": {
|
|
684
|
+
"$type": "color",
|
|
685
|
+
"$value": "#c9c2eb",
|
|
686
|
+
"$extensions": {
|
|
687
|
+
"com.figma.scopes": []
|
|
688
|
+
}
|
|
689
|
+
},
|
|
690
|
+
"300": {
|
|
691
|
+
"$type": "color",
|
|
692
|
+
"$value": "#b1a7e2",
|
|
693
|
+
"$extensions": {
|
|
694
|
+
"com.figma.scopes": []
|
|
695
|
+
}
|
|
696
|
+
},
|
|
697
|
+
"400": {
|
|
698
|
+
"$type": "color",
|
|
699
|
+
"$value": "#9688d7",
|
|
700
|
+
"$extensions": {
|
|
701
|
+
"com.figma.scopes": []
|
|
702
|
+
}
|
|
703
|
+
},
|
|
704
|
+
"500": {
|
|
705
|
+
"$type": "color",
|
|
706
|
+
"$value": "#7766cc",
|
|
707
|
+
"$extensions": {
|
|
708
|
+
"com.figma.scopes": []
|
|
709
|
+
}
|
|
710
|
+
},
|
|
711
|
+
"600": {
|
|
712
|
+
"$type": "color",
|
|
713
|
+
"$value": "#5c47c2",
|
|
714
|
+
"$extensions": {
|
|
715
|
+
"com.figma.scopes": []
|
|
716
|
+
}
|
|
717
|
+
},
|
|
718
|
+
"700": {
|
|
719
|
+
"$type": "color",
|
|
720
|
+
"$value": "#3f2f8e",
|
|
721
|
+
"$extensions": {
|
|
722
|
+
"com.figma.scopes": []
|
|
723
|
+
}
|
|
724
|
+
},
|
|
725
|
+
"800": {
|
|
726
|
+
"$type": "color",
|
|
727
|
+
"$value": "#2e2267",
|
|
728
|
+
"$extensions": {
|
|
729
|
+
"com.figma.scopes": []
|
|
730
|
+
}
|
|
731
|
+
},
|
|
732
|
+
"900": {
|
|
733
|
+
"$type": "color",
|
|
734
|
+
"$value": "#191338",
|
|
735
|
+
"$extensions": {
|
|
736
|
+
"com.figma.scopes": []
|
|
737
|
+
}
|
|
738
|
+
},
|
|
739
|
+
"950": {
|
|
740
|
+
"$type": "color",
|
|
741
|
+
"$value": "#100c25",
|
|
742
|
+
"$extensions": {
|
|
743
|
+
"com.figma.scopes": []
|
|
744
|
+
}
|
|
745
|
+
}
|
|
746
|
+
},
|
|
747
|
+
"magenta": {
|
|
748
|
+
"10": {
|
|
749
|
+
"$type": "color",
|
|
750
|
+
"$value": "#fefbfd",
|
|
751
|
+
"$extensions": {
|
|
752
|
+
"com.figma.scopes": []
|
|
753
|
+
}
|
|
754
|
+
},
|
|
755
|
+
"50": {
|
|
756
|
+
"$type": "color",
|
|
757
|
+
"$value": "#fae6f3",
|
|
758
|
+
"$extensions": {
|
|
759
|
+
"com.figma.scopes": []
|
|
760
|
+
}
|
|
761
|
+
},
|
|
762
|
+
"100": {
|
|
763
|
+
"$type": "color",
|
|
764
|
+
"$value": "#f8ddef",
|
|
765
|
+
"$extensions": {
|
|
766
|
+
"com.figma.scopes": []
|
|
767
|
+
}
|
|
768
|
+
},
|
|
769
|
+
"200": {
|
|
770
|
+
"$type": "color",
|
|
771
|
+
"$value": "#efb3db",
|
|
772
|
+
"$extensions": {
|
|
773
|
+
"com.figma.scopes": []
|
|
774
|
+
}
|
|
775
|
+
},
|
|
776
|
+
"300": {
|
|
777
|
+
"$type": "color",
|
|
778
|
+
"$value": "#e892cc",
|
|
779
|
+
"$extensions": {
|
|
780
|
+
"com.figma.scopes": []
|
|
781
|
+
}
|
|
782
|
+
},
|
|
783
|
+
"400": {
|
|
784
|
+
"$type": "color",
|
|
785
|
+
"$value": "#eb61be",
|
|
786
|
+
"$extensions": {
|
|
787
|
+
"com.figma.scopes": []
|
|
788
|
+
}
|
|
789
|
+
},
|
|
790
|
+
"500": {
|
|
791
|
+
"$type": "color",
|
|
792
|
+
"$value": "#d741a6",
|
|
793
|
+
"$extensions": {
|
|
794
|
+
"com.figma.scopes": []
|
|
795
|
+
}
|
|
796
|
+
},
|
|
797
|
+
"600": {
|
|
798
|
+
"$type": "color",
|
|
799
|
+
"$value": "#be288d",
|
|
800
|
+
"$extensions": {
|
|
801
|
+
"com.figma.scopes": []
|
|
802
|
+
}
|
|
803
|
+
},
|
|
804
|
+
"700": {
|
|
805
|
+
"$type": "color",
|
|
806
|
+
"$value": "#831b60",
|
|
807
|
+
"$extensions": {
|
|
808
|
+
"com.figma.scopes": []
|
|
809
|
+
}
|
|
810
|
+
},
|
|
811
|
+
"800": {
|
|
812
|
+
"$type": "color",
|
|
813
|
+
"$value": "#591342",
|
|
814
|
+
"$extensions": {
|
|
815
|
+
"com.figma.scopes": []
|
|
816
|
+
}
|
|
817
|
+
},
|
|
818
|
+
"900": {
|
|
819
|
+
"$type": "color",
|
|
820
|
+
"$value": "#26081c",
|
|
821
|
+
"$extensions": {
|
|
822
|
+
"com.figma.scopes": []
|
|
823
|
+
}
|
|
824
|
+
},
|
|
825
|
+
"950": {
|
|
826
|
+
"$type": "color",
|
|
827
|
+
"$value": "#15040f",
|
|
828
|
+
"$extensions": {
|
|
829
|
+
"com.figma.scopes": []
|
|
830
|
+
}
|
|
831
|
+
}
|
|
832
|
+
},
|
|
833
|
+
"mauves": {
|
|
834
|
+
"10": {
|
|
835
|
+
"$type": "color",
|
|
836
|
+
"$value": "#fffbfa",
|
|
837
|
+
"$extensions": {
|
|
838
|
+
"com.figma.scopes": []
|
|
839
|
+
}
|
|
840
|
+
},
|
|
841
|
+
"50": {
|
|
842
|
+
"$type": "color",
|
|
843
|
+
"$value": "#fff7f5",
|
|
844
|
+
"$extensions": {
|
|
845
|
+
"com.figma.scopes": []
|
|
846
|
+
}
|
|
847
|
+
},
|
|
848
|
+
"100": {
|
|
849
|
+
"$type": "color",
|
|
850
|
+
"$value": "#fff4f0",
|
|
851
|
+
"$extensions": {
|
|
852
|
+
"com.figma.scopes": []
|
|
853
|
+
}
|
|
854
|
+
},
|
|
855
|
+
"200": {
|
|
856
|
+
"$type": "color",
|
|
857
|
+
"$value": "#ffe4db",
|
|
858
|
+
"$extensions": {
|
|
859
|
+
"com.figma.scopes": []
|
|
860
|
+
}
|
|
861
|
+
},
|
|
862
|
+
"300": {
|
|
863
|
+
"$type": "color",
|
|
864
|
+
"$value": "#ffd1c2",
|
|
865
|
+
"$extensions": {
|
|
866
|
+
"com.figma.scopes": []
|
|
867
|
+
}
|
|
868
|
+
},
|
|
869
|
+
"400": {
|
|
870
|
+
"$type": "color",
|
|
871
|
+
"$value": "#ffaf94",
|
|
872
|
+
"$extensions": {
|
|
873
|
+
"com.figma.scopes": []
|
|
874
|
+
}
|
|
875
|
+
},
|
|
876
|
+
"500": {
|
|
877
|
+
"$type": "color",
|
|
878
|
+
"$value": "#ffa78a",
|
|
879
|
+
"$extensions": {
|
|
880
|
+
"com.figma.scopes": []
|
|
881
|
+
}
|
|
882
|
+
},
|
|
883
|
+
"600": {
|
|
884
|
+
"$type": "color",
|
|
885
|
+
"$value": "#d88569",
|
|
886
|
+
"$extensions": {
|
|
887
|
+
"com.figma.scopes": []
|
|
888
|
+
}
|
|
889
|
+
},
|
|
890
|
+
"700": {
|
|
891
|
+
"$type": "color",
|
|
892
|
+
"$value": "#d27151",
|
|
893
|
+
"$extensions": {
|
|
894
|
+
"com.figma.scopes": []
|
|
895
|
+
}
|
|
896
|
+
},
|
|
897
|
+
"800": {
|
|
898
|
+
"$type": "color",
|
|
899
|
+
"$value": "#823a21",
|
|
900
|
+
"$extensions": {
|
|
901
|
+
"com.figma.scopes": []
|
|
902
|
+
}
|
|
903
|
+
},
|
|
904
|
+
"900": {
|
|
905
|
+
"$type": "color",
|
|
906
|
+
"$value": "#411d11",
|
|
907
|
+
"$extensions": {
|
|
908
|
+
"com.figma.scopes": []
|
|
909
|
+
}
|
|
910
|
+
},
|
|
911
|
+
"950": {
|
|
912
|
+
"$type": "color",
|
|
913
|
+
"$value": "#200e08",
|
|
914
|
+
"$extensions": {
|
|
915
|
+
"com.figma.scopes": []
|
|
916
|
+
}
|
|
917
|
+
}
|
|
918
|
+
},
|
|
919
|
+
"lime": {
|
|
920
|
+
"10": {
|
|
921
|
+
"$type": "color",
|
|
922
|
+
"$value": "#fdfdfc",
|
|
923
|
+
"$extensions": {
|
|
924
|
+
"com.figma.scopes": []
|
|
925
|
+
}
|
|
926
|
+
},
|
|
927
|
+
"50": {
|
|
928
|
+
"$type": "color",
|
|
929
|
+
"$value": "#eaf0db",
|
|
930
|
+
"$extensions": {
|
|
931
|
+
"com.figma.scopes": []
|
|
932
|
+
}
|
|
933
|
+
},
|
|
934
|
+
"100": {
|
|
935
|
+
"$type": "color",
|
|
936
|
+
"$value": "#e3eccf",
|
|
937
|
+
"$extensions": {
|
|
938
|
+
"com.figma.scopes": []
|
|
939
|
+
}
|
|
940
|
+
},
|
|
941
|
+
"200": {
|
|
942
|
+
"$type": "color",
|
|
943
|
+
"$value": "#c3d595",
|
|
944
|
+
"$extensions": {
|
|
945
|
+
"com.figma.scopes": []
|
|
946
|
+
}
|
|
947
|
+
},
|
|
948
|
+
"300": {
|
|
949
|
+
"$type": "color",
|
|
950
|
+
"$value": "#a8c26a",
|
|
951
|
+
"$extensions": {
|
|
952
|
+
"com.figma.scopes": []
|
|
953
|
+
}
|
|
954
|
+
},
|
|
955
|
+
"400": {
|
|
956
|
+
"$type": "color",
|
|
957
|
+
"$value": "#8aad39",
|
|
958
|
+
"$extensions": {
|
|
959
|
+
"com.figma.scopes": []
|
|
960
|
+
}
|
|
961
|
+
},
|
|
962
|
+
"500": {
|
|
963
|
+
"$type": "color",
|
|
964
|
+
"$value": "#6b9013",
|
|
965
|
+
"$extensions": {
|
|
966
|
+
"com.figma.scopes": []
|
|
967
|
+
}
|
|
968
|
+
},
|
|
969
|
+
"600": {
|
|
970
|
+
"$type": "color",
|
|
971
|
+
"$value": "#56750b",
|
|
972
|
+
"$extensions": {
|
|
973
|
+
"com.figma.scopes": []
|
|
974
|
+
}
|
|
975
|
+
},
|
|
976
|
+
"700": {
|
|
977
|
+
"$type": "color",
|
|
978
|
+
"$value": "#3a5007",
|
|
979
|
+
"$extensions": {
|
|
980
|
+
"com.figma.scopes": []
|
|
981
|
+
}
|
|
982
|
+
},
|
|
983
|
+
"800": {
|
|
984
|
+
"$type": "color",
|
|
985
|
+
"$value": "#2a3a03",
|
|
986
|
+
"$extensions": {
|
|
987
|
+
"com.figma.scopes": []
|
|
988
|
+
}
|
|
989
|
+
},
|
|
990
|
+
"900": {
|
|
991
|
+
"$type": "color",
|
|
992
|
+
"$value": "#111801",
|
|
993
|
+
"$extensions": {
|
|
994
|
+
"com.figma.scopes": []
|
|
995
|
+
}
|
|
996
|
+
},
|
|
997
|
+
"950": {
|
|
998
|
+
"$type": "color",
|
|
999
|
+
"$value": "#0a0f01",
|
|
1000
|
+
"$extensions": {
|
|
1001
|
+
"com.figma.scopes": []
|
|
1002
|
+
}
|
|
1003
|
+
}
|
|
1004
|
+
},
|
|
1005
|
+
"yellow": {
|
|
1006
|
+
"10": {
|
|
1007
|
+
"$type": "color",
|
|
1008
|
+
"$value": "#fffef8",
|
|
1009
|
+
"$extensions": {
|
|
1010
|
+
"com.figma.scopes": []
|
|
1011
|
+
}
|
|
1012
|
+
},
|
|
1013
|
+
"50": {
|
|
1014
|
+
"$type": "color",
|
|
1015
|
+
"$value": "#fffcf0",
|
|
1016
|
+
"$extensions": {
|
|
1017
|
+
"com.figma.scopes": []
|
|
1018
|
+
}
|
|
1019
|
+
},
|
|
1020
|
+
"100": {
|
|
1021
|
+
"$type": "color",
|
|
1022
|
+
"$value": "#fff9e2",
|
|
1023
|
+
"$extensions": {
|
|
1024
|
+
"com.figma.scopes": []
|
|
1025
|
+
}
|
|
1026
|
+
},
|
|
1027
|
+
"200": {
|
|
1028
|
+
"$type": "color",
|
|
1029
|
+
"$value": "#fff0b1",
|
|
1030
|
+
"$extensions": {
|
|
1031
|
+
"com.figma.scopes": []
|
|
1032
|
+
}
|
|
1033
|
+
},
|
|
1034
|
+
"300": {
|
|
1035
|
+
"$type": "color",
|
|
1036
|
+
"$value": "#ffe278",
|
|
1037
|
+
"$extensions": {
|
|
1038
|
+
"com.figma.scopes": []
|
|
1039
|
+
}
|
|
1040
|
+
},
|
|
1041
|
+
"400": {
|
|
1042
|
+
"$type": "color",
|
|
1043
|
+
"$value": "#ffc902",
|
|
1044
|
+
"$extensions": {
|
|
1045
|
+
"com.figma.scopes": []
|
|
1046
|
+
}
|
|
1047
|
+
},
|
|
1048
|
+
"500": {
|
|
1049
|
+
"$type": "color",
|
|
1050
|
+
"$value": "#ffbe00",
|
|
1051
|
+
"$extensions": {
|
|
1052
|
+
"com.figma.scopes": []
|
|
1053
|
+
}
|
|
1054
|
+
},
|
|
1055
|
+
"600": {
|
|
1056
|
+
"$type": "color",
|
|
1057
|
+
"$value": "#de9500",
|
|
1058
|
+
"$extensions": {
|
|
1059
|
+
"com.figma.scopes": []
|
|
1060
|
+
}
|
|
1061
|
+
},
|
|
1062
|
+
"700": {
|
|
1063
|
+
"$type": "color",
|
|
1064
|
+
"$value": "#c98600",
|
|
1065
|
+
"$extensions": {
|
|
1066
|
+
"com.figma.scopes": []
|
|
1067
|
+
}
|
|
1068
|
+
},
|
|
1069
|
+
"800": {
|
|
1070
|
+
"$type": "color",
|
|
1071
|
+
"$value": "#704b00",
|
|
1072
|
+
"$extensions": {
|
|
1073
|
+
"com.figma.scopes": []
|
|
1074
|
+
}
|
|
1075
|
+
},
|
|
1076
|
+
"900": {
|
|
1077
|
+
"$type": "color",
|
|
1078
|
+
"$value": "#382500",
|
|
1079
|
+
"$extensions": {
|
|
1080
|
+
"com.figma.scopes": []
|
|
1081
|
+
}
|
|
1082
|
+
},
|
|
1083
|
+
"950": {
|
|
1084
|
+
"$type": "color",
|
|
1085
|
+
"$value": "#191100",
|
|
1086
|
+
"$extensions": {
|
|
1087
|
+
"com.figma.scopes": []
|
|
1088
|
+
}
|
|
1089
|
+
}
|
|
1090
|
+
}
|
|
1091
|
+
}
|
|
1092
|
+
}
|