@gitlab/ui 134.2.0 → 134.3.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/dist/components/base/nav_item/nav_item.js +122 -0
- package/dist/components/base/new_dropdowns/listbox/listbox.js +1 -1
- package/dist/components/index.js +1 -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/build/js/tokens.dark.js +20 -1
- package/dist/tokens/build/js/tokens.js +20 -1
- package/package.json +8 -8
- package/src/components/base/nav_item/nav_item.scss +90 -0
- package/src/components/base/nav_item/nav_item.vue +156 -0
- package/src/components/base/new_dropdowns/listbox/listbox.vue +2 -2
- package/src/components/index.js +1 -0
- package/src/scss/components.scss +1 -0
- package/src/tokens/build/css/tokens.css +19 -0
- package/src/tokens/build/css/tokens.dark.css +19 -0
- package/src/tokens/build/figma/mode.dark.json +190 -0
- package/src/tokens/build/figma/mode.json +190 -0
- package/src/tokens/build/js/tokens.dark.js +19 -0
- package/src/tokens/build/js/tokens.js +19 -0
- package/src/tokens/build/json/tokens.dark.json +658 -0
- package/src/tokens/build/json/tokens.json +658 -0
- package/src/tokens/build/scss/_tokens.dark.scss +19 -0
- package/src/tokens/build/scss/_tokens.scss +19 -0
- package/src/tokens/build/scss/_tokens_custom_properties.scss +19 -0
- package/src/tokens/contextual/nav.tokens.json +218 -0
|
@@ -306,6 +306,7 @@ $gl-illustration-isometric-accent-side-fill-color: #212023; // Used for the side
|
|
|
306
306
|
$gl-illustration-isometric-base-top-fill-color: #32303c; // Used for the top surface of an isometric base platform.
|
|
307
307
|
$gl-illustration-isometric-base-front-fill-color: #2b2932; // Used for the front face of an isometric base platform.
|
|
308
308
|
$gl-illustration-isometric-base-side-fill-color: #23222b; // Used for the side face of an isometric base platform.
|
|
309
|
+
$gl-nav-item-font-weight: 425; // Used for the font weight of a navigation item
|
|
309
310
|
$data-viz-green-50: #133a03 !default;
|
|
310
311
|
$data-viz-green-100: #1a4500 !default;
|
|
311
312
|
$data-viz-green-200: #275600 !default;
|
|
@@ -663,6 +664,10 @@ $gl-link-mention-text-color-default: $gl-color-blue-100; // Used for the mention
|
|
|
663
664
|
$gl-link-mention-text-color-current: $gl-color-orange-100; // Used for the mention link text color when referencing the current user.
|
|
664
665
|
$gl-link-mention-background-color-default: $gl-color-blue-800; // Used for the mention link default background.
|
|
665
666
|
$gl-link-mention-background-color-current: $gl-color-orange-800; // Used for the mention link background when referencing the current user.
|
|
667
|
+
$gl-nav-item-font-size: $gl-font-size-300; // Used for the font size of a navigation item
|
|
668
|
+
$gl-nav-item-background-color-default: $gl-action-neutral-background-color-default; // Used for the background of a default navigation item in the default state.
|
|
669
|
+
$gl-nav-item-background-color-hover: $gl-action-neutral-background-color-hover; // Used for the background of a default navigation item in the hover state.
|
|
670
|
+
$gl-nav-item-background-color-active: $gl-action-neutral-background-color-active; // Used for the background of a default navigation item in the active state.
|
|
666
671
|
$gl-progress-bar-track-color: $gl-color-neutral-700; // Used for the track color for all progress-bar variants.
|
|
667
672
|
$gl-skeleton-loader-background-color: $gl-color-neutral-800; // Used for the skeleton loader background color.
|
|
668
673
|
$gl-skeleton-loader-shimmer-color: $gl-color-neutral-700; // Used for the animated shimmer effect in a skeleton loader.
|
|
@@ -1010,6 +1015,12 @@ $gl-dropdown-option-indicator-color-selected-active: $gl-control-background-colo
|
|
|
1010
1015
|
$gl-dropdown-option-background-color-unselected-focus: $gl-action-neutral-background-color-focus; // Used for the background of an unselected dropdown option in the focus state.
|
|
1011
1016
|
$gl-dropdown-option-background-color-selected-focus: $gl-dropdown-option-background-color-selected-hover; // Used for the background of a selected dropdown option in the focus state.
|
|
1012
1017
|
$gl-modal-border-radius: $gl-border-radius-2xl; // Used for modal border radius.
|
|
1018
|
+
$gl-nav-item-foreground-color-default: $gl-action-neutral-foreground-color-default; // Used for the foreground of a default navigation item in the default state.
|
|
1019
|
+
$gl-nav-item-background-color-focus: $gl-action-neutral-background-color-focus; // Used for the background of a default navigation item in the focus state.
|
|
1020
|
+
$gl-nav-item-selected-foreground-color-default: $gl-action-selected-foreground-color-default; // Used for the foreground of a selected navigation item in the default state.
|
|
1021
|
+
$gl-nav-item-selected-background-color-default: $gl-action-selected-background-color-default; // Used for the background of a selected navigation item in the default state.
|
|
1022
|
+
$gl-nav-item-selected-background-color-hover: $gl-action-selected-background-color-hover; // Used for the background of a selected navigation item in the hover state.
|
|
1023
|
+
$gl-nav-item-selected-background-color-active: $gl-action-selected-background-color-active; // Used for the background of a selected navigation item in the active state.
|
|
1013
1024
|
$gl-progress-bar-indicator-color-default: $gl-status-info-icon-color; // Used for the indicator color for the primary progress-bar variant.
|
|
1014
1025
|
$gl-progress-bar-indicator-color-success: $gl-status-success-icon-color; // Used for the indicator color for the success progress-bar variant.
|
|
1015
1026
|
$gl-progress-bar-indicator-color-warning: $gl-status-warning-icon-color; // Used for the indicator color for the warning progress-bar variant.
|
|
@@ -1199,6 +1210,12 @@ $gl-chart-zoom-handle-color: $gl-icon-color-subtle; // Used in charts for the ha
|
|
|
1199
1210
|
$gl-dropdown-option-text-color-hover: $gl-action-neutral-foreground-color-hover; // Used for the text of a dropdown option in the hover state.
|
|
1200
1211
|
$gl-dropdown-option-text-color-focus: $gl-action-neutral-foreground-color-focus; // Used for the text of a dropdown option in the focus state.
|
|
1201
1212
|
$gl-dropdown-option-text-color-active: $gl-action-neutral-foreground-color-active; // Used for the text of a dropdown option in the active state.
|
|
1213
|
+
$gl-nav-item-border-radius: $gl-action-border-radius; // Used for the border radius of a navigation item
|
|
1214
|
+
$gl-nav-item-foreground-color-hover: $gl-action-neutral-foreground-color-hover; // Used for the foreground of a default navigation item in the hover state.
|
|
1215
|
+
$gl-nav-item-foreground-color-focus: $gl-action-neutral-foreground-color-focus; // Used for the foreground of a default navigation item in the focus state.
|
|
1216
|
+
$gl-nav-item-foreground-color-active: $gl-action-neutral-foreground-color-active; // Used for the foreground of a default navigation item in the active state.
|
|
1217
|
+
$gl-nav-item-selected-foreground-color-hover: $gl-action-selected-foreground-color-hover; // Used for the foreground of a selected navigation item in the hover state.
|
|
1218
|
+
$gl-nav-item-selected-background-color-focus: $gl-action-selected-background-color-focus; // Used for the background of a selected navigation item in the focus state.
|
|
1202
1219
|
$gl-toggle-switch-icon-color-unchecked-focus: $gl-action-strong-neutral-background-color-focus; // Used for the icon color of an unchecked toggle switch in the focus state.
|
|
1203
1220
|
$gl-toggle-switch-icon-color-checked-focus: $gl-action-strong-confirm-background-color-focus; // Used for the icon color of a checked toggle switch in the focus state.
|
|
1204
1221
|
$gl-token-border-radius: $gl-border-radius-default; // Used for token border radius.
|
|
@@ -1208,8 +1225,10 @@ $gl-action-strong-confirm-foreground-color-focus: $gl-action-strong-confirm-fore
|
|
|
1208
1225
|
$gl-action-strong-confirm-border-color-focus: $gl-action-strong-confirm-border-color-hover; // Used for the border of a strong confirm action in the focus state.
|
|
1209
1226
|
$gl-action-strong-neutral-border-color-focus: $gl-action-strong-neutral-border-color-hover; // Used for the border of a strong neutral action in the focus state.
|
|
1210
1227
|
$gl-button-confirm-primary-foreground-color-focus: $gl-action-strong-confirm-foreground-color-focus; // Used for the foreground of a confirm (positive) primary button in the focus state.
|
|
1228
|
+
$gl-nav-item-selected-foreground-color-focus: $gl-action-selected-foreground-color-focus; // Used for the foreground of a selected navigation item in the focus state.
|
|
1211
1229
|
$gl-action-selected-foreground-color-active: $gl-action-selected-foreground-color-focus; // Used for the foreground of a selected action in the active state.
|
|
1212
1230
|
$gl-action-strong-confirm-foreground-color-active: $gl-action-strong-confirm-foreground-color-focus; // Used for the foreground of a strong confirm action in the active state.
|
|
1213
1231
|
$gl-action-strong-confirm-border-color-active: $gl-action-strong-confirm-border-color-focus; // Used for the border of a strong confirm action in the active state.
|
|
1214
1232
|
$gl-action-strong-neutral-border-color-active: $gl-action-strong-neutral-border-color-focus; // Used for the border of a strong neutral action in the active state.
|
|
1215
1233
|
$gl-button-confirm-primary-foreground-color-active: $gl-action-strong-confirm-foreground-color-active; // Used for the foreground of a confirm (positive) primary button in the active state.
|
|
1234
|
+
$gl-nav-item-selected-foreground-color-active: $gl-action-selected-foreground-color-active; // Used for the foreground of a selected navigation item in the active state.
|
|
@@ -296,6 +296,7 @@ $gl-illustration-isometric-accent-side-fill-color: #2b2838; // Used for the side
|
|
|
296
296
|
$gl-illustration-isometric-base-top-fill-color: #e7e4f2; // Used for the top surface of an isometric base platform.
|
|
297
297
|
$gl-illustration-isometric-base-front-fill-color: #d5d0e8; // Used for the front face of an isometric base platform.
|
|
298
298
|
$gl-illustration-isometric-base-side-fill-color: #aea5d6; // Used for the side face of an isometric base platform.
|
|
299
|
+
$gl-nav-item-font-weight: 425; // Used for the font weight of a navigation item
|
|
299
300
|
$data-viz-green-50: #ddfab7 !default;
|
|
300
301
|
$data-viz-green-100: #c6ed94 !default;
|
|
301
302
|
$data-viz-green-200: #b0d97b !default;
|
|
@@ -644,6 +645,10 @@ $gl-link-mention-text-color-default: $gl-color-blue-800; // Used for the mention
|
|
|
644
645
|
$gl-link-mention-text-color-current: $gl-color-orange-800; // Used for the mention link text color when referencing the current user.
|
|
645
646
|
$gl-link-mention-background-color-default: $gl-color-blue-100; // Used for the mention link default background.
|
|
646
647
|
$gl-link-mention-background-color-current: $gl-color-orange-100; // Used for the mention link background when referencing the current user.
|
|
648
|
+
$gl-nav-item-font-size: $gl-font-size-300; // Used for the font size of a navigation item
|
|
649
|
+
$gl-nav-item-background-color-default: $gl-action-neutral-background-color-default; // Used for the background of a default navigation item in the default state.
|
|
650
|
+
$gl-nav-item-background-color-hover: $gl-action-neutral-background-color-hover; // Used for the background of a default navigation item in the hover state.
|
|
651
|
+
$gl-nav-item-background-color-active: $gl-action-neutral-background-color-active; // Used for the background of a default navigation item in the active state.
|
|
647
652
|
$gl-progress-bar-track-color: $gl-color-neutral-200; // Used for the track color for all progress-bar variants.
|
|
648
653
|
$gl-skeleton-loader-background-color: $gl-color-neutral-100; // Used for the skeleton loader background color.
|
|
649
654
|
$gl-skeleton-loader-shimmer-color: $gl-color-neutral-50; // Used for the animated shimmer effect in a skeleton loader.
|
|
@@ -1003,6 +1008,12 @@ $gl-dropdown-option-indicator-color-selected-active: $gl-control-background-colo
|
|
|
1003
1008
|
$gl-dropdown-option-background-color-unselected-focus: $gl-action-neutral-background-color-focus; // Used for the background of an unselected dropdown option in the focus state.
|
|
1004
1009
|
$gl-dropdown-option-background-color-selected-focus: $gl-dropdown-option-background-color-selected-hover; // Used for the background of a selected dropdown option in the focus state.
|
|
1005
1010
|
$gl-modal-border-radius: $gl-border-radius-2xl; // Used for modal border radius.
|
|
1011
|
+
$gl-nav-item-foreground-color-default: $gl-action-neutral-foreground-color-default; // Used for the foreground of a default navigation item in the default state.
|
|
1012
|
+
$gl-nav-item-background-color-focus: $gl-action-neutral-background-color-focus; // Used for the background of a default navigation item in the focus state.
|
|
1013
|
+
$gl-nav-item-selected-foreground-color-default: $gl-action-selected-foreground-color-default; // Used for the foreground of a selected navigation item in the default state.
|
|
1014
|
+
$gl-nav-item-selected-background-color-default: $gl-action-selected-background-color-default; // Used for the background of a selected navigation item in the default state.
|
|
1015
|
+
$gl-nav-item-selected-background-color-hover: $gl-action-selected-background-color-hover; // Used for the background of a selected navigation item in the hover state.
|
|
1016
|
+
$gl-nav-item-selected-background-color-active: $gl-action-selected-background-color-active; // Used for the background of a selected navigation item in the active state.
|
|
1006
1017
|
$gl-progress-bar-indicator-color-default: $gl-status-info-icon-color; // Used for the indicator color for the primary progress-bar variant.
|
|
1007
1018
|
$gl-progress-bar-indicator-color-success: $gl-status-success-icon-color; // Used for the indicator color for the success progress-bar variant.
|
|
1008
1019
|
$gl-progress-bar-indicator-color-warning: $gl-status-warning-icon-color; // Used for the indicator color for the warning progress-bar variant.
|
|
@@ -1197,6 +1208,12 @@ $gl-chart-zoom-handle-color: $gl-icon-color-subtle; // Used in charts for the ha
|
|
|
1197
1208
|
$gl-dropdown-option-text-color-hover: $gl-action-neutral-foreground-color-hover; // Used for the text of a dropdown option in the hover state.
|
|
1198
1209
|
$gl-dropdown-option-text-color-focus: $gl-action-neutral-foreground-color-focus; // Used for the text of a dropdown option in the focus state.
|
|
1199
1210
|
$gl-dropdown-option-text-color-active: $gl-action-neutral-foreground-color-active; // Used for the text of a dropdown option in the active state.
|
|
1211
|
+
$gl-nav-item-border-radius: $gl-action-border-radius; // Used for the border radius of a navigation item
|
|
1212
|
+
$gl-nav-item-foreground-color-hover: $gl-action-neutral-foreground-color-hover; // Used for the foreground of a default navigation item in the hover state.
|
|
1213
|
+
$gl-nav-item-foreground-color-focus: $gl-action-neutral-foreground-color-focus; // Used for the foreground of a default navigation item in the focus state.
|
|
1214
|
+
$gl-nav-item-foreground-color-active: $gl-action-neutral-foreground-color-active; // Used for the foreground of a default navigation item in the active state.
|
|
1215
|
+
$gl-nav-item-selected-foreground-color-hover: $gl-action-selected-foreground-color-hover; // Used for the foreground of a selected navigation item in the hover state.
|
|
1216
|
+
$gl-nav-item-selected-background-color-focus: $gl-action-selected-background-color-focus; // Used for the background of a selected navigation item in the focus state.
|
|
1200
1217
|
$gl-toggle-switch-icon-color-unchecked-focus: $gl-action-strong-neutral-background-color-focus; // Used for the icon color of an unchecked toggle switch in the focus state.
|
|
1201
1218
|
$gl-toggle-switch-icon-color-checked-focus: $gl-action-strong-confirm-background-color-focus; // Used for the icon color of a checked toggle switch in the focus state.
|
|
1202
1219
|
$gl-token-border-radius: $gl-border-radius-default; // Used for token border radius.
|
|
@@ -1207,9 +1224,11 @@ $gl-action-strong-confirm-border-color-focus: $gl-action-strong-confirm-border-c
|
|
|
1207
1224
|
$gl-action-strong-neutral-foreground-color-focus: $gl-action-strong-neutral-foreground-color-hover; // Used for the foreground of a strong neutral action in the focus state.
|
|
1208
1225
|
$gl-action-strong-neutral-border-color-focus: $gl-action-strong-neutral-border-color-hover; // Used for the border of a strong neutral action in the focus state.
|
|
1209
1226
|
$gl-button-confirm-primary-foreground-color-focus: $gl-action-strong-confirm-foreground-color-focus; // Used for the foreground of a confirm (positive) primary button in the focus state.
|
|
1227
|
+
$gl-nav-item-selected-foreground-color-focus: $gl-action-selected-foreground-color-focus; // Used for the foreground of a selected navigation item in the focus state.
|
|
1210
1228
|
$gl-action-selected-foreground-color-active: $gl-action-selected-foreground-color-focus; // Used for the foreground of a selected action in the active state.
|
|
1211
1229
|
$gl-action-strong-confirm-foreground-color-active: $gl-action-strong-confirm-foreground-color-focus; // Used for the foreground of a strong confirm action in the active state.
|
|
1212
1230
|
$gl-action-strong-confirm-border-color-active: $gl-action-strong-confirm-border-color-focus; // Used for the border of a strong confirm action in the active state.
|
|
1213
1231
|
$gl-action-strong-neutral-foreground-color-active: $gl-action-strong-neutral-foreground-color-focus; // Used for the foreground of a strong neutral action in the active state.
|
|
1214
1232
|
$gl-action-strong-neutral-border-color-active: $gl-action-strong-neutral-border-color-focus; // Used for the border of a strong neutral action in the active state.
|
|
1215
1233
|
$gl-button-confirm-primary-foreground-color-active: $gl-action-strong-confirm-foreground-color-active; // Used for the foreground of a confirm (positive) primary button in the active state.
|
|
1234
|
+
$gl-nav-item-selected-foreground-color-active: $gl-action-selected-foreground-color-active; // Used for the foreground of a selected navigation item in the active state.
|
|
@@ -672,6 +672,25 @@ $gl-link-mention-text-color-current: var(--gl-link-mention-text-color-current);
|
|
|
672
672
|
$gl-link-mention-background-color-default: var(--gl-link-mention-background-color-default);
|
|
673
673
|
$gl-link-mention-background-color-current: var(--gl-link-mention-background-color-current);
|
|
674
674
|
$gl-modal-border-radius: var(--gl-modal-border-radius);
|
|
675
|
+
$gl-nav-item-border-radius: var(--gl-nav-item-border-radius);
|
|
676
|
+
$gl-nav-item-font-size: var(--gl-nav-item-font-size);
|
|
677
|
+
$gl-nav-item-font-weight: var(--gl-nav-item-font-weight);
|
|
678
|
+
$gl-nav-item-foreground-color-default: var(--gl-nav-item-foreground-color-default);
|
|
679
|
+
$gl-nav-item-foreground-color-hover: var(--gl-nav-item-foreground-color-hover);
|
|
680
|
+
$gl-nav-item-foreground-color-focus: var(--gl-nav-item-foreground-color-focus);
|
|
681
|
+
$gl-nav-item-foreground-color-active: var(--gl-nav-item-foreground-color-active);
|
|
682
|
+
$gl-nav-item-background-color-default: var(--gl-nav-item-background-color-default);
|
|
683
|
+
$gl-nav-item-background-color-hover: var(--gl-nav-item-background-color-hover);
|
|
684
|
+
$gl-nav-item-background-color-focus: var(--gl-nav-item-background-color-focus);
|
|
685
|
+
$gl-nav-item-background-color-active: var(--gl-nav-item-background-color-active);
|
|
686
|
+
$gl-nav-item-selected-foreground-color-default: var(--gl-nav-item-selected-foreground-color-default);
|
|
687
|
+
$gl-nav-item-selected-foreground-color-hover: var(--gl-nav-item-selected-foreground-color-hover);
|
|
688
|
+
$gl-nav-item-selected-foreground-color-focus: var(--gl-nav-item-selected-foreground-color-focus);
|
|
689
|
+
$gl-nav-item-selected-foreground-color-active: var(--gl-nav-item-selected-foreground-color-active);
|
|
690
|
+
$gl-nav-item-selected-background-color-default: var(--gl-nav-item-selected-background-color-default);
|
|
691
|
+
$gl-nav-item-selected-background-color-hover: var(--gl-nav-item-selected-background-color-hover);
|
|
692
|
+
$gl-nav-item-selected-background-color-focus: var(--gl-nav-item-selected-background-color-focus);
|
|
693
|
+
$gl-nav-item-selected-background-color-active: var(--gl-nav-item-selected-background-color-active);
|
|
675
694
|
$gl-progress-bar-indicator-color-default: var(--gl-progress-bar-indicator-color-default);
|
|
676
695
|
$gl-progress-bar-indicator-color-success: var(--gl-progress-bar-indicator-color-success);
|
|
677
696
|
$gl-progress-bar-indicator-color-warning: var(--gl-progress-bar-indicator-color-warning);
|
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
{
|
|
2
|
+
"nav": {
|
|
3
|
+
"item": {
|
|
4
|
+
"border": {
|
|
5
|
+
"radius": {
|
|
6
|
+
"$value": "{action.border.radius}",
|
|
7
|
+
"$type": "dimension",
|
|
8
|
+
"$description": "Used for the border radius of a navigation item",
|
|
9
|
+
"$extensions": {
|
|
10
|
+
"com.figma.scopes": [
|
|
11
|
+
"CORNER_RADIUS"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"font": {
|
|
17
|
+
"size": {
|
|
18
|
+
"$value": "{font.size.300}",
|
|
19
|
+
"$type": "dimension",
|
|
20
|
+
"$description": "Used for the font size of a navigation item",
|
|
21
|
+
"$extensions": {
|
|
22
|
+
"com.figma.scopes": [
|
|
23
|
+
"FONT_SIZE"
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"weight": {
|
|
28
|
+
"$value": 425,
|
|
29
|
+
"$type": "fontWeight",
|
|
30
|
+
"$description": "Used for the font weight of a navigation item",
|
|
31
|
+
"$extensions": {
|
|
32
|
+
"com.figma.scopes": [
|
|
33
|
+
"FONT_WEIGHT"
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"foreground": {
|
|
39
|
+
"color": {
|
|
40
|
+
"default": {
|
|
41
|
+
"$value": "{action.neutral.foreground.color.default}",
|
|
42
|
+
"$type": "color",
|
|
43
|
+
"$description": "Used for the foreground of a default navigation item in the default state.",
|
|
44
|
+
"$extensions": {
|
|
45
|
+
"com.figma.scopes": [
|
|
46
|
+
"TEXT_FILL"
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"hover": {
|
|
51
|
+
"$value": "{action.neutral.foreground.color.hover}",
|
|
52
|
+
"$type": "color",
|
|
53
|
+
"$description": "Used for the foreground of a default navigation item in the hover state.",
|
|
54
|
+
"$extensions": {
|
|
55
|
+
"com.figma.scopes": [
|
|
56
|
+
"TEXT_FILL"
|
|
57
|
+
]
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"focus": {
|
|
61
|
+
"$value": "{action.neutral.foreground.color.focus}",
|
|
62
|
+
"$type": "color",
|
|
63
|
+
"$description": "Used for the foreground of a default navigation item in the focus state.",
|
|
64
|
+
"$extensions": {
|
|
65
|
+
"com.figma.scopes": [
|
|
66
|
+
"TEXT_FILL"
|
|
67
|
+
]
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"active": {
|
|
71
|
+
"$value": "{action.neutral.foreground.color.active}",
|
|
72
|
+
"$type": "color",
|
|
73
|
+
"$description": "Used for the foreground of a default navigation item in the active state.",
|
|
74
|
+
"$extensions": {
|
|
75
|
+
"com.figma.scopes": [
|
|
76
|
+
"TEXT_FILL"
|
|
77
|
+
]
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"background": {
|
|
83
|
+
"color": {
|
|
84
|
+
"default": {
|
|
85
|
+
"$value": "{action.neutral.background.color.default}",
|
|
86
|
+
"$type": "color",
|
|
87
|
+
"$description": "Used for the background of a default navigation item in the default state.",
|
|
88
|
+
"$extensions": {
|
|
89
|
+
"com.figma.scopes": [
|
|
90
|
+
"SHAPE_FILL"
|
|
91
|
+
]
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"hover": {
|
|
95
|
+
"$value": "{action.neutral.background.color.hover}",
|
|
96
|
+
"$type": "color",
|
|
97
|
+
"$description": "Used for the background of a default navigation item in the hover state.",
|
|
98
|
+
"$extensions": {
|
|
99
|
+
"com.figma.scopes": [
|
|
100
|
+
"SHAPE_FILL"
|
|
101
|
+
]
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"focus": {
|
|
105
|
+
"$value": "{action.neutral.background.color.focus}",
|
|
106
|
+
"$type": "color",
|
|
107
|
+
"$description": "Used for the background of a default navigation item in the focus state.",
|
|
108
|
+
"$extensions": {
|
|
109
|
+
"com.figma.scopes": [
|
|
110
|
+
"SHAPE_FILL"
|
|
111
|
+
]
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
"active": {
|
|
115
|
+
"$value": "{action.neutral.background.color.active}",
|
|
116
|
+
"$type": "color",
|
|
117
|
+
"$description": "Used for the background of a default navigation item in the active state.",
|
|
118
|
+
"$extensions": {
|
|
119
|
+
"com.figma.scopes": [
|
|
120
|
+
"SHAPE_FILL"
|
|
121
|
+
]
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
"selected": {
|
|
127
|
+
"foreground": {
|
|
128
|
+
"color": {
|
|
129
|
+
"default": {
|
|
130
|
+
"$value": "{action.selected.foreground.color.default}",
|
|
131
|
+
"$type": "color",
|
|
132
|
+
"$description": "Used for the foreground of a selected navigation item in the default state.",
|
|
133
|
+
"$extensions": {
|
|
134
|
+
"com.figma.scopes": [
|
|
135
|
+
"TEXT_FILL"
|
|
136
|
+
]
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
"hover": {
|
|
140
|
+
"$value": "{action.selected.foreground.color.hover}",
|
|
141
|
+
"$type": "color",
|
|
142
|
+
"$description": "Used for the foreground of a selected navigation item in the hover state.",
|
|
143
|
+
"$extensions": {
|
|
144
|
+
"com.figma.scopes": [
|
|
145
|
+
"TEXT_FILL"
|
|
146
|
+
]
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
"focus": {
|
|
150
|
+
"$value": "{action.selected.foreground.color.focus}",
|
|
151
|
+
"$type": "color",
|
|
152
|
+
"$description": "Used for the foreground of a selected navigation item in the focus state.",
|
|
153
|
+
"$extensions": {
|
|
154
|
+
"com.figma.scopes": [
|
|
155
|
+
"TEXT_FILL"
|
|
156
|
+
]
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
"active": {
|
|
160
|
+
"$value": "{action.selected.foreground.color.active}",
|
|
161
|
+
"$type": "color",
|
|
162
|
+
"$description": "Used for the foreground of a selected navigation item in the active state.",
|
|
163
|
+
"$extensions": {
|
|
164
|
+
"com.figma.scopes": [
|
|
165
|
+
"TEXT_FILL"
|
|
166
|
+
]
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
"background": {
|
|
172
|
+
"color": {
|
|
173
|
+
"default": {
|
|
174
|
+
"$value": "{action.selected.background.color.default}",
|
|
175
|
+
"$type": "color",
|
|
176
|
+
"$description": "Used for the background of a selected navigation item in the default state.",
|
|
177
|
+
"$extensions": {
|
|
178
|
+
"com.figma.scopes": [
|
|
179
|
+
"SHAPE_FILL"
|
|
180
|
+
]
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
"hover": {
|
|
184
|
+
"$value": "{action.selected.background.color.hover}",
|
|
185
|
+
"$type": "color",
|
|
186
|
+
"$description": "Used for the background of a selected navigation item in the hover state.",
|
|
187
|
+
"$extensions": {
|
|
188
|
+
"com.figma.scopes": [
|
|
189
|
+
"SHAPE_FILL"
|
|
190
|
+
]
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
"focus": {
|
|
194
|
+
"$value": "{action.selected.background.color.focus}",
|
|
195
|
+
"$type": "color",
|
|
196
|
+
"$description": "Used for the background of a selected navigation item in the focus state.",
|
|
197
|
+
"$extensions": {
|
|
198
|
+
"com.figma.scopes": [
|
|
199
|
+
"SHAPE_FILL"
|
|
200
|
+
]
|
|
201
|
+
}
|
|
202
|
+
},
|
|
203
|
+
"active": {
|
|
204
|
+
"$value": "{action.selected.background.color.active}",
|
|
205
|
+
"$type": "color",
|
|
206
|
+
"$description": "Used for the background of a selected navigation item in the active state.",
|
|
207
|
+
"$extensions": {
|
|
208
|
+
"com.figma.scopes": [
|
|
209
|
+
"SHAPE_FILL"
|
|
210
|
+
]
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
}
|