@gitlab/ui 137.1.1 → 137.2.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/dist/components/base/link/link.js +1 -1
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +196 -191
- package/dist/tokens/build/js/tokens.js +218 -213
- package/dist/utils/constants.js +5 -5
- package/package.json +9 -9
- package/src/components/base/alert/alert.scss +13 -48
- package/src/components/base/link/link.vue +3 -1
- package/src/scss/themes.scss +23 -5
- package/src/tokens/build/css/tokens.css +20 -15
- package/src/tokens/build/css/tokens.dark.css +32 -27
- package/src/tokens/build/docs/tokens-tailwind-docs.dark.json +199 -199
- package/src/tokens/build/docs/tokens-tailwind-docs.json +198 -198
- package/src/tokens/build/figma/constants.dark.json +33 -33
- package/src/tokens/build/figma/constants.json +33 -33
- package/src/tokens/build/figma/mode.dark.json +66 -16
- package/src/tokens/build/figma/mode.json +54 -4
- package/src/tokens/build/js/tokens.dark.js +195 -190
- package/src/tokens/build/js/tokens.js +217 -212
- package/src/tokens/build/json/tokens.dark.json +378 -218
- package/src/tokens/build/json/tokens.json +388 -228
- package/src/tokens/build/scss/_tokens.dark.scss +32 -27
- package/src/tokens/build/scss/_tokens.scss +20 -15
- package/src/tokens/build/scss/_tokens_custom_properties.scss +5 -0
- package/src/tokens/constant/color.neutral.tokens.json +33 -33
- package/src/tokens/contextual/alert.tokens.json +80 -35
- package/src/tokens/semantic/action.tokens.json +3 -3
- package/src/tokens/semantic/feedback.tokens.json +6 -6
- package/src/utils/constants.js +5 -5
|
@@ -111,19 +111,19 @@ $gl-color-green-800: #225131;
|
|
|
111
111
|
$gl-color-green-900: #1e3e28;
|
|
112
112
|
$gl-color-green-950: #17291c;
|
|
113
113
|
$gl-color-neutral-0: #fff;
|
|
114
|
-
$gl-color-neutral-10: #
|
|
115
|
-
$gl-color-neutral-50: #
|
|
116
|
-
$gl-color-neutral-100: #
|
|
117
|
-
$gl-color-neutral-200: #
|
|
118
|
-
$gl-color-neutral-300: #
|
|
119
|
-
$gl-color-neutral-400: #
|
|
120
|
-
$gl-color-neutral-500: #
|
|
121
|
-
$gl-color-neutral-600: #
|
|
122
|
-
$gl-color-neutral-700: #
|
|
123
|
-
$gl-color-neutral-800: #
|
|
114
|
+
$gl-color-neutral-10: #f7f7f5;
|
|
115
|
+
$gl-color-neutral-50: #ecebea;
|
|
116
|
+
$gl-color-neutral-100: #dcdbd9;
|
|
117
|
+
$gl-color-neutral-200: #c1bfbe;
|
|
118
|
+
$gl-color-neutral-300: #a5a3a3;
|
|
119
|
+
$gl-color-neutral-400: #8a8888;
|
|
120
|
+
$gl-color-neutral-500: #747273;
|
|
121
|
+
$gl-color-neutral-600: #646163;
|
|
122
|
+
$gl-color-neutral-700: #4d4b4e;
|
|
123
|
+
$gl-color-neutral-800: #3a383d;
|
|
124
124
|
$gl-color-neutral-900: #28272d;
|
|
125
125
|
$gl-color-neutral-950: #18171d;
|
|
126
|
-
$gl-color-neutral-1000: #
|
|
126
|
+
$gl-color-neutral-1000: #050408;
|
|
127
127
|
$gl-color-orange-50: #fdf1dd;
|
|
128
128
|
$gl-color-orange-100: #f5d9a8;
|
|
129
129
|
$gl-color-orange-200: #e9be74;
|
|
@@ -433,18 +433,18 @@ $gl-font-weight-heading: $gl-font-weight-bold;
|
|
|
433
433
|
$gl-heading-default-margin-top: $gl-spacing-scale-0;
|
|
434
434
|
$gl-heading-default-margin-bottom: $gl-spacing-scale-5;
|
|
435
435
|
$gl-shadow-color-default: $gl-color-alpha-dark-40; // Used for the default shadow color.
|
|
436
|
-
$gl-alert-neutral-border-top-color: $gl-color-neutral-400; // Used for the border
|
|
436
|
+
$gl-alert-neutral-border-top-color: $gl-color-neutral-400; // Used for the border color of a neutral alert.
|
|
437
437
|
$gl-alert-neutral-border-bottom-color: $gl-color-alpha-0; // Used for the border bottom color of a neutral alert.
|
|
438
|
-
$gl-alert-info-title-color: $gl-color-blue-
|
|
438
|
+
$gl-alert-info-title-color: $gl-color-blue-200; // Used for the title color of an info alert.
|
|
439
439
|
$gl-alert-info-border-top-color: $gl-color-blue-400; // Used for the border color of an info alert.
|
|
440
440
|
$gl-alert-info-border-bottom-color: $gl-color-alpha-0; // Used for the border bottom color of an info alert.
|
|
441
|
-
$gl-alert-success-title-color: $gl-color-green-
|
|
441
|
+
$gl-alert-success-title-color: $gl-color-green-200; // Used for the title color of a success alert.
|
|
442
442
|
$gl-alert-success-border-top-color: $gl-color-green-400; // Used for the border color of a success alert.
|
|
443
443
|
$gl-alert-success-border-bottom-color: $gl-color-alpha-0; // Used for the border bottom color of a success alert.
|
|
444
|
-
$gl-alert-warning-title-color: $gl-color-orange-
|
|
444
|
+
$gl-alert-warning-title-color: $gl-color-orange-200; // Used for the title color of a warning alert.
|
|
445
445
|
$gl-alert-warning-border-top-color: $gl-color-orange-400; // Used for the border color of a warning alert.
|
|
446
446
|
$gl-alert-warning-border-bottom-color: $gl-color-alpha-0; // Used for the border bottom color of a warning alert.
|
|
447
|
-
$gl-alert-danger-title-color: $gl-color-red-
|
|
447
|
+
$gl-alert-danger-title-color: $gl-color-red-200; // Used for the title color of a danger alert.
|
|
448
448
|
$gl-alert-danger-border-top-color: $gl-color-red-400; // Used for the border color of a danger alert.
|
|
449
449
|
$gl-alert-danger-border-bottom-color: $gl-color-alpha-0; // Used for the border bottom color of a danger alert.
|
|
450
450
|
$gl-application-chrome-background-color: $gl-color-neutral-1000; // Used for the application chrome background, the lowest layer of the interface that sits beneath panels and contains global navigation, user actions, application navigation, and AI navigation.
|
|
@@ -800,27 +800,27 @@ $gl-feedback-strong-link-color: $gl-color-blue-300; // Used for a link on a stro
|
|
|
800
800
|
$gl-feedback-neutral-background-color: $gl-color-neutral-900; // Used for the background of a neutral feedback item when there isn't a specific meaning or urgency.
|
|
801
801
|
$gl-feedback-neutral-border-color: $gl-color-neutral-600; // Used for the border of a neutral feedback item when there isn't a specific meaning or urgency.
|
|
802
802
|
$gl-feedback-neutral-text-color: $gl-color-neutral-200; // Used for the text of a neutral feedback item when there isn't a specific meaning or urgency.
|
|
803
|
-
$gl-feedback-neutral-icon-color: $gl-color-neutral-
|
|
803
|
+
$gl-feedback-neutral-icon-color: $gl-color-neutral-200; // Used for the icon of a neutral feedback item when there isn't a specific meaning or urgency.
|
|
804
804
|
$gl-feedback-info-background-color: $gl-color-blue-950; // Used for the background of an informational feedback item when highlighting new information or a change that doesn't require immediate action.
|
|
805
805
|
$gl-feedback-info-border-color: $gl-color-blue-600; // Used for the border of an informational feedback item when highlighting new information or a change that doesn't require immediate action.
|
|
806
806
|
$gl-feedback-info-text-color: $gl-color-blue-200; // Used for the text of an informational feedback item when highlighting new information or a change that doesn't require immediate action.
|
|
807
|
-
$gl-feedback-info-icon-color: $gl-color-blue-
|
|
807
|
+
$gl-feedback-info-icon-color: $gl-color-blue-200; // Used for the icon of an informational feedback item when highlighting new information or a change that doesn't require immediate action.
|
|
808
808
|
$gl-feedback-success-background-color: $gl-color-green-900; // Used for the background of a success feedback item when confirming the successful completion of a user-initiated action.
|
|
809
809
|
$gl-feedback-success-border-color: $gl-color-green-600; // Used for the border of a success feedback item when confirming the successful completion of a user-initiated action.
|
|
810
810
|
$gl-feedback-success-text-color: $gl-color-green-200; // Used for the text of a success feedback item when confirming the successful completion of a user-initiated action.
|
|
811
|
-
$gl-feedback-success-icon-color: $gl-color-green-
|
|
811
|
+
$gl-feedback-success-icon-color: $gl-color-green-200; // Used for the icon of a success feedback item when confirming the successful completion of a user-initiated action.
|
|
812
812
|
$gl-feedback-warning-background-color: $gl-color-orange-900; // Used for the background of a warning feedback item when notifying about a potential issue or sensitive information.
|
|
813
813
|
$gl-feedback-warning-border-color: $gl-color-orange-600; // Used for the border of a warning feedback item when notifying about a potential issue or sensitive information.
|
|
814
814
|
$gl-feedback-warning-text-color: $gl-color-orange-200; // Used for the text of a warning feedback item when notifying about a potential issue or sensitive information.
|
|
815
|
-
$gl-feedback-warning-icon-color: $gl-color-orange-
|
|
815
|
+
$gl-feedback-warning-icon-color: $gl-color-orange-200; // Used for the icon of a warning feedback item when notifying about a potential issue or sensitive information.
|
|
816
816
|
$gl-feedback-danger-background-color: $gl-color-red-900; // Used for the background of a danger feedback item when notifying about a critical issue that has just occurred and requires immediate attention.
|
|
817
817
|
$gl-feedback-danger-border-color: $gl-color-red-300; // Used for the border of a danger feedback item when notifying about a critical issue that has just occurred and requires immediate attention.
|
|
818
818
|
$gl-feedback-danger-text-color: $gl-color-red-200; // Used for the text of a danger feedback item when notifying about a critical issue that has just occurred and requires immediate attention.
|
|
819
|
-
$gl-feedback-danger-icon-color: $gl-color-red-
|
|
819
|
+
$gl-feedback-danger-icon-color: $gl-color-red-200; // Used for the icon of a danger feedback item when notifying about a critical issue that has just occurred and requires immediate attention.
|
|
820
820
|
$gl-feedback-brand-background-color: $gl-color-purple-950; // Used for the background of a brand-related feedback item when highlighting information that pertains to GitLab.
|
|
821
821
|
$gl-feedback-brand-border-color: $gl-color-purple-600; // Used for the border of a brand-related feedback item when highlighting information that pertains to GitLab.
|
|
822
822
|
$gl-feedback-brand-text-color: $gl-color-purple-200; // Used for the text of a brand-related feedback item when highlighting information that pertains to GitLab.
|
|
823
|
-
$gl-feedback-brand-icon-color: $gl-color-purple-
|
|
823
|
+
$gl-feedback-brand-icon-color: $gl-color-purple-200; // Used for the icon of a brand-related feedback item when highlighting information that pertains to GitLab.
|
|
824
824
|
$gl-focus-ring-outer-color: $gl-color-blue-400; // Used for the outer color portion of the focus ring.
|
|
825
825
|
$gl-highlight-match-background-color: $gl-color-orange-200; // Used for temporary visual emphasis of backgrounds of matched search terms, filtered results, or autocomplete suggestions without implying any particular state or meaning.
|
|
826
826
|
$gl-highlight-match-text-color: $gl-color-neutral-950; // Used for text within temporarily highlighted matches to maintain readability while drawing attention without conveying status.
|
|
@@ -929,11 +929,16 @@ $gl-shadow-md: 0 0 1px 0 $gl-shadow-color-default, 0 0 2px 0 $gl-shadow-color-de
|
|
|
929
929
|
$gl-shadow-lg: 0 0 2px 0 $gl-shadow-color-default, 0 0 2px 0 $gl-shadow-color-default, 0 4px 12px 0 $gl-shadow-color-default; // Used for large surfaces that present additional context to the user.
|
|
930
930
|
$gl-alert-border-radius: $gl-border-radius-lg; // Used for alert border radius.
|
|
931
931
|
$gl-alert-neutral-title-color: $gl-text-color-heading; // Used for the title color of a neutral alert.
|
|
932
|
-
$gl-alert-neutral-background-color: $gl-background-color
|
|
933
|
-
$gl-alert-
|
|
934
|
-
$gl-alert-
|
|
935
|
-
$gl-alert-
|
|
936
|
-
$gl-alert-
|
|
932
|
+
$gl-alert-neutral-background-color: $gl-feedback-neutral-background-color; // Used for the background color of a neutral alert.
|
|
933
|
+
$gl-alert-neutral-border-color: $gl-feedback-neutral-border-color; // Used for the border color of a neutral alert.
|
|
934
|
+
$gl-alert-info-background-color: $gl-feedback-info-background-color; // Used for the background color of an info alert.
|
|
935
|
+
$gl-alert-info-border-color: $gl-feedback-info-border-color; // Used for the border color of an info alert.
|
|
936
|
+
$gl-alert-success-background-color: $gl-feedback-success-background-color; // Used for the background color of a success alert.
|
|
937
|
+
$gl-alert-success-border-color: $gl-feedback-success-border-color; // Used for the border color of a success alert.
|
|
938
|
+
$gl-alert-warning-background-color: $gl-feedback-warning-background-color; // Used for the background color of a warning alert.
|
|
939
|
+
$gl-alert-warning-border-color: $gl-feedback-warning-border-color; // Used for the border color of a warning alert.
|
|
940
|
+
$gl-alert-danger-background-color: $gl-feedback-danger-background-color; // Used for the background color of a danger alert.
|
|
941
|
+
$gl-alert-danger-border-color: $gl-feedback-danger-border-color; // Used for the border color of a danger alert.
|
|
937
942
|
$gl-avatar-square-border-radius-lg: $gl-border-radius-lg; // Border radius for square avatars at larger sizes (48px, 64px, 96px).
|
|
938
943
|
$gl-badge-muted-background-color-hover: $gl-badge-muted-background-color-default; // Used for the background of a muted badge in the hover state.
|
|
939
944
|
$gl-badge-muted-text-color-focus: $gl-badge-muted-text-color-hover; // Used for the text of a muted badge in the focus state.
|
|
@@ -111,19 +111,19 @@ $gl-color-green-800: #225131;
|
|
|
111
111
|
$gl-color-green-900: #1e3e28;
|
|
112
112
|
$gl-color-green-950: #17291c;
|
|
113
113
|
$gl-color-neutral-0: #fff;
|
|
114
|
-
$gl-color-neutral-10: #
|
|
115
|
-
$gl-color-neutral-50: #
|
|
116
|
-
$gl-color-neutral-100: #
|
|
117
|
-
$gl-color-neutral-200: #
|
|
118
|
-
$gl-color-neutral-300: #
|
|
119
|
-
$gl-color-neutral-400: #
|
|
120
|
-
$gl-color-neutral-500: #
|
|
121
|
-
$gl-color-neutral-600: #
|
|
122
|
-
$gl-color-neutral-700: #
|
|
123
|
-
$gl-color-neutral-800: #
|
|
114
|
+
$gl-color-neutral-10: #f7f7f5;
|
|
115
|
+
$gl-color-neutral-50: #ecebea;
|
|
116
|
+
$gl-color-neutral-100: #dcdbd9;
|
|
117
|
+
$gl-color-neutral-200: #c1bfbe;
|
|
118
|
+
$gl-color-neutral-300: #a5a3a3;
|
|
119
|
+
$gl-color-neutral-400: #8a8888;
|
|
120
|
+
$gl-color-neutral-500: #747273;
|
|
121
|
+
$gl-color-neutral-600: #646163;
|
|
122
|
+
$gl-color-neutral-700: #4d4b4e;
|
|
123
|
+
$gl-color-neutral-800: #3a383d;
|
|
124
124
|
$gl-color-neutral-900: #28272d;
|
|
125
125
|
$gl-color-neutral-950: #18171d;
|
|
126
|
-
$gl-color-neutral-1000: #
|
|
126
|
+
$gl-color-neutral-1000: #050408;
|
|
127
127
|
$gl-color-orange-50: #fdf1dd;
|
|
128
128
|
$gl-color-orange-100: #f5d9a8;
|
|
129
129
|
$gl-color-orange-200: #e9be74;
|
|
@@ -421,7 +421,7 @@ $gl-font-weight-heading: $gl-font-weight-bold;
|
|
|
421
421
|
$gl-heading-default-margin-top: $gl-spacing-scale-0;
|
|
422
422
|
$gl-heading-default-margin-bottom: $gl-spacing-scale-5;
|
|
423
423
|
$gl-shadow-color-default: $gl-color-alpha-dark-16; // Used for the default shadow color.
|
|
424
|
-
$gl-alert-neutral-border-top-color: $gl-color-alpha-0; // Used for the border
|
|
424
|
+
$gl-alert-neutral-border-top-color: $gl-color-alpha-0; // Used for the border color of a neutral alert.
|
|
425
425
|
$gl-alert-neutral-border-bottom-color: $gl-color-alpha-0; // Used for the border bottom color of a neutral alert.
|
|
426
426
|
$gl-alert-info-border-top-color: $gl-color-alpha-0; // Used for the border color of an info alert.
|
|
427
427
|
$gl-alert-info-border-bottom-color: $gl-color-alpha-0; // Used for the border bottom color of an info alert.
|
|
@@ -741,9 +741,9 @@ $gl-action-confirm-background-color-default: $gl-color-alpha-0; // Used for the
|
|
|
741
741
|
$gl-action-confirm-background-color-hover: $gl-color-alpha-dark-6; // Used for the background of a confirm (positive) action in the hover state.
|
|
742
742
|
$gl-action-confirm-background-color-active: $gl-color-alpha-dark-16; // Used for the background of a confirm (positive) action in the active state.
|
|
743
743
|
$gl-action-confirm-border-color-default: $gl-color-alpha-0; // Used for the border of a confirm action in the default state.
|
|
744
|
-
$gl-action-danger-foreground-color-default: $gl-color-red-
|
|
745
|
-
$gl-action-danger-foreground-color-hover: $gl-color-red-
|
|
746
|
-
$gl-action-danger-foreground-color-active: $gl-color-red-
|
|
744
|
+
$gl-action-danger-foreground-color-default: $gl-color-red-600; // Used for the foreground of a danger (destructive) action in the default state.
|
|
745
|
+
$gl-action-danger-foreground-color-hover: $gl-color-red-800; // Used for the foreground of a danger (destructive) action in the hover state.
|
|
746
|
+
$gl-action-danger-foreground-color-active: $gl-color-red-950; // Used for the foreground of a danger (destructive) action in the active state.
|
|
747
747
|
$gl-action-danger-background-color-focus: $gl-action-danger-background-color-hover; // Used for the background of a danger (destructive) action in the focus state.
|
|
748
748
|
$gl-action-danger-border-color-default: $gl-color-alpha-0; // Used for the border of a danger action in the default state.
|
|
749
749
|
$gl-action-strong-confirm-background-color-default: $gl-color-blue-500; // Used for the background of a strong confirm action in the default state.
|
|
@@ -914,14 +914,19 @@ $gl-shadow-lg: 0 0 2px 0 $gl-shadow-color-default, 0 0 2px 0 $gl-shadow-color-de
|
|
|
914
914
|
$gl-alert-border-radius: $gl-border-radius-lg; // Used for alert border radius.
|
|
915
915
|
$gl-alert-neutral-title-color: $gl-text-color-heading; // Used for the title color of a neutral alert.
|
|
916
916
|
$gl-alert-neutral-background-color: $gl-feedback-neutral-background-color; // Used for the background color of a neutral alert.
|
|
917
|
+
$gl-alert-neutral-border-color: $gl-feedback-neutral-border-color; // Used for the border color of a neutral alert.
|
|
917
918
|
$gl-alert-info-title-color: $gl-text-color-heading; // Used for the title color of an info alert.
|
|
918
919
|
$gl-alert-info-background-color: $gl-feedback-info-background-color; // Used for the background color of an info alert.
|
|
920
|
+
$gl-alert-info-border-color: $gl-feedback-info-border-color; // Used for the border color of an info alert.
|
|
919
921
|
$gl-alert-success-title-color: $gl-text-color-heading; // Used for the title color of a success alert.
|
|
920
922
|
$gl-alert-success-background-color: $gl-feedback-success-background-color; // Used for the background color of a success alert.
|
|
923
|
+
$gl-alert-success-border-color: $gl-feedback-success-border-color; // Used for the border color of a success alert.
|
|
921
924
|
$gl-alert-warning-title-color: $gl-text-color-heading; // Used for the title color of a warning alert.
|
|
922
925
|
$gl-alert-warning-background-color: $gl-feedback-warning-background-color; // Used for the background color of a warning alert.
|
|
926
|
+
$gl-alert-warning-border-color: $gl-feedback-warning-border-color; // Used for the border color of a warning alert.
|
|
923
927
|
$gl-alert-danger-title-color: $gl-text-color-heading; // Used for the title color of a danger alert.
|
|
924
928
|
$gl-alert-danger-background-color: $gl-feedback-danger-background-color; // Used for the background color of a danger alert.
|
|
929
|
+
$gl-alert-danger-border-color: $gl-feedback-danger-border-color; // Used for the border color of a danger alert.
|
|
925
930
|
$gl-avatar-square-border-radius-lg: $gl-border-radius-lg; // Border radius for square avatars at larger sizes (48px, 64px, 96px).
|
|
926
931
|
$gl-badge-muted-background-color-hover: $gl-badge-muted-background-color-default; // Used for the background of a muted badge in the hover state.
|
|
927
932
|
$gl-badge-muted-text-color-focus: $gl-badge-muted-text-color-hover; // Used for the text of a muted badge in the focus state.
|
|
@@ -271,22 +271,27 @@ $gl-zindex-9999: var(--gl-zindex-9999);
|
|
|
271
271
|
$gl-alert-border-radius: var(--gl-alert-border-radius);
|
|
272
272
|
$gl-alert-neutral-title-color: var(--gl-alert-neutral-title-color);
|
|
273
273
|
$gl-alert-neutral-background-color: var(--gl-alert-neutral-background-color);
|
|
274
|
+
$gl-alert-neutral-border-color: var(--gl-alert-neutral-border-color);
|
|
274
275
|
$gl-alert-neutral-border-top-color: var(--gl-alert-neutral-border-top-color);
|
|
275
276
|
$gl-alert-neutral-border-bottom-color: var(--gl-alert-neutral-border-bottom-color);
|
|
276
277
|
$gl-alert-info-title-color: var(--gl-alert-info-title-color);
|
|
277
278
|
$gl-alert-info-background-color: var(--gl-alert-info-background-color);
|
|
279
|
+
$gl-alert-info-border-color: var(--gl-alert-info-border-color);
|
|
278
280
|
$gl-alert-info-border-top-color: var(--gl-alert-info-border-top-color);
|
|
279
281
|
$gl-alert-info-border-bottom-color: var(--gl-alert-info-border-bottom-color);
|
|
280
282
|
$gl-alert-success-title-color: var(--gl-alert-success-title-color);
|
|
281
283
|
$gl-alert-success-background-color: var(--gl-alert-success-background-color);
|
|
284
|
+
$gl-alert-success-border-color: var(--gl-alert-success-border-color);
|
|
282
285
|
$gl-alert-success-border-top-color: var(--gl-alert-success-border-top-color);
|
|
283
286
|
$gl-alert-success-border-bottom-color: var(--gl-alert-success-border-bottom-color);
|
|
284
287
|
$gl-alert-warning-title-color: var(--gl-alert-warning-title-color);
|
|
285
288
|
$gl-alert-warning-background-color: var(--gl-alert-warning-background-color);
|
|
289
|
+
$gl-alert-warning-border-color: var(--gl-alert-warning-border-color);
|
|
286
290
|
$gl-alert-warning-border-top-color: var(--gl-alert-warning-border-top-color);
|
|
287
291
|
$gl-alert-warning-border-bottom-color: var(--gl-alert-warning-border-bottom-color);
|
|
288
292
|
$gl-alert-danger-title-color: var(--gl-alert-danger-title-color);
|
|
289
293
|
$gl-alert-danger-background-color: var(--gl-alert-danger-background-color);
|
|
294
|
+
$gl-alert-danger-border-color: var(--gl-alert-danger-border-color);
|
|
290
295
|
$gl-alert-danger-border-top-color: var(--gl-alert-danger-border-top-color);
|
|
291
296
|
$gl-alert-danger-border-bottom-color: var(--gl-alert-danger-border-bottom-color);
|
|
292
297
|
$gl-application-chrome-background-color: var(--gl-application-chrome-background-color);
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
"$value": {
|
|
22
22
|
"colorSpace": "srgb",
|
|
23
23
|
"components": [
|
|
24
|
-
0.
|
|
25
|
-
0.
|
|
26
|
-
0.
|
|
24
|
+
0.9686274509803922,
|
|
25
|
+
0.9686274509803922,
|
|
26
|
+
0.9607843137254902
|
|
27
27
|
],
|
|
28
28
|
"alpha": 1,
|
|
29
|
-
"hex": "#
|
|
29
|
+
"hex": "#f7f7f5"
|
|
30
30
|
},
|
|
31
31
|
"$type": "color",
|
|
32
32
|
"$extensions": {
|
|
@@ -38,11 +38,11 @@
|
|
|
38
38
|
"colorSpace": "srgb",
|
|
39
39
|
"components": [
|
|
40
40
|
0.9254901960784314,
|
|
41
|
-
0.
|
|
42
|
-
0.
|
|
41
|
+
0.9215686274509803,
|
|
42
|
+
0.9176470588235294
|
|
43
43
|
],
|
|
44
44
|
"alpha": 1,
|
|
45
|
-
"hex": "#
|
|
45
|
+
"hex": "#ecebea"
|
|
46
46
|
},
|
|
47
47
|
"$type": "color",
|
|
48
48
|
"$extensions": {
|
|
@@ -54,11 +54,11 @@
|
|
|
54
54
|
"colorSpace": "srgb",
|
|
55
55
|
"components": [
|
|
56
56
|
0.8627450980392157,
|
|
57
|
-
0.
|
|
58
|
-
0.
|
|
57
|
+
0.8588235294117647,
|
|
58
|
+
0.8509803921568627
|
|
59
59
|
],
|
|
60
60
|
"alpha": 1,
|
|
61
|
-
"hex": "#
|
|
61
|
+
"hex": "#dcdbd9"
|
|
62
62
|
},
|
|
63
63
|
"$type": "color",
|
|
64
64
|
"$extensions": {
|
|
@@ -69,12 +69,12 @@
|
|
|
69
69
|
"$value": {
|
|
70
70
|
"colorSpace": "srgb",
|
|
71
71
|
"components": [
|
|
72
|
+
0.7568627450980392,
|
|
72
73
|
0.7490196078431373,
|
|
73
|
-
0.
|
|
74
|
-
0.7647058823529411
|
|
74
|
+
0.7450980392156863
|
|
75
75
|
],
|
|
76
76
|
"alpha": 1,
|
|
77
|
-
"hex": "#
|
|
77
|
+
"hex": "#c1bfbe"
|
|
78
78
|
},
|
|
79
79
|
"$type": "color",
|
|
80
80
|
"$extensions": {
|
|
@@ -85,12 +85,12 @@
|
|
|
85
85
|
"$value": {
|
|
86
86
|
"colorSpace": "srgb",
|
|
87
87
|
"components": [
|
|
88
|
-
0.
|
|
88
|
+
0.6470588235294118,
|
|
89
89
|
0.6392156862745098,
|
|
90
|
-
0.
|
|
90
|
+
0.6392156862745098
|
|
91
91
|
],
|
|
92
92
|
"alpha": 1,
|
|
93
|
-
"hex": "#
|
|
93
|
+
"hex": "#a5a3a3"
|
|
94
94
|
},
|
|
95
95
|
"$type": "color",
|
|
96
96
|
"$extensions": {
|
|
@@ -101,12 +101,12 @@
|
|
|
101
101
|
"$value": {
|
|
102
102
|
"colorSpace": "srgb",
|
|
103
103
|
"components": [
|
|
104
|
-
0.
|
|
104
|
+
0.5411764705882353,
|
|
105
105
|
0.5333333333333333,
|
|
106
|
-
0.
|
|
106
|
+
0.5333333333333333
|
|
107
107
|
],
|
|
108
108
|
"alpha": 1,
|
|
109
|
-
"hex": "#
|
|
109
|
+
"hex": "#8a8888"
|
|
110
110
|
},
|
|
111
111
|
"$type": "color",
|
|
112
112
|
"$extensions": {
|
|
@@ -117,12 +117,12 @@
|
|
|
117
117
|
"$value": {
|
|
118
118
|
"colorSpace": "srgb",
|
|
119
119
|
"components": [
|
|
120
|
-
0.
|
|
120
|
+
0.4549019607843137,
|
|
121
121
|
0.4470588235294118,
|
|
122
|
-
0.
|
|
122
|
+
0.45098039215686275
|
|
123
123
|
],
|
|
124
124
|
"alpha": 1,
|
|
125
|
-
"hex": "#
|
|
125
|
+
"hex": "#747273"
|
|
126
126
|
},
|
|
127
127
|
"$type": "color",
|
|
128
128
|
"$extensions": {
|
|
@@ -133,12 +133,12 @@
|
|
|
133
133
|
"$value": {
|
|
134
134
|
"colorSpace": "srgb",
|
|
135
135
|
"components": [
|
|
136
|
-
0.
|
|
136
|
+
0.39215686274509803,
|
|
137
137
|
0.3803921568627451,
|
|
138
|
-
0.
|
|
138
|
+
0.38823529411764707
|
|
139
139
|
],
|
|
140
140
|
"alpha": 1,
|
|
141
|
-
"hex": "#
|
|
141
|
+
"hex": "#646163"
|
|
142
142
|
},
|
|
143
143
|
"$type": "color",
|
|
144
144
|
"$extensions": {
|
|
@@ -149,12 +149,12 @@
|
|
|
149
149
|
"$value": {
|
|
150
150
|
"colorSpace": "srgb",
|
|
151
151
|
"components": [
|
|
152
|
-
0.
|
|
152
|
+
0.30196078431372547,
|
|
153
153
|
0.29411764705882354,
|
|
154
|
-
0.
|
|
154
|
+
0.3058823529411765
|
|
155
155
|
],
|
|
156
156
|
"alpha": 1,
|
|
157
|
-
"hex": "#
|
|
157
|
+
"hex": "#4d4b4e"
|
|
158
158
|
},
|
|
159
159
|
"$type": "color",
|
|
160
160
|
"$extensions": {
|
|
@@ -167,10 +167,10 @@
|
|
|
167
167
|
"components": [
|
|
168
168
|
0.22745098039215686,
|
|
169
169
|
0.2196078431372549,
|
|
170
|
-
0.
|
|
170
|
+
0.23921568627450981
|
|
171
171
|
],
|
|
172
172
|
"alpha": 1,
|
|
173
|
-
"hex": "#
|
|
173
|
+
"hex": "#3a383d"
|
|
174
174
|
},
|
|
175
175
|
"$type": "color",
|
|
176
176
|
"$extensions": {
|
|
@@ -214,11 +214,11 @@
|
|
|
214
214
|
"colorSpace": "srgb",
|
|
215
215
|
"components": [
|
|
216
216
|
0.0196078431372549,
|
|
217
|
-
0.
|
|
218
|
-
0.
|
|
217
|
+
0.01568627450980392,
|
|
218
|
+
0.03137254901960784
|
|
219
219
|
],
|
|
220
220
|
"alpha": 1,
|
|
221
|
-
"hex": "#
|
|
221
|
+
"hex": "#050408"
|
|
222
222
|
},
|
|
223
223
|
"$type": "color",
|
|
224
224
|
"$extensions": {
|