@gitlab/ui 115.0.1 → 115.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/bin/migrate_custom_utils_to_tw.bundled.mjs +172489 -139144
- package/dist/components/dashboards/dashboard_layout/grid_layout/grid_layout.js +286 -0
- package/dist/components/dashboards/mock_data.js +49 -0
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/tailwind.css +1 -1
- package/dist/tailwind.css.map +1 -1
- package/dist/tokens/docs/tokens-tailwind-docs.dark.json +7986 -0
- package/dist/tokens/docs/tokens-tailwind-docs.json +7986 -0
- package/dist/tokens/figma/constants.tokens.json +944 -236
- package/dist/tokens/figma/contextual.tokens.json +2721 -418
- package/dist/tokens/figma/deprecated.tokens.json +664 -8
- package/dist/tokens/figma/semantic.tokens.json +1130 -169
- package/dist/tokens/js/tokens.dark.js +1089 -1047
- package/dist/tokens/js/tokens.js +1078 -1047
- package/dist/tokens/json/tokens.dark.json +9267 -3
- package/dist/tokens/json/tokens.json +9267 -3
- package/dist/tokens/tailwind/tokens.cjs +76 -407
- package/package.json +19 -46
- package/src/components/base/accordion/accordion_item.vue +1 -1
- package/src/components/base/avatar/avatar.vue +1 -1
- package/src/components/base/button/button.vue +1 -1
- package/src/components/base/dropdown/dropdown.vue +3 -1
- package/src/components/base/filtered_search/filtered_search.vue +1 -1
- package/src/components/base/filtered_search/filtered_search_suggestion_list.vue +1 -1
- package/src/components/base/filtered_search/filtered_search_token.vue +1 -1
- package/src/components/base/filtered_search/filtered_search_token_segment.vue +3 -3
- package/src/components/base/form/form_checkbox_tree/models/tree.js +1 -1
- package/src/components/base/form/form_date/form_date.vue +1 -1
- package/src/components/base/form/form_input/form_input.vue +1 -1
- package/src/components/base/form/form_select/form_select.vue +1 -1
- package/src/components/base/modal/modal.vue +2 -2
- package/src/components/base/new_dropdowns/base_dropdown/base_dropdown.vue +4 -4
- package/src/components/base/new_dropdowns/disclosure/disclosure_dropdown.md +1 -2
- package/src/components/base/new_dropdowns/listbox/listbox.vue +7 -7
- package/src/components/base/pagination/pagination.vue +2 -2
- package/src/components/base/path/path.vue +1 -1
- package/src/components/base/skeleton_loader/skeleton_loader.vue +9 -9
- package/src/components/base/table/table.md +1 -2
- package/src/components/base/table_lite/table_lite.md +1 -1
- package/src/components/base/tabs/tabs/tabs.vue +1 -1
- package/src/components/base/toast/toast.js +2 -2
- package/src/components/base/token_selector/token_container.vue +1 -1
- package/src/components/base/token_selector/token_selector.vue +2 -2
- package/src/components/base/token_selector/token_selector_dropdown.vue +1 -1
- package/src/components/charts/area/area.vue +3 -3
- package/src/components/charts/bar/bar.vue +2 -2
- package/src/components/charts/column/column.vue +2 -2
- package/src/components/charts/discrete_scatter/discrete_scatter.vue +2 -2
- package/src/components/charts/gauge/gauge.vue +1 -1
- package/src/components/charts/heatmap/heatmap.vue +2 -2
- package/src/components/charts/heatmap/index.js +1 -0
- package/src/components/charts/legend/legend.vue +1 -1
- package/src/components/charts/line/line.vue +3 -3
- package/src/components/charts/sparkline/sparkline.vue +1 -1
- package/src/components/charts/stacked_column/stacked_column.vue +1 -1
- package/src/components/dashboards/dashboard_layout/grid_layout/grid_layout.scss +1 -0
- package/src/components/dashboards/dashboard_layout/grid_layout/grid_layout.vue +247 -0
- package/src/components/dashboards/mock_data.js +40 -0
- package/src/components/mixins/tooltip_mixin.js +1 -1
- package/src/components/utilities/intersection_observer/intersection_observer.vue +1 -1
- package/src/components/utilities/intersperse/intersperse.vue +2 -2
- package/src/components/utilities/sprintf/sprintf.md +1 -1
- package/src/components/utilities/sprintf/sprintf.vue +1 -1
- package/src/components/utilities/truncate/truncate.vue +2 -2
- package/src/config.js +1 -1
- package/src/directives/outside/outside.js +4 -4
- package/src/directives/tooltip/tooltip.js +1 -1
- package/src/scss/components.scss +1 -0
- package/src/tokens/build/docs/tokens-tailwind-docs.dark.json +7986 -0
- package/src/tokens/build/docs/tokens-tailwind-docs.json +7986 -0
- package/src/tokens/build/figma/constants.tokens.json +944 -236
- package/src/tokens/build/figma/contextual.tokens.json +2721 -418
- package/src/tokens/build/figma/deprecated.tokens.json +664 -8
- package/src/tokens/build/figma/semantic.tokens.json +1130 -169
- package/src/tokens/build/json/tokens.dark.json +9267 -3
- package/src/tokens/build/json/tokens.json +9267 -3
- package/src/tokens/constant/color.alpha.tokens.json +60 -15
- package/src/tokens/constant/color.tokens.json +844 -211
- package/src/tokens/constant/line_height.tokens.json +40 -10
- package/src/tokens/contextual/alert.tokens.json +119 -19
- package/src/tokens/contextual/avatar.tokens.json +90 -14
- package/src/tokens/contextual/badge.tokens.json +728 -112
- package/src/tokens/contextual/banner.tokens.json +19 -3
- package/src/tokens/contextual/breadcrumb.tokens.json +6 -1
- package/src/tokens/contextual/broadcast.tokens.json +301 -81
- package/src/tokens/contextual/button.tokens.json +793 -120
- package/src/tokens/contextual/chart.tokens.json +42 -7
- package/src/tokens/contextual/datepicker.tokens.json +13 -2
- package/src/tokens/contextual/dropdown.tokens.json +142 -21
- package/src/tokens/contextual/filtered-search.tokens.json +42 -6
- package/src/tokens/contextual/illustration.tokens.json +195 -33
- package/src/tokens/contextual/label.tokens.json +81 -12
- package/src/tokens/contextual/link.tokens.json +26 -4
- package/src/tokens/contextual/progress-bar.tokens.json +35 -5
- package/src/tokens/contextual/skeleton-loader.tokens.json +12 -2
- package/src/tokens/contextual/spinner.tokens.json +24 -4
- package/src/tokens/contextual/table.tokens.json +14 -2
- package/src/tokens/contextual/tabs.tokens.json +7 -1
- package/src/tokens/contextual/toggle.tokens.json +54 -9
- package/src/tokens/contextual/token-selector.tokens.json +7 -1
- package/src/tokens/contextual/token.tokens.json +14 -2
- package/src/tokens/deprecated/deprecated.color.data_viz.tokens.json +165 -0
- package/src/tokens/deprecated/deprecated.color.theme.tokens.json +216 -0
- package/src/tokens/deprecated/deprecated.color.tokens.json +240 -0
- package/src/tokens/deprecated/deprecated.color.transparency.tokens.json +39 -0
- package/src/tokens/semantic/action.tokens.json +500 -75
- package/src/tokens/semantic/background.tokens.json +49 -7
- package/src/tokens/semantic/border.tokens.json +30 -5
- package/src/tokens/semantic/control.tokens.json +129 -20
- package/src/tokens/semantic/feedback.tokens.json +126 -19
- package/src/tokens/semantic/focus-ring.tokens.json +12 -2
- package/src/tokens/semantic/highlight.tokens.json +26 -4
- package/src/tokens/semantic/icon.tokens.json +63 -9
- package/src/tokens/semantic/shadow.tokens.json +6 -1
- package/src/tokens/semantic/status.tokens.json +120 -18
- package/src/tokens/semantic/text.tokens.json +69 -9
- package/src/tokens/tokens_tailwind_table.vue +1 -1
- package/src/utils/charts/config.js +7 -7
- package/src/utils/charts/utils.js +1 -1
- package/src/utils/use_mock_intersection_observer.js +1 -1
- package/src/utils/utils.js +1 -1
- package/tailwind.defaults.js +1 -1
- package/translations.js +2 -2
|
@@ -8,17 +8,27 @@
|
|
|
8
8
|
"dark": "#e3e3e8"
|
|
9
9
|
},
|
|
10
10
|
"$type": "color",
|
|
11
|
-
"$description": "Default stroke color to define shape and provide essential detail."
|
|
11
|
+
"$description": "Default stroke color to define shape and provide essential detail.",
|
|
12
|
+
"$extensions": {
|
|
13
|
+
"com.figma.scope": [
|
|
14
|
+
"STROKE_COLOR"
|
|
15
|
+
]
|
|
16
|
+
}
|
|
12
17
|
}
|
|
13
18
|
},
|
|
14
|
-
"width"
|
|
19
|
+
"width": {
|
|
15
20
|
"default": {
|
|
16
21
|
"$value": {
|
|
17
22
|
"default": "2",
|
|
18
23
|
"dark": "1.5"
|
|
19
24
|
},
|
|
20
25
|
"$type": "dimension",
|
|
21
|
-
"$description": "Default stroke width to define shape and provide essential detail."
|
|
26
|
+
"$description": "Default stroke width to define shape and provide essential detail.",
|
|
27
|
+
"$extensions": {
|
|
28
|
+
"com.figma.scope": [
|
|
29
|
+
"STROKE_FLOAT"
|
|
30
|
+
]
|
|
31
|
+
}
|
|
22
32
|
}
|
|
23
33
|
}
|
|
24
34
|
},
|
|
@@ -30,7 +40,12 @@
|
|
|
30
40
|
"dark": "#423f4f"
|
|
31
41
|
},
|
|
32
42
|
"$type": "color",
|
|
33
|
-
"$description": "Default fill color for an element where specific meaning or emphasis is not required."
|
|
43
|
+
"$description": "Default fill color for an element where specific meaning or emphasis is not required.",
|
|
44
|
+
"$extensions": {
|
|
45
|
+
"com.figma.scope": [
|
|
46
|
+
"SHAPE_FILL"
|
|
47
|
+
]
|
|
48
|
+
}
|
|
34
49
|
}
|
|
35
50
|
}
|
|
36
51
|
},
|
|
@@ -43,7 +58,12 @@
|
|
|
43
58
|
"dark": "#6f6796"
|
|
44
59
|
},
|
|
45
60
|
"$type": "color",
|
|
46
|
-
"$description": "Used as a fill to convey a concept which is neither positive or negative."
|
|
61
|
+
"$description": "Used as a fill to convey a concept which is neither positive or negative.",
|
|
62
|
+
"$extensions": {
|
|
63
|
+
"com.figma.scope": [
|
|
64
|
+
"SHAPE_FILL"
|
|
65
|
+
]
|
|
66
|
+
}
|
|
47
67
|
},
|
|
48
68
|
"success": {
|
|
49
69
|
"$value": {
|
|
@@ -51,7 +71,12 @@
|
|
|
51
71
|
"dark": "#3b8581"
|
|
52
72
|
},
|
|
53
73
|
"$type": "color",
|
|
54
|
-
"$description": "Used as a fill to convey a success or active concept, has a positive connotation."
|
|
74
|
+
"$description": "Used as a fill to convey a success or active concept, has a positive connotation.",
|
|
75
|
+
"$extensions": {
|
|
76
|
+
"com.figma.scope": [
|
|
77
|
+
"SHAPE_FILL"
|
|
78
|
+
]
|
|
79
|
+
}
|
|
55
80
|
},
|
|
56
81
|
"warning": {
|
|
57
82
|
"$value": {
|
|
@@ -59,7 +84,12 @@
|
|
|
59
84
|
"dark": "#ab752f"
|
|
60
85
|
},
|
|
61
86
|
"$type": "color",
|
|
62
|
-
"$description": "Used as a fill to convey a caution or warning concept, has a slightly negative connotation."
|
|
87
|
+
"$description": "Used as a fill to convey a caution or warning concept, has a slightly negative connotation.",
|
|
88
|
+
"$extensions": {
|
|
89
|
+
"com.figma.scope": [
|
|
90
|
+
"SHAPE_FILL"
|
|
91
|
+
]
|
|
92
|
+
}
|
|
63
93
|
},
|
|
64
94
|
"danger": {
|
|
65
95
|
"$value": {
|
|
@@ -67,7 +97,12 @@
|
|
|
67
97
|
"dark": "#aa563a"
|
|
68
98
|
},
|
|
69
99
|
"$type": "color",
|
|
70
|
-
"$description": "Used as a fill to convey a critical or danger concept, has a negative connotation."
|
|
100
|
+
"$description": "Used as a fill to convey a critical or danger concept, has a negative connotation.",
|
|
101
|
+
"$extensions": {
|
|
102
|
+
"com.figma.scope": [
|
|
103
|
+
"SHAPE_FILL"
|
|
104
|
+
]
|
|
105
|
+
}
|
|
71
106
|
}
|
|
72
107
|
}
|
|
73
108
|
}
|
|
@@ -81,7 +116,12 @@
|
|
|
81
116
|
"dark": "#e3865f"
|
|
82
117
|
},
|
|
83
118
|
"$type": "color",
|
|
84
|
-
"$description": "Used for orange accent stroke detail on an object or attention-drawing element."
|
|
119
|
+
"$description": "Used for orange accent stroke detail on an object or attention-drawing element.",
|
|
120
|
+
"$extensions": {
|
|
121
|
+
"com.figma.scope": [
|
|
122
|
+
"STROKE_COLOR"
|
|
123
|
+
]
|
|
124
|
+
}
|
|
85
125
|
},
|
|
86
126
|
"teal": {
|
|
87
127
|
"$value": {
|
|
@@ -89,7 +129,12 @@
|
|
|
89
129
|
"dark": "#6baea3"
|
|
90
130
|
},
|
|
91
131
|
"$type": "color",
|
|
92
|
-
"$description": "Used for teal accent stroke detail on an object or attention-drawing element."
|
|
132
|
+
"$description": "Used for teal accent stroke detail on an object or attention-drawing element.",
|
|
133
|
+
"$extensions": {
|
|
134
|
+
"com.figma.scope": [
|
|
135
|
+
"STROKE_COLOR"
|
|
136
|
+
]
|
|
137
|
+
}
|
|
93
138
|
},
|
|
94
139
|
"strong": {
|
|
95
140
|
"$value": {
|
|
@@ -97,7 +142,12 @@
|
|
|
97
142
|
"dark": "#aea5d6"
|
|
98
143
|
},
|
|
99
144
|
"$type": "color",
|
|
100
|
-
"$description": "Used for dark accent stroke detail on an object or attention-drawing element."
|
|
145
|
+
"$description": "Used for dark accent stroke detail on an object or attention-drawing element.",
|
|
146
|
+
"$extensions": {
|
|
147
|
+
"com.figma.scope": [
|
|
148
|
+
"STROKE_COLOR"
|
|
149
|
+
]
|
|
150
|
+
}
|
|
101
151
|
}
|
|
102
152
|
}
|
|
103
153
|
},
|
|
@@ -109,7 +159,12 @@
|
|
|
109
159
|
"dark": "#5c5371"
|
|
110
160
|
},
|
|
111
161
|
"$type": "color",
|
|
112
|
-
"$description": "Used to add depth to a secondary element and supporting surface."
|
|
162
|
+
"$description": "Used to add depth to a secondary element and supporting surface.",
|
|
163
|
+
"$extensions": {
|
|
164
|
+
"com.figma.scope": [
|
|
165
|
+
"SHAPE_FILL"
|
|
166
|
+
]
|
|
167
|
+
}
|
|
113
168
|
},
|
|
114
169
|
"strong": {
|
|
115
170
|
"$value": {
|
|
@@ -117,7 +172,12 @@
|
|
|
117
172
|
"dark": "#6f6796"
|
|
118
173
|
},
|
|
119
174
|
"$type": "color",
|
|
120
|
-
"$description": "Used for an element requiring visual emphasis without competing with primary content or status indicators."
|
|
175
|
+
"$description": "Used for an element requiring visual emphasis without competing with primary content or status indicators.",
|
|
176
|
+
"$extensions": {
|
|
177
|
+
"com.figma.scope": [
|
|
178
|
+
"SHAPE_FILL"
|
|
179
|
+
]
|
|
180
|
+
}
|
|
121
181
|
},
|
|
122
182
|
"orange": {
|
|
123
183
|
"$value": {
|
|
@@ -125,7 +185,12 @@
|
|
|
125
185
|
"dark": "#aa563a"
|
|
126
186
|
},
|
|
127
187
|
"$type": "color",
|
|
128
|
-
"$description": "Used to add orange to a secondary element and supporting surface."
|
|
188
|
+
"$description": "Used to add orange to a secondary element and supporting surface.",
|
|
189
|
+
"$extensions": {
|
|
190
|
+
"com.figma.scope": [
|
|
191
|
+
"SHAPE_FILL"
|
|
192
|
+
]
|
|
193
|
+
}
|
|
129
194
|
},
|
|
130
195
|
"teal": {
|
|
131
196
|
"$value": {
|
|
@@ -133,7 +198,12 @@
|
|
|
133
198
|
"dark": "#3b8581"
|
|
134
199
|
},
|
|
135
200
|
"$type": "color",
|
|
136
|
-
"$description": "Used to add teal to a secondary element and supporting surface."
|
|
201
|
+
"$description": "Used to add teal to a secondary element and supporting surface.",
|
|
202
|
+
"$extensions": {
|
|
203
|
+
"com.figma.scope": [
|
|
204
|
+
"SHAPE_FILL"
|
|
205
|
+
]
|
|
206
|
+
}
|
|
137
207
|
}
|
|
138
208
|
}
|
|
139
209
|
}
|
|
@@ -146,7 +216,12 @@
|
|
|
146
216
|
"dark": "#32303c"
|
|
147
217
|
},
|
|
148
218
|
"$type": "color",
|
|
149
|
-
"$description": "Used for the consistent background shape present across all illustrations. Provides a unified foundation that visually grounds each illustration while maintaining system cohesion."
|
|
219
|
+
"$description": "Used for the consistent background shape present across all illustrations. Provides a unified foundation that visually grounds each illustration while maintaining system cohesion.",
|
|
220
|
+
"$extensions": {
|
|
221
|
+
"com.figma.scope": [
|
|
222
|
+
"SHAPE_FILL"
|
|
223
|
+
]
|
|
224
|
+
}
|
|
150
225
|
}
|
|
151
226
|
}
|
|
152
227
|
},
|
|
@@ -159,7 +234,12 @@
|
|
|
159
234
|
"dark": "#e3e3e8"
|
|
160
235
|
},
|
|
161
236
|
"$type": "color",
|
|
162
|
-
"$description": "Default stroke color to define shape and provide essential detail in isometric illustration."
|
|
237
|
+
"$description": "Default stroke color to define shape and provide essential detail in isometric illustration.",
|
|
238
|
+
"$extensions": {
|
|
239
|
+
"com.figma.scope": [
|
|
240
|
+
"STROKE_COLOR"
|
|
241
|
+
]
|
|
242
|
+
}
|
|
163
243
|
}
|
|
164
244
|
},
|
|
165
245
|
"width": {
|
|
@@ -169,7 +249,12 @@
|
|
|
169
249
|
"dark": "1.5"
|
|
170
250
|
},
|
|
171
251
|
"$type": "dimension",
|
|
172
|
-
"$description": "Default stroke width to define shape and provide essential detail in isometric illustration."
|
|
252
|
+
"$description": "Default stroke width to define shape and provide essential detail in isometric illustration.",
|
|
253
|
+
"$extensions": {
|
|
254
|
+
"com.figma.scope": [
|
|
255
|
+
"STROKE_FLOAT"
|
|
256
|
+
]
|
|
257
|
+
}
|
|
173
258
|
}
|
|
174
259
|
}
|
|
175
260
|
},
|
|
@@ -182,7 +267,12 @@
|
|
|
182
267
|
"dark": "#5a566c"
|
|
183
268
|
},
|
|
184
269
|
"$type": "color",
|
|
185
|
-
"$description": "Used for the top face of isometric text and number elements."
|
|
270
|
+
"$description": "Used for the top face of isometric text and number elements.",
|
|
271
|
+
"$extensions": {
|
|
272
|
+
"com.figma.scope": [
|
|
273
|
+
"SHAPE_FILL"
|
|
274
|
+
]
|
|
275
|
+
}
|
|
186
276
|
}
|
|
187
277
|
}
|
|
188
278
|
},
|
|
@@ -194,7 +284,12 @@
|
|
|
194
284
|
"dark": "#423f4f"
|
|
195
285
|
},
|
|
196
286
|
"$type": "color",
|
|
197
|
-
"$description": "Used for the front face of isometric text and number elements."
|
|
287
|
+
"$description": "Used for the front face of isometric text and number elements.",
|
|
288
|
+
"$extensions": {
|
|
289
|
+
"com.figma.scope": [
|
|
290
|
+
"SHAPE_FILL"
|
|
291
|
+
]
|
|
292
|
+
}
|
|
198
293
|
}
|
|
199
294
|
}
|
|
200
295
|
},
|
|
@@ -206,7 +301,12 @@
|
|
|
206
301
|
"dark": "#373441"
|
|
207
302
|
},
|
|
208
303
|
"$type": "color",
|
|
209
|
-
"$description": "Used for the side face of isometric text and number elements."
|
|
304
|
+
"$description": "Used for the side face of isometric text and number elements.",
|
|
305
|
+
"$extensions": {
|
|
306
|
+
"com.figma.scope": [
|
|
307
|
+
"SHAPE_FILL"
|
|
308
|
+
]
|
|
309
|
+
}
|
|
210
310
|
}
|
|
211
311
|
}
|
|
212
312
|
},
|
|
@@ -218,7 +318,13 @@
|
|
|
218
318
|
"dark": "#292730"
|
|
219
319
|
},
|
|
220
320
|
"$type": "color",
|
|
221
|
-
"$description": "Used for the shadow of isometric text and number elements."
|
|
321
|
+
"$description": "Used for the shadow of isometric text and number elements.",
|
|
322
|
+
"$extensions": {
|
|
323
|
+
"com.figma.scope": [
|
|
324
|
+
"EFFECT_COLOR",
|
|
325
|
+
"SHAPE_FILL"
|
|
326
|
+
]
|
|
327
|
+
}
|
|
222
328
|
}
|
|
223
329
|
}
|
|
224
330
|
}
|
|
@@ -232,7 +338,12 @@
|
|
|
232
338
|
"dark": "#aa563a"
|
|
233
339
|
},
|
|
234
340
|
"$type": "color",
|
|
235
|
-
"$description": "Used for the top face of an isometric object or symbol."
|
|
341
|
+
"$description": "Used for the top face of an isometric object or symbol.",
|
|
342
|
+
"$extensions": {
|
|
343
|
+
"com.figma.scope": [
|
|
344
|
+
"SHAPE_FILL"
|
|
345
|
+
]
|
|
346
|
+
}
|
|
236
347
|
}
|
|
237
348
|
}
|
|
238
349
|
},
|
|
@@ -244,7 +355,12 @@
|
|
|
244
355
|
"dark": "#a54623"
|
|
245
356
|
},
|
|
246
357
|
"$type": "color",
|
|
247
|
-
"$description": "Used for the front face of an isometric object or symbol."
|
|
358
|
+
"$description": "Used for the front face of an isometric object or symbol.",
|
|
359
|
+
"$extensions": {
|
|
360
|
+
"com.figma.scope": [
|
|
361
|
+
"SHAPE_FILL"
|
|
362
|
+
]
|
|
363
|
+
}
|
|
248
364
|
}
|
|
249
365
|
}
|
|
250
366
|
},
|
|
@@ -256,7 +372,12 @@
|
|
|
256
372
|
"dark": "#8f4424"
|
|
257
373
|
},
|
|
258
374
|
"$type": "color",
|
|
259
|
-
"$description": "Used for the side face of an isometric object or symbol."
|
|
375
|
+
"$description": "Used for the side face of an isometric object or symbol.",
|
|
376
|
+
"$extensions": {
|
|
377
|
+
"com.figma.scope": [
|
|
378
|
+
"SHAPE_FILL"
|
|
379
|
+
]
|
|
380
|
+
}
|
|
260
381
|
}
|
|
261
382
|
}
|
|
262
383
|
},
|
|
@@ -268,7 +389,12 @@
|
|
|
268
389
|
"dark": "#423f4f"
|
|
269
390
|
},
|
|
270
391
|
"$type": "color",
|
|
271
|
-
"$description": "Used for the face of an isometric object or symbol that requires maximum distinction from other elements."
|
|
392
|
+
"$description": "Used for the face of an isometric object or symbol that requires maximum distinction from other elements.",
|
|
393
|
+
"$extensions": {
|
|
394
|
+
"com.figma.scope": [
|
|
395
|
+
"SHAPE_FILL"
|
|
396
|
+
]
|
|
397
|
+
}
|
|
272
398
|
}
|
|
273
399
|
}
|
|
274
400
|
},
|
|
@@ -280,7 +406,13 @@
|
|
|
280
406
|
"dark": "#3d2b2a"
|
|
281
407
|
},
|
|
282
408
|
"$type": "color",
|
|
283
|
-
"$description": "Used for the shadow of an isometric object or symbol."
|
|
409
|
+
"$description": "Used for the shadow of an isometric object or symbol.",
|
|
410
|
+
"$extensions": {
|
|
411
|
+
"com.figma.scope": [
|
|
412
|
+
"EFFECT_COLOR",
|
|
413
|
+
"SHAPE_FILL"
|
|
414
|
+
]
|
|
415
|
+
}
|
|
284
416
|
}
|
|
285
417
|
}
|
|
286
418
|
}
|
|
@@ -294,7 +426,12 @@
|
|
|
294
426
|
"dark": "#6d6972"
|
|
295
427
|
},
|
|
296
428
|
"$type": "color",
|
|
297
|
-
"$description": "Used for the top face of a supporting isometric element. Provides subtle dimensional variation without competing with primary content."
|
|
429
|
+
"$description": "Used for the top face of a supporting isometric element. Provides subtle dimensional variation without competing with primary content.",
|
|
430
|
+
"$extensions": {
|
|
431
|
+
"com.figma.scope": [
|
|
432
|
+
"SHAPE_FILL"
|
|
433
|
+
]
|
|
434
|
+
}
|
|
298
435
|
}
|
|
299
436
|
}
|
|
300
437
|
},
|
|
@@ -306,7 +443,12 @@
|
|
|
306
443
|
"dark": "#49474d"
|
|
307
444
|
},
|
|
308
445
|
"$type": "color",
|
|
309
|
-
"$description": "Used for the front face of a supporting isometric element. Provides subtle dimensional variation without competing with primary content."
|
|
446
|
+
"$description": "Used for the front face of a supporting isometric element. Provides subtle dimensional variation without competing with primary content.",
|
|
447
|
+
"$extensions": {
|
|
448
|
+
"com.figma.scope": [
|
|
449
|
+
"SHAPE_FILL"
|
|
450
|
+
]
|
|
451
|
+
}
|
|
310
452
|
}
|
|
311
453
|
}
|
|
312
454
|
},
|
|
@@ -318,7 +460,12 @@
|
|
|
318
460
|
"dark": "#212023"
|
|
319
461
|
},
|
|
320
462
|
"$type": "color",
|
|
321
|
-
"$description": "Used for the side face of a supporting isometric element. Provides subtle dimensional variation without competing with primary content."
|
|
463
|
+
"$description": "Used for the side face of a supporting isometric element. Provides subtle dimensional variation without competing with primary content.",
|
|
464
|
+
"$extensions": {
|
|
465
|
+
"com.figma.scope": [
|
|
466
|
+
"SHAPE_FILL"
|
|
467
|
+
]
|
|
468
|
+
}
|
|
322
469
|
}
|
|
323
470
|
}
|
|
324
471
|
}
|
|
@@ -332,7 +479,12 @@
|
|
|
332
479
|
"dark": "#32303c"
|
|
333
480
|
},
|
|
334
481
|
"$type": "color",
|
|
335
|
-
"$description": "Used for the top surface of an isometric base platform."
|
|
482
|
+
"$description": "Used for the top surface of an isometric base platform.",
|
|
483
|
+
"$extensions": {
|
|
484
|
+
"com.figma.scope": [
|
|
485
|
+
"SHAPE_FILL"
|
|
486
|
+
]
|
|
487
|
+
}
|
|
336
488
|
}
|
|
337
489
|
}
|
|
338
490
|
},
|
|
@@ -344,7 +496,12 @@
|
|
|
344
496
|
"dark": "#2b2932"
|
|
345
497
|
},
|
|
346
498
|
"$type": "color",
|
|
347
|
-
"$description": "Used for the front face of an isometric base platform."
|
|
499
|
+
"$description": "Used for the front face of an isometric base platform.",
|
|
500
|
+
"$extensions": {
|
|
501
|
+
"com.figma.scope": [
|
|
502
|
+
"SHAPE_FILL"
|
|
503
|
+
]
|
|
504
|
+
}
|
|
348
505
|
}
|
|
349
506
|
}
|
|
350
507
|
},
|
|
@@ -356,7 +513,12 @@
|
|
|
356
513
|
"dark": "#23222b"
|
|
357
514
|
},
|
|
358
515
|
"$type": "color",
|
|
359
|
-
"$description": "Used for the side face of an isometric base platform."
|
|
516
|
+
"$description": "Used for the side face of an isometric base platform.",
|
|
517
|
+
"$extensions": {
|
|
518
|
+
"com.figma.scope": [
|
|
519
|
+
"SHAPE_FILL"
|
|
520
|
+
]
|
|
521
|
+
}
|
|
360
522
|
}
|
|
361
523
|
}
|
|
362
524
|
}
|
|
@@ -5,7 +5,12 @@
|
|
|
5
5
|
"color": {
|
|
6
6
|
"$value": "{color.neutral.950}",
|
|
7
7
|
"$type": "color",
|
|
8
|
-
"$description": "Used for the label text color on a light background color."
|
|
8
|
+
"$description": "Used for the label text color on a light background color.",
|
|
9
|
+
"$extensions": {
|
|
10
|
+
"com.figma.scope": [
|
|
11
|
+
"TEXT_FILL"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
9
14
|
}
|
|
10
15
|
},
|
|
11
16
|
"button": {
|
|
@@ -14,12 +19,24 @@
|
|
|
14
19
|
"default": {
|
|
15
20
|
"$value": "{color.alpha.0}",
|
|
16
21
|
"$type": "color",
|
|
17
|
-
"$description": "Used for the label remove button background on a light background color in the default state."
|
|
22
|
+
"$description": "Used for the label remove button background on a light background color in the default state.",
|
|
23
|
+
"$extensions": {
|
|
24
|
+
"com.figma.scope": [
|
|
25
|
+
"FRAME_FILL",
|
|
26
|
+
"SHAPE_FILL"
|
|
27
|
+
]
|
|
28
|
+
}
|
|
18
29
|
},
|
|
19
30
|
"hover": {
|
|
20
31
|
"$value": "{color.neutral.950}",
|
|
21
32
|
"$type": "color",
|
|
22
|
-
"$description": "Used for the label remove button background on a light background color in the hover state."
|
|
33
|
+
"$description": "Used for the label remove button background on a light background color in the hover state.",
|
|
34
|
+
"$extensions": {
|
|
35
|
+
"com.figma.scope": [
|
|
36
|
+
"FRAME_FILL",
|
|
37
|
+
"SHAPE_FILL"
|
|
38
|
+
]
|
|
39
|
+
}
|
|
23
40
|
}
|
|
24
41
|
}
|
|
25
42
|
},
|
|
@@ -28,7 +45,13 @@
|
|
|
28
45
|
"default": {
|
|
29
46
|
"$value": "{color.neutral.950}",
|
|
30
47
|
"$type": "color",
|
|
31
|
-
"$description": "Used for the label remove button icon on a light background color in the default state."
|
|
48
|
+
"$description": "Used for the label remove button icon on a light background color in the default state.",
|
|
49
|
+
"$extensions": {
|
|
50
|
+
"com.figma.scope": [
|
|
51
|
+
"SHAPE_FILL",
|
|
52
|
+
"TEXT_FILL"
|
|
53
|
+
]
|
|
54
|
+
}
|
|
32
55
|
}
|
|
33
56
|
}
|
|
34
57
|
}
|
|
@@ -39,7 +62,12 @@
|
|
|
39
62
|
"color": {
|
|
40
63
|
"$value": "{color.neutral.0}",
|
|
41
64
|
"$type": "color",
|
|
42
|
-
"$description": "Used for the label text color on a dark background color."
|
|
65
|
+
"$description": "Used for the label text color on a dark background color.",
|
|
66
|
+
"$extensions": {
|
|
67
|
+
"com.figma.scope": [
|
|
68
|
+
"TEXT_FILL"
|
|
69
|
+
]
|
|
70
|
+
}
|
|
43
71
|
}
|
|
44
72
|
},
|
|
45
73
|
"button": {
|
|
@@ -48,12 +76,24 @@
|
|
|
48
76
|
"default": {
|
|
49
77
|
"$value": "{color.alpha.0}",
|
|
50
78
|
"$type": "color",
|
|
51
|
-
"$description": "Used for the label remove button background on a dark background color in the default state."
|
|
79
|
+
"$description": "Used for the label remove button background on a dark background color in the default state.",
|
|
80
|
+
"$extensions": {
|
|
81
|
+
"com.figma.scope": [
|
|
82
|
+
"FRAME_FILL",
|
|
83
|
+
"SHAPE_FILL"
|
|
84
|
+
]
|
|
85
|
+
}
|
|
52
86
|
},
|
|
53
87
|
"hover": {
|
|
54
88
|
"$value": "{color.neutral.0}",
|
|
55
89
|
"$type": "color",
|
|
56
|
-
"$description": "Used for the label remove button background on a dark background color in the hover state."
|
|
90
|
+
"$description": "Used for the label remove button background on a dark background color in the hover state.",
|
|
91
|
+
"$extensions": {
|
|
92
|
+
"com.figma.scope": [
|
|
93
|
+
"FRAME_FILL",
|
|
94
|
+
"SHAPE_FILL"
|
|
95
|
+
]
|
|
96
|
+
}
|
|
57
97
|
}
|
|
58
98
|
}
|
|
59
99
|
},
|
|
@@ -62,7 +102,13 @@
|
|
|
62
102
|
"default": {
|
|
63
103
|
"$value": "{color.neutral.0}",
|
|
64
104
|
"$type": "color",
|
|
65
|
-
"$description": "Used for the label remove button icon on a dark background color in the default state."
|
|
105
|
+
"$description": "Used for the label remove button icon on a dark background color in the default state.",
|
|
106
|
+
"$extensions": {
|
|
107
|
+
"com.figma.scope": [
|
|
108
|
+
"SHAPE_FILL",
|
|
109
|
+
"TEXT_FILL"
|
|
110
|
+
]
|
|
111
|
+
}
|
|
66
112
|
}
|
|
67
113
|
}
|
|
68
114
|
}
|
|
@@ -76,7 +122,12 @@
|
|
|
76
122
|
"dark": "{color.neutral.0}"
|
|
77
123
|
},
|
|
78
124
|
"$type": "color",
|
|
79
|
-
"$description": "Used for the scoped label text color."
|
|
125
|
+
"$description": "Used for the scoped label text color.",
|
|
126
|
+
"$extensions": {
|
|
127
|
+
"com.figma.scope": [
|
|
128
|
+
"TEXT_FILL"
|
|
129
|
+
]
|
|
130
|
+
}
|
|
80
131
|
}
|
|
81
132
|
},
|
|
82
133
|
"button": {
|
|
@@ -88,7 +139,13 @@
|
|
|
88
139
|
"dark": "{color.neutral.0}"
|
|
89
140
|
},
|
|
90
141
|
"$type": "color",
|
|
91
|
-
"$description": "Used for the scoped label remove button background in the hover state."
|
|
142
|
+
"$description": "Used for the scoped label remove button background in the hover state.",
|
|
143
|
+
"$extensions": {
|
|
144
|
+
"com.figma.scope": [
|
|
145
|
+
"FRAME_FILL",
|
|
146
|
+
"SHAPE_FILL"
|
|
147
|
+
]
|
|
148
|
+
}
|
|
92
149
|
}
|
|
93
150
|
}
|
|
94
151
|
},
|
|
@@ -100,7 +157,13 @@
|
|
|
100
157
|
"dark": "{color.neutral.0}"
|
|
101
158
|
},
|
|
102
159
|
"$type": "color",
|
|
103
|
-
"$description": "Used for the scoped label remove button icon in the default state."
|
|
160
|
+
"$description": "Used for the scoped label remove button icon in the default state.",
|
|
161
|
+
"$extensions": {
|
|
162
|
+
"com.figma.scope": [
|
|
163
|
+
"SHAPE_FILL",
|
|
164
|
+
"TEXT_FILL"
|
|
165
|
+
]
|
|
166
|
+
}
|
|
104
167
|
},
|
|
105
168
|
"hover": {
|
|
106
169
|
"$value": {
|
|
@@ -108,7 +171,13 @@
|
|
|
108
171
|
"dark": "{color.neutral.950}"
|
|
109
172
|
},
|
|
110
173
|
"$type": "color",
|
|
111
|
-
"$description": "Used for the scoped label remove button icon in the hover state."
|
|
174
|
+
"$description": "Used for the scoped label remove button icon in the hover state.",
|
|
175
|
+
"$extensions": {
|
|
176
|
+
"com.figma.scope": [
|
|
177
|
+
"SHAPE_FILL",
|
|
178
|
+
"TEXT_FILL"
|
|
179
|
+
]
|
|
180
|
+
}
|
|
112
181
|
}
|
|
113
182
|
}
|
|
114
183
|
}
|
|
@@ -9,7 +9,12 @@
|
|
|
9
9
|
"dark": "{color.blue.100}"
|
|
10
10
|
},
|
|
11
11
|
"$type": "color",
|
|
12
|
-
"$description": "Used for the mention link text color."
|
|
12
|
+
"$description": "Used for the mention link text color.",
|
|
13
|
+
"$extensions": {
|
|
14
|
+
"com.figma.scope": [
|
|
15
|
+
"TEXT_FILL"
|
|
16
|
+
]
|
|
17
|
+
}
|
|
13
18
|
},
|
|
14
19
|
"current": {
|
|
15
20
|
"$value": {
|
|
@@ -17,7 +22,12 @@
|
|
|
17
22
|
"dark": "{color.orange.100}"
|
|
18
23
|
},
|
|
19
24
|
"$type": "color",
|
|
20
|
-
"$description": "Used for the mention link text color when referencing the current user."
|
|
25
|
+
"$description": "Used for the mention link text color when referencing the current user.",
|
|
26
|
+
"$extensions": {
|
|
27
|
+
"com.figma.scope": [
|
|
28
|
+
"TEXT_FILL"
|
|
29
|
+
]
|
|
30
|
+
}
|
|
21
31
|
}
|
|
22
32
|
}
|
|
23
33
|
},
|
|
@@ -29,7 +39,13 @@
|
|
|
29
39
|
"dark": "{color.blue.800}"
|
|
30
40
|
},
|
|
31
41
|
"$type": "color",
|
|
32
|
-
"$description": "Used for the mention link default background."
|
|
42
|
+
"$description": "Used for the mention link default background.",
|
|
43
|
+
"$extensions": {
|
|
44
|
+
"com.figma.scope": [
|
|
45
|
+
"FRAME_FILL",
|
|
46
|
+
"SHAPE_FILL"
|
|
47
|
+
]
|
|
48
|
+
}
|
|
33
49
|
},
|
|
34
50
|
"current": {
|
|
35
51
|
"$value": {
|
|
@@ -37,7 +53,13 @@
|
|
|
37
53
|
"dark": "{color.orange.800}"
|
|
38
54
|
},
|
|
39
55
|
"$type": "color",
|
|
40
|
-
"$description": "Used for the mention link background when referencing the current user."
|
|
56
|
+
"$description": "Used for the mention link background when referencing the current user.",
|
|
57
|
+
"$extensions": {
|
|
58
|
+
"com.figma.scope": [
|
|
59
|
+
"FRAME_FILL",
|
|
60
|
+
"SHAPE_FILL"
|
|
61
|
+
]
|
|
62
|
+
}
|
|
41
63
|
}
|
|
42
64
|
}
|
|
43
65
|
}
|