@gitlab/ui 86.9.0 → 86.10.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 +16 -0
- package/dist/components/base/new_dropdowns/disclosure/disclosure_dropdown.js +10 -6
- package/dist/components/base/new_dropdowns/disclosure/mock_data.js +8 -1
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/tailwind.css +1 -1
- package/dist/tokens/build/js/tokens.dark.js +77 -77
- package/dist/tokens/build/js/tokens.js +63 -63
- package/dist/tokens/css/tokens.css +24 -24
- package/dist/tokens/css/tokens.dark.css +23 -23
- package/dist/tokens/js/tokens.dark.js +77 -77
- package/dist/tokens/js/tokens.js +63 -63
- package/dist/tokens/json/tokens.dark.json +107 -107
- package/dist/tokens/json/tokens.json +93 -93
- package/dist/tokens/scss/_tokens.dark.scss +23 -23
- package/dist/tokens/scss/_tokens.scss +24 -24
- package/dist/tokens/tailwind/tokens.cjs +18 -18
- package/dist/utility_classes.css +1 -1
- package/dist/utility_classes.css.map +1 -1
- package/dist/utils/utils.js +1 -1
- package/package.json +1 -1
- package/src/components/base/new_dropdowns/disclosure/disclosure_dropdown.vue +10 -6
- package/src/components/base/new_dropdowns/disclosure/mock_data.js +12 -0
- package/src/tokens/build/css/tokens.css +24 -24
- package/src/tokens/build/css/tokens.dark.css +23 -23
- package/src/tokens/build/js/tokens.dark.js +77 -77
- package/src/tokens/build/js/tokens.js +63 -63
- package/src/tokens/build/json/tokens.dark.json +107 -107
- package/src/tokens/build/json/tokens.json +93 -93
- package/src/tokens/build/scss/_tokens.dark.scss +23 -23
- package/src/tokens/build/scss/_tokens.scss +24 -24
- package/src/tokens/build/tailwind/tokens.cjs +18 -18
- package/src/tokens/color.alpha.tokens.json +6 -6
- package/src/tokens/color.constant.tokens.json +5 -5
- package/src/tokens/color.tokens.json +14 -14
- package/src/tokens/color.transparency.tokens.json +6 -6
- package/src/tokens/shadow.tokens.json +2 -2
- package/src/tokens/text.tokens.json +1 -1
- package/src/utils/utils.js +1 -1
|
@@ -18,25 +18,25 @@ const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_SUBTLE_ACTIVE = '#dcdcde'; // Used for
|
|
|
18
18
|
const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_STRONG_DEFAULT = '#737278'; // Used for the background of a solid, strong neutral action in the default state.
|
|
19
19
|
const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_STRONG_HOVER = '#626168'; // Used for the background of a solid, strong neutral action in the hover state.
|
|
20
20
|
const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_STRONG_FOCUS = '#626168'; // Used for the background of a solid, strong neutral action in the focus state.
|
|
21
|
-
const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_STRONG_ACTIVE = '#
|
|
21
|
+
const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_STRONG_ACTIVE = '#4c4b51'; // Used for the background of a solid, strong neutral action in the active state.
|
|
22
22
|
const GL_ACTION_NEUTRAL_BORDER_COLOR_DEFAULT = '#bfbfc3'; // Used for the border of an outlined neutral action in the default state.
|
|
23
23
|
const GL_ACTION_NEUTRAL_BORDER_COLOR_HOVER = '#89888d'; // Used for the border of an outlined neutral action in the hover state.
|
|
24
24
|
const GL_ACTION_NEUTRAL_BORDER_COLOR_FOCUS = '#89888d'; // Used for the border of an outlined neutral action in the focus state.
|
|
25
25
|
const GL_ACTION_NEUTRAL_BORDER_COLOR_ACTIVE = '#626168'; // Used for the border of an outlined neutral action in the active state.
|
|
26
26
|
const GL_ACTION_NEUTRAL_BORDER_COLOR_SELECTED = '#a4a3a8'; // Used for the border of a outlined neutral action when in a selected or current state.
|
|
27
27
|
const GL_ACTION_NEUTRAL_BORDER_COLOR_STRONG_DEFAULT = '#626168'; // Used for the border of a solid, strong neutral action in the default state.
|
|
28
|
-
const GL_ACTION_NEUTRAL_BORDER_COLOR_STRONG_HOVER = '#
|
|
29
|
-
const GL_ACTION_NEUTRAL_BORDER_COLOR_STRONG_FOCUS = '#
|
|
30
|
-
const GL_ACTION_NEUTRAL_BORDER_COLOR_STRONG_ACTIVE = '#
|
|
31
|
-
const GL_ACTION_NEUTRAL_TEXT_COLOR_DEFAULT = '#
|
|
32
|
-
const GL_ACTION_NEUTRAL_TEXT_COLOR_HOVER = '#
|
|
33
|
-
const GL_ACTION_NEUTRAL_TEXT_COLOR_FOCUS = '#
|
|
34
|
-
const GL_ACTION_NEUTRAL_TEXT_COLOR_ACTIVE = '#
|
|
28
|
+
const GL_ACTION_NEUTRAL_BORDER_COLOR_STRONG_HOVER = '#3a383f'; // Used for the border of a solid, strong neutral action in the hover state.
|
|
29
|
+
const GL_ACTION_NEUTRAL_BORDER_COLOR_STRONG_FOCUS = '#3a383f'; // Used for the border of a solid, strong neutral action in the focus state.
|
|
30
|
+
const GL_ACTION_NEUTRAL_BORDER_COLOR_STRONG_ACTIVE = '#28272d'; // Used for the border of a solid, strong neutral action in the active state.
|
|
31
|
+
const GL_ACTION_NEUTRAL_TEXT_COLOR_DEFAULT = '#28272d'; // Used for the text of outlined and borderless neutral actions.
|
|
32
|
+
const GL_ACTION_NEUTRAL_TEXT_COLOR_HOVER = '#28272d'; // Used for the text of a neutral action in the hover state.
|
|
33
|
+
const GL_ACTION_NEUTRAL_TEXT_COLOR_FOCUS = '#28272d'; // Used for the text of a neutral action in the focus state.
|
|
34
|
+
const GL_ACTION_NEUTRAL_TEXT_COLOR_ACTIVE = '#28272d'; // Used for the text of a neutral action in the active state.
|
|
35
35
|
const GL_ACTION_NEUTRAL_TEXT_COLOR_STRONG = '#fff'; // Used for the text on a solid, strong neutral action background.
|
|
36
36
|
const GL_ACTION_NEUTRAL_ICON_COLOR_DEFAULT = '#737278'; // Used for the icon of outlined and borderless neutral actions.
|
|
37
|
-
const GL_ACTION_NEUTRAL_ICON_COLOR_HOVER = '#
|
|
38
|
-
const GL_ACTION_NEUTRAL_ICON_COLOR_FOCUS = '#
|
|
39
|
-
const GL_ACTION_NEUTRAL_ICON_COLOR_ACTIVE = '#
|
|
37
|
+
const GL_ACTION_NEUTRAL_ICON_COLOR_HOVER = '#4c4b51'; // Used for the icon of outlined and borderless neutral actions in the hover state.
|
|
38
|
+
const GL_ACTION_NEUTRAL_ICON_COLOR_FOCUS = '#4c4b51'; // Used for the icon of outlined and borderless neutral actions in the focus state.
|
|
39
|
+
const GL_ACTION_NEUTRAL_ICON_COLOR_ACTIVE = '#28272d'; // Used for the icon of outlined and borderless neutral actions in the active state.
|
|
40
40
|
const GL_ACTION_NEUTRAL_ICON_COLOR_STRONG = '#fff'; // Used for the icon on a solid, strong neutral action background.
|
|
41
41
|
const GL_ACTION_CONFIRM_BACKGROUND_COLOR_DEFAULT = '#fff'; // Used for the background of an outlined confirm (positive) action in the default state.
|
|
42
42
|
const GL_ACTION_CONFIRM_BACKGROUND_COLOR_HOVER = '#e9f3fc'; // Used for the background of an outlined confirm (positive) action in the hover state.
|
|
@@ -104,18 +104,18 @@ const GL_BACKGROUND_COLOR_DEFAULT = '#fff'; // Used for the default background c
|
|
|
104
104
|
const GL_BACKGROUND_COLOR_SUBTLE = '#fbfafd'; // Used to slightly differentiate the background from the default.
|
|
105
105
|
const GL_BACKGROUND_COLOR_STRONG = '#ececef'; // Used to make the background easily stand out from the default.
|
|
106
106
|
const GL_BACKGROUND_COLOR_DISABLED = '#fbfafd'; // Used to identify a disabled section.
|
|
107
|
-
const GL_BACKGROUND_COLOR_OVERLAY = 'rgba(
|
|
107
|
+
const GL_BACKGROUND_COLOR_OVERLAY = 'rgba(05, 05, 06, 0.24)'; // Used for an overlay that covers other content.
|
|
108
108
|
const GL_BORDER_COLOR_DEFAULT = '#dcdcde'; // Used for the default border color.
|
|
109
109
|
const GL_BORDER_COLOR_SUBTLE = '#ececef'; // Used for a subtle border in combination with the default background.
|
|
110
110
|
const GL_BORDER_COLOR_STRONG = '#89888d'; // Used for a distinct border that emphasizes an edge or boundaries.
|
|
111
111
|
const GL_BORDER_COLOR_TRANSPARENT = 'transparent'; // Used when a border needs to be present, but not visibly perceived.
|
|
112
112
|
const GL_COLOR_ALPHA_0 = 'transparent';
|
|
113
|
-
const GL_COLOR_ALPHA_DARK_2 = 'rgba(
|
|
114
|
-
const GL_COLOR_ALPHA_DARK_4 = 'rgba(
|
|
115
|
-
const GL_COLOR_ALPHA_DARK_6 = 'rgba(
|
|
116
|
-
const GL_COLOR_ALPHA_DARK_8 = 'rgba(
|
|
117
|
-
const GL_COLOR_ALPHA_DARK_16 = 'rgba(
|
|
118
|
-
const GL_COLOR_ALPHA_DARK_24 = 'rgba(
|
|
113
|
+
const GL_COLOR_ALPHA_DARK_2 = 'rgba(05, 05, 06, 0.02)';
|
|
114
|
+
const GL_COLOR_ALPHA_DARK_4 = 'rgba(05, 05, 06, 0.04)';
|
|
115
|
+
const GL_COLOR_ALPHA_DARK_6 = 'rgba(05, 05, 06, 0.06)';
|
|
116
|
+
const GL_COLOR_ALPHA_DARK_8 = 'rgba(05, 05, 06, 0.08)';
|
|
117
|
+
const GL_COLOR_ALPHA_DARK_16 = 'rgba(05, 05, 06, 0.16)';
|
|
118
|
+
const GL_COLOR_ALPHA_DARK_24 = 'rgba(05, 05, 06, 0.24)';
|
|
119
119
|
const GL_COLOR_ALPHA_LIGHT_2 = 'rgba(255, 255, 255, 0.02)';
|
|
120
120
|
const GL_COLOR_ALPHA_LIGHT_4 = 'rgba(255, 255, 255, 0.04)';
|
|
121
121
|
const GL_COLOR_ALPHA_LIGHT_6 = 'rgba(255, 255, 255, 0.06)';
|
|
@@ -143,11 +143,11 @@ const GL_COLOR_NEUTRAL_300 = '#a4a3a8';
|
|
|
143
143
|
const GL_COLOR_NEUTRAL_400 = '#89888d';
|
|
144
144
|
const GL_COLOR_NEUTRAL_500 = '#737278';
|
|
145
145
|
const GL_COLOR_NEUTRAL_600 = '#626168';
|
|
146
|
-
const GL_COLOR_NEUTRAL_700 = '#
|
|
147
|
-
const GL_COLOR_NEUTRAL_800 = '#
|
|
148
|
-
const GL_COLOR_NEUTRAL_900 = '#
|
|
149
|
-
const GL_COLOR_NEUTRAL_950 = '#
|
|
150
|
-
const GL_COLOR_NEUTRAL_1000 = '#
|
|
146
|
+
const GL_COLOR_NEUTRAL_700 = '#4c4b51';
|
|
147
|
+
const GL_COLOR_NEUTRAL_800 = '#3a383f';
|
|
148
|
+
const GL_COLOR_NEUTRAL_900 = '#28272d';
|
|
149
|
+
const GL_COLOR_NEUTRAL_950 = '#18171d';
|
|
150
|
+
const GL_COLOR_NEUTRAL_1000 = '#050506';
|
|
151
151
|
const GL_COLOR_GREEN_50 = '#ecf4ee';
|
|
152
152
|
const GL_COLOR_GREEN_100 = '#c3e6cd';
|
|
153
153
|
const GL_COLOR_GREEN_200 = '#91d4a8';
|
|
@@ -406,7 +406,7 @@ const THEME_LIGHT_RED_700 = '#a02e1c';
|
|
|
406
406
|
const THEME_LIGHT_RED_800 = '#8b2212';
|
|
407
407
|
const THEME_LIGHT_RED_900 = '#751709';
|
|
408
408
|
const THEME_LIGHT_RED_950 = '#5c1105';
|
|
409
|
-
const BLACK = '#
|
|
409
|
+
const BLACK = '#050506';
|
|
410
410
|
const WHITE = '#fff';
|
|
411
411
|
const BLUE_50 = '#e9f3fc';
|
|
412
412
|
const BLUE_100 = '#cbe2f9';
|
|
@@ -427,10 +427,10 @@ const GRAY_300 = '#a4a3a8';
|
|
|
427
427
|
const GRAY_400 = '#89888d';
|
|
428
428
|
const GRAY_500 = '#737278';
|
|
429
429
|
const GRAY_600 = '#626168';
|
|
430
|
-
const GRAY_700 = '#
|
|
431
|
-
const GRAY_800 = '#
|
|
432
|
-
const GRAY_900 = '#
|
|
433
|
-
const GRAY_950 = '#
|
|
430
|
+
const GRAY_700 = '#4c4b51';
|
|
431
|
+
const GRAY_800 = '#3a383f';
|
|
432
|
+
const GRAY_900 = '#28272d';
|
|
433
|
+
const GRAY_950 = '#18171d';
|
|
434
434
|
const GREEN_50 = '#ecf4ee';
|
|
435
435
|
const GREEN_100 = '#c3e6cd';
|
|
436
436
|
const GREEN_200 = '#91d4a8';
|
|
@@ -486,12 +486,12 @@ const BRAND_GRAY_02 = '#a2a1a6';
|
|
|
486
486
|
const BRAND_GRAY_03 = '#74717a';
|
|
487
487
|
const BRAND_GRAY_04 = '#45424d';
|
|
488
488
|
const BRAND_GRAY_05 = '#2b2838';
|
|
489
|
-
const T_GRAY_A_16 = 'rgba(
|
|
490
|
-
const T_GRAY_A_24 = 'rgba(
|
|
491
|
-
const T_GRAY_A_02 = 'rgba(
|
|
492
|
-
const T_GRAY_A_04 = 'rgba(
|
|
493
|
-
const T_GRAY_A_06 = 'rgba(
|
|
494
|
-
const T_GRAY_A_08 = 'rgba(
|
|
489
|
+
const T_GRAY_A_16 = 'rgba(05, 05, 06, 0.16)';
|
|
490
|
+
const T_GRAY_A_24 = 'rgba(05, 05, 06, 0.24)';
|
|
491
|
+
const T_GRAY_A_02 = 'rgba(05, 05, 06, 0.02)';
|
|
492
|
+
const T_GRAY_A_04 = 'rgba(05, 05, 06, 0.04)';
|
|
493
|
+
const T_GRAY_A_06 = 'rgba(05, 05, 06, 0.06)';
|
|
494
|
+
const T_GRAY_A_08 = 'rgba(05, 05, 06, 0.08)';
|
|
495
495
|
const T_WHITE_A_16 = 'rgba(255, 255, 255, 0.16)';
|
|
496
496
|
const T_WHITE_A_24 = 'rgba(255, 255, 255, 0.24)';
|
|
497
497
|
const T_WHITE_A_36 = 'rgba(255, 255, 255, 0.36)';
|
|
@@ -499,8 +499,8 @@ const T_WHITE_A_02 = 'rgba(255, 255, 255, 0.02)';
|
|
|
499
499
|
const T_WHITE_A_04 = 'rgba(255, 255, 255, 0.04)';
|
|
500
500
|
const T_WHITE_A_06 = 'rgba(255, 255, 255, 0.06)';
|
|
501
501
|
const T_WHITE_A_08 = 'rgba(255, 255, 255, 0.08)';
|
|
502
|
-
const GL_AVATAR_BORDER_COLOR_DEFAULT = 'rgba(
|
|
503
|
-
const GL_AVATAR_BORDER_COLOR_HOVER = 'rgba(
|
|
502
|
+
const GL_AVATAR_BORDER_COLOR_DEFAULT = 'rgba(05, 05, 06, 0.08)'; // Used to define the edge of an avatar.
|
|
503
|
+
const GL_AVATAR_BORDER_COLOR_HOVER = 'rgba(05, 05, 06, 0.24)'; // Used to increase the edge definition of an avatar in the hover state.
|
|
504
504
|
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_RED = '#fcf1ef'; // Red background for avatar fallback with no particular meaning.
|
|
505
505
|
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_PURPLE = '#f4f0ff'; // Purple background for avatar fallback with no particular meaning.
|
|
506
506
|
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_BLUE = '#e9f3fc'; // Blue background for avatar fallback with no particular meaning.
|
|
@@ -510,27 +510,27 @@ const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_NEUTRAL = '#ececef'; // Neutral backgr
|
|
|
510
510
|
const GL_BANNER_INTRO_BORDER_COLOR = '#63a6e9'; // Used to compliment the info banner.
|
|
511
511
|
const GL_BANNER_PROMO_BACKGROUND_COLOR = '#fbfafd'; // Used as background for the default banner type.
|
|
512
512
|
const GL_BREADCRUMB_SEPARATOR_COLOR = '#bfbfc3'; // Used for the breadcrumb level separator.
|
|
513
|
-
const GL_LABEL_LIGHT_TEXT_COLOR = '#
|
|
513
|
+
const GL_LABEL_LIGHT_TEXT_COLOR = '#18171d'; // Used for the label text color on a light background color.
|
|
514
514
|
const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_DEFAULT = 'transparent'; // Used for the label remove button background on a light background color in the default state.
|
|
515
|
-
const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_HOVER = '#
|
|
516
|
-
const GL_LABEL_LIGHT_BUTTON_ICON_COLOR_DEFAULT = '#
|
|
515
|
+
const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_HOVER = '#18171d'; // Used for the label remove button background on a light background color in the hover state.
|
|
516
|
+
const GL_LABEL_LIGHT_BUTTON_ICON_COLOR_DEFAULT = '#18171d'; // Used for the label remove button icon on a light background color in the default state.
|
|
517
517
|
const GL_LABEL_DARK_TEXT_COLOR = '#fff'; // Used for the label text color on a dark background color.
|
|
518
518
|
const GL_LABEL_DARK_BUTTON_BACKGROUND_COLOR_DEFAULT = 'transparent'; // Used for the label remove button background on a dark background color in the default state.
|
|
519
519
|
const GL_LABEL_DARK_BUTTON_BACKGROUND_COLOR_HOVER = '#fff'; // Used for the label remove button background on a dark background color in the hover state.
|
|
520
520
|
const GL_LABEL_DARK_BUTTON_ICON_COLOR_DEFAULT = '#fff'; // Used for the label remove button icon on a dark background color in the default state.
|
|
521
|
-
const GL_LABEL_SCOPED_TEXT_COLOR = '#
|
|
522
|
-
const GL_LABEL_SCOPED_BUTTON_BACKGROUND_COLOR_HOVER = '#
|
|
523
|
-
const GL_LABEL_SCOPED_BUTTON_ICON_COLOR_DEFAULT = '#
|
|
521
|
+
const GL_LABEL_SCOPED_TEXT_COLOR = '#18171d'; // Used for the scoped label text color.
|
|
522
|
+
const GL_LABEL_SCOPED_BUTTON_BACKGROUND_COLOR_HOVER = '#18171d'; // Used for the scoped label remove button background in the hover state.
|
|
523
|
+
const GL_LABEL_SCOPED_BUTTON_ICON_COLOR_DEFAULT = '#18171d'; // Used for the scoped label remove button icon in the default state.
|
|
524
524
|
const GL_LABEL_SCOPED_BUTTON_ICON_COLOR_HOVER = '#fff'; // Used for the scoped label remove button icon in the hover state.
|
|
525
525
|
const GL_POPOVER_BACKGROUND_COLOR = '#fff'; // Used for the background color of popover.
|
|
526
526
|
const GL_SKELETON_LOADER_BACKGROUND_COLOR = '#dcdcde'; // Used for the skeleton loader background color.
|
|
527
527
|
const GL_SKELETON_LOADER_SHIMMER_COLOR = '#ececef'; // Used for the animated shimmer effect in a skeleton loader.
|
|
528
528
|
const GL_SPINNER_TRACK_COLOR_DEFAULT = '#dcdcde'; // Used for the static track (background) of a loading spinner.
|
|
529
|
-
const GL_SPINNER_TRACK_COLOR_LIGHT = '#
|
|
530
|
-
const GL_SPINNER_SEGMENT_COLOR_DEFAULT = '#
|
|
529
|
+
const GL_SPINNER_TRACK_COLOR_LIGHT = '#3a383f'; // Used for the static track (background) of a loading spinner on a dark background.
|
|
530
|
+
const GL_SPINNER_SEGMENT_COLOR_DEFAULT = '#4c4b51'; // Used for the animated segment of a loading spinner.
|
|
531
531
|
const GL_SPINNER_SEGMENT_COLOR_LIGHT = '#bfbfc3'; // Used for the animated segment of a loading spinner on a dark background.
|
|
532
532
|
const GL_TABLE_ROW_BACKGROUND_COLOR_HOVER = '#fbfafd'; // Used for the background of a table row in hover state.
|
|
533
|
-
const GL_TABLE_SORTING_ICON_COLOR = '#
|
|
533
|
+
const GL_TABLE_SORTING_ICON_COLOR = '#18171d'; // Used for the color of the sorting icons in the column headers.
|
|
534
534
|
const GL_CONTROL_BACKGROUND_COLOR_DEFAULT = '#fff'; // Used for form control (input, radio button, checkbox, textarea) default background.
|
|
535
535
|
const GL_CONTROL_BACKGROUND_COLOR_DISABLED = '#fbfafd'; // Used for disabled form control (checkbox, input, radio button, textarea) background.
|
|
536
536
|
const GL_CONTROL_BACKGROUND_COLOR_SELECTED_DEFAULT = '#1f75cb'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background.
|
|
@@ -538,7 +538,7 @@ const GL_CONTROL_BACKGROUND_COLOR_SELECTED_HOVER = '#0b5cad'; // Used for checke
|
|
|
538
538
|
const GL_CONTROL_BACKGROUND_COLOR_SELECTED_FOCUS = '#0b5cad'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background on hover.
|
|
539
539
|
const GL_CONTROL_BORDER_COLOR_DEFAULT = '#89888d'; // Used for form control (input, radio button, checkbox, textarea) default border.
|
|
540
540
|
const GL_CONTROL_BORDER_COLOR_HOVER = '#626168'; // Used for form control (input, radio button, checkbox, textarea) border on hover.
|
|
541
|
-
const GL_CONTROL_BORDER_COLOR_FOCUS = '#
|
|
541
|
+
const GL_CONTROL_BORDER_COLOR_FOCUS = '#28272d'; // Used for form control (input, radio button, checkbox, textarea) border on focus.
|
|
542
542
|
const GL_CONTROL_BORDER_COLOR_DISABLED = '#dcdcde'; // Used for disabled form control (input, radio button, checkbox, textarea) border.
|
|
543
543
|
const GL_CONTROL_BORDER_COLOR_ERROR = '#dd2b0e'; // Used for invalid form control (input, textarea) border.
|
|
544
544
|
const GL_CONTROL_BORDER_COLOR_SELECTED_DEFAULT = '#1f75cb'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border.
|
|
@@ -549,7 +549,7 @@ const GL_CONTROL_TEXT_COLOR_VALID = '#108548'; // Used for the helper text when
|
|
|
549
549
|
const GL_CONTROL_PLACEHOLDER_COLOR = '#89888d'; // Used for placeholder text within inputs.
|
|
550
550
|
const GL_CONTROL_INDICATOR_COLOR_SELECTED = '#fff'; // Used for checkbox and radio button state indicators.
|
|
551
551
|
const GL_CONTROL_INDICATOR_COLOR_DISABLED = '#737278'; // Used for disabled checkbox and radio button state indicators.
|
|
552
|
-
const GL_FEEDBACK_BACKGROUND_COLOR_STRONG = '#
|
|
552
|
+
const GL_FEEDBACK_BACKGROUND_COLOR_STRONG = '#18171d'; // Used for a background associated with feedback like a tooltip or toast message.
|
|
553
553
|
const GL_FEEDBACK_TEXT_COLOR_STRONG = '#fff'; // Used for text on a strong feedback background.
|
|
554
554
|
const GL_FEEDBACK_ICON_COLOR_STRONG = '#fff'; // Used for an icon on a strong feedback background.
|
|
555
555
|
const GL_FEEDBACK_LINK_COLOR_STRONG = '#63a6e9'; // Used for a link on a strong feedback background.
|
|
@@ -565,9 +565,9 @@ const GL_FEEDBACK_DANGER_BACKGROUND_COLOR = '#fcf1ef'; // Used for a background
|
|
|
565
565
|
const GL_FEEDBACK_DANGER_ICON_COLOR = '#c91c00'; // Used for an icon associated with danger or critical feedback.
|
|
566
566
|
const GL_FOCUS_RING_OUTER_COLOR = '#1f75cb'; // Used for the outer color portion of the focus ring.
|
|
567
567
|
const GL_FOCUS_RING_INNER_COLOR = '#fff'; // Used for the inner neutral portion of the focus ring.
|
|
568
|
-
const GL_ICON_COLOR_DEFAULT = '#
|
|
568
|
+
const GL_ICON_COLOR_DEFAULT = '#4c4b51'; // Used for the default icon color. Can be paired with default text.
|
|
569
569
|
const GL_ICON_COLOR_SUBTLE = '#737278'; // Used for a static or decorational icon. Can be paired with subtle text.
|
|
570
|
-
const GL_ICON_COLOR_STRONG = '#
|
|
570
|
+
const GL_ICON_COLOR_STRONG = '#28272d'; // Used for an icon with the highest contrast.
|
|
571
571
|
const GL_ICON_COLOR_DISABLED = '#a4a3a8'; // Used for an icon within a disabled section.
|
|
572
572
|
const GL_ICON_COLOR_LINK = '#1068bf'; // Used for an icon within a link.
|
|
573
573
|
const GL_ICON_COLOR_INFO = '#1068bf'; // Used for an icon associated with information or help.
|
|
@@ -584,29 +584,29 @@ const GL_LINE_HEIGHT_36 = '2.25rem';
|
|
|
584
584
|
const GL_LINE_HEIGHT_42 = '2.625rem';
|
|
585
585
|
const GL_LINE_HEIGHT_44 = '2.75rem';
|
|
586
586
|
const GL_LINE_HEIGHT_52 = '3.25rem';
|
|
587
|
-
const GL_SHADOW_COLOR_DEFAULT = 'rgba(
|
|
587
|
+
const GL_SHADOW_COLOR_DEFAULT = 'rgba(05, 05, 06, 0.16)'; // Used for the default shadow color.
|
|
588
588
|
const GL_STATUS_MUTED_BACKGROUND_COLOR_DEFAULT = '#ececef'; // Used for the background of a subtle neutral status item when static or the default state when linked.
|
|
589
589
|
const GL_STATUS_MUTED_BACKGROUND_COLOR_ACTIVE = '#dcdcde'; // Used for the background of a subtle neutral status item in the active state.
|
|
590
590
|
const GL_STATUS_MUTED_BORDER_COLOR_HOVER = '#bfbfc3'; // Used for the border of a subtle neutral status item in the hover state.
|
|
591
591
|
const GL_STATUS_MUTED_TEXT_COLOR_DEFAULT = '#626168'; // Used for the text of a subtle neutral status item when static or the default state when linked.
|
|
592
|
-
const GL_STATUS_MUTED_TEXT_COLOR_HOVER = '#
|
|
593
|
-
const GL_STATUS_MUTED_TEXT_COLOR_FOCUS = '#
|
|
594
|
-
const GL_STATUS_MUTED_TEXT_COLOR_ACTIVE = '#
|
|
592
|
+
const GL_STATUS_MUTED_TEXT_COLOR_HOVER = '#4c4b51'; // Used for the text of a subtle neutral status item in the hover state.
|
|
593
|
+
const GL_STATUS_MUTED_TEXT_COLOR_FOCUS = '#4c4b51'; // Used for the text of a subtle neutral status item in the focus state.
|
|
594
|
+
const GL_STATUS_MUTED_TEXT_COLOR_ACTIVE = '#3a383f'; // Used for the text of a subtle neutral status item in the active state.
|
|
595
595
|
const GL_STATUS_MUTED_ICON_COLOR_DEFAULT = '#737278'; // Used for the icon of a subtle neutral status item when static or the default state when linked.
|
|
596
596
|
const GL_STATUS_MUTED_ICON_COLOR_HOVER = '#626168'; // Used for the icon of a subtle neutral status item in the hover state.
|
|
597
597
|
const GL_STATUS_MUTED_ICON_COLOR_FOCUS = '#626168'; // Used for the icon of a subtle neutral status item in the focus state.
|
|
598
|
-
const GL_STATUS_MUTED_ICON_COLOR_ACTIVE = '#
|
|
598
|
+
const GL_STATUS_MUTED_ICON_COLOR_ACTIVE = '#4c4b51'; // Used for the icon of a subtle neutral status item in the active state.
|
|
599
599
|
const GL_STATUS_NEUTRAL_BACKGROUND_COLOR_DEFAULT = '#dcdcde'; // Used for the background of a neutral status item when static or the default state when linked.
|
|
600
600
|
const GL_STATUS_NEUTRAL_BACKGROUND_COLOR_ACTIVE = '#bfbfc3'; // Used for the background of a neutral status item in the active state.
|
|
601
601
|
const GL_STATUS_NEUTRAL_BORDER_COLOR_HOVER = '#bfbfc3'; // Used for the border of a neutral status item in the hover state.
|
|
602
|
-
const GL_STATUS_NEUTRAL_TEXT_COLOR_DEFAULT = '#
|
|
603
|
-
const GL_STATUS_NEUTRAL_TEXT_COLOR_HOVER = '#
|
|
604
|
-
const GL_STATUS_NEUTRAL_TEXT_COLOR_FOCUS = '#
|
|
605
|
-
const GL_STATUS_NEUTRAL_TEXT_COLOR_ACTIVE = '#
|
|
602
|
+
const GL_STATUS_NEUTRAL_TEXT_COLOR_DEFAULT = '#4c4b51'; // Used for the text of a neutral status item when static or the default state when linked.
|
|
603
|
+
const GL_STATUS_NEUTRAL_TEXT_COLOR_HOVER = '#3a383f'; // Used for the text of a neutral status item in the hover state.
|
|
604
|
+
const GL_STATUS_NEUTRAL_TEXT_COLOR_FOCUS = '#3a383f'; // Used for the text of a neutral status item in the focus state.
|
|
605
|
+
const GL_STATUS_NEUTRAL_TEXT_COLOR_ACTIVE = '#28272d'; // Used for the text of a neutral status item in the active state.
|
|
606
606
|
const GL_STATUS_NEUTRAL_ICON_COLOR_DEFAULT = '#737278'; // Used for the icon of a neutral status item when static or the default state when linked.
|
|
607
607
|
const GL_STATUS_NEUTRAL_ICON_COLOR_HOVER = '#626168'; // Used for the icon of a neutral status item in the hover state.
|
|
608
608
|
const GL_STATUS_NEUTRAL_ICON_COLOR_FOCUS = '#626168'; // Used for the icon of a neutral status item in the focus state.
|
|
609
|
-
const GL_STATUS_NEUTRAL_ICON_COLOR_ACTIVE = '#
|
|
609
|
+
const GL_STATUS_NEUTRAL_ICON_COLOR_ACTIVE = '#4c4b51'; // Used for the icon of a neutral status item in the active state.
|
|
610
610
|
const GL_STATUS_INFO_BACKGROUND_COLOR_DEFAULT = '#cbe2f9'; // Used for the background of an informational status item when static or the default state when linked.
|
|
611
611
|
const GL_STATUS_INFO_BACKGROUND_COLOR_ACTIVE = '#9dc7f1'; // Used for the background of an informational status item in the active state.
|
|
612
612
|
const GL_STATUS_INFO_BORDER_COLOR_HOVER = '#9dc7f1'; // Used for the border of an informational status item in the hover state.
|
|
@@ -662,13 +662,13 @@ const GL_STATUS_BRAND_ICON_COLOR_DEFAULT = '#7b58cf'; // Used for the icon of a
|
|
|
662
662
|
const GL_STATUS_BRAND_ICON_COLOR_HOVER = '#694cc0'; // Used for the icon of a brand related status item in the hover state.
|
|
663
663
|
const GL_STATUS_BRAND_ICON_COLOR_FOCUS = '#694cc0'; // Used for the icon of a brand related status item in the focus state.
|
|
664
664
|
const GL_STATUS_BRAND_ICON_COLOR_ACTIVE = '#5943b6'; // Used for the icon of a brand related status item in the active state.
|
|
665
|
-
const GL_TEXT_PRIMARY = '#
|
|
665
|
+
const GL_TEXT_PRIMARY = '#28272d'; // Use text.color.default instead
|
|
666
666
|
const GL_TEXT_SECONDARY = '#737278'; // Use text.color.subtle instead
|
|
667
667
|
const GL_TEXT_TERTIARY = '#89888d'; // Use text.color.disabled instead
|
|
668
|
-
const GL_TEXT_COLOR_DEFAULT = '#
|
|
668
|
+
const GL_TEXT_COLOR_DEFAULT = '#3a383f'; // Used for the default text color.
|
|
669
669
|
const GL_TEXT_COLOR_SUBTLE = '#626168'; // Used for supplemental text that doesn't need to be as prominent as other text.
|
|
670
|
-
const GL_TEXT_COLOR_STRONG = '#
|
|
671
|
-
const GL_TEXT_COLOR_HEADING = '#
|
|
670
|
+
const GL_TEXT_COLOR_STRONG = '#18171d'; // Used for text with the highest contrast.
|
|
671
|
+
const GL_TEXT_COLOR_HEADING = '#18171d'; // Used for headings level 1-6.
|
|
672
672
|
const GL_TEXT_COLOR_LINK = '#0b5cad'; // Used for default text links.
|
|
673
673
|
const GL_TEXT_COLOR_DANGER = '#c91c00'; // Used for text indicating a problem, critical state, destructive action, error, failure, removal, stop, or declination.
|
|
674
674
|
const GL_TEXT_COLOR_SUCCESS = '#217645'; // Used for text indicating success or validity.
|
|
@@ -6,8 +6,7 @@
|
|
|
6
6
|
:root {
|
|
7
7
|
--gl-text-tertiary: #89888d; /* Use text.color.disabled instead */
|
|
8
8
|
--gl-text-secondary: #737278; /* Use text.color.subtle instead */
|
|
9
|
-
--gl-text-primary: #
|
|
10
|
-
--gl-shadow-color-default: rgba(5, 5, 6, 0.16); /* Used for the default shadow color. */
|
|
9
|
+
--gl-text-primary: #28272d; /* Use text.color.default instead */
|
|
11
10
|
--gl-line-height-52: 3.25rem;
|
|
12
11
|
--gl-line-height-44: 2.75rem;
|
|
13
12
|
--gl-line-height-42: 2.625rem;
|
|
@@ -25,12 +24,12 @@
|
|
|
25
24
|
--t-white-a-36: rgba(255, 255, 255, 0.36);
|
|
26
25
|
--t-white-a-24: rgba(255, 255, 255, 0.24);
|
|
27
26
|
--t-white-a-16: rgba(255, 255, 255, 0.16);
|
|
28
|
-
--t-gray-a-08: rgba(
|
|
29
|
-
--t-gray-a-06: rgba(
|
|
30
|
-
--t-gray-a-04: rgba(
|
|
31
|
-
--t-gray-a-02: rgba(
|
|
32
|
-
--t-gray-a-24: rgba(
|
|
33
|
-
--t-gray-a-16: rgba(
|
|
27
|
+
--t-gray-a-08: rgba(05, 05, 06, 0.08);
|
|
28
|
+
--t-gray-a-06: rgba(05, 05, 06, 0.06);
|
|
29
|
+
--t-gray-a-04: rgba(05, 05, 06, 0.04);
|
|
30
|
+
--t-gray-a-02: rgba(05, 05, 06, 0.02);
|
|
31
|
+
--t-gray-a-24: rgba(05, 05, 06, 0.24);
|
|
32
|
+
--t-gray-a-16: rgba(05, 05, 06, 0.16);
|
|
34
33
|
--brand-gray-05: #2b2838;
|
|
35
34
|
--brand-gray-04: #45424d;
|
|
36
35
|
--brand-gray-03: #74717a;
|
|
@@ -86,10 +85,10 @@
|
|
|
86
85
|
--green-200: #91d4a8;
|
|
87
86
|
--green-100: #c3e6cd;
|
|
88
87
|
--green-50: #ecf4ee;
|
|
89
|
-
--gray-950: #
|
|
90
|
-
--gray-900: #
|
|
91
|
-
--gray-800: #
|
|
92
|
-
--gray-700: #
|
|
88
|
+
--gray-950: #18171d;
|
|
89
|
+
--gray-900: #28272d;
|
|
90
|
+
--gray-800: #3a383f;
|
|
91
|
+
--gray-700: #4c4b51;
|
|
93
92
|
--gray-600: #626168;
|
|
94
93
|
--gray-500: #737278;
|
|
95
94
|
--gray-400: #89888d;
|
|
@@ -110,7 +109,7 @@
|
|
|
110
109
|
--blue-100: #cbe2f9;
|
|
111
110
|
--blue-50: #e9f3fc;
|
|
112
111
|
--white: #fff;
|
|
113
|
-
--black: #
|
|
112
|
+
--black: #050506;
|
|
114
113
|
--theme-light-red-950: #5c1105;
|
|
115
114
|
--theme-light-red-900: #751709;
|
|
116
115
|
--theme-light-red-800: #8b2212;
|
|
@@ -369,11 +368,11 @@
|
|
|
369
368
|
--gl-color-green-200: #91d4a8;
|
|
370
369
|
--gl-color-green-100: #c3e6cd;
|
|
371
370
|
--gl-color-green-50: #ecf4ee;
|
|
372
|
-
--gl-color-neutral-1000: #
|
|
373
|
-
--gl-color-neutral-950: #
|
|
374
|
-
--gl-color-neutral-900: #
|
|
375
|
-
--gl-color-neutral-800: #
|
|
376
|
-
--gl-color-neutral-700: #
|
|
371
|
+
--gl-color-neutral-1000: #050506;
|
|
372
|
+
--gl-color-neutral-950: #18171d;
|
|
373
|
+
--gl-color-neutral-900: #28272d;
|
|
374
|
+
--gl-color-neutral-800: #3a383f;
|
|
375
|
+
--gl-color-neutral-700: #4c4b51;
|
|
377
376
|
--gl-color-neutral-600: #626168;
|
|
378
377
|
--gl-color-neutral-500: #737278;
|
|
379
378
|
--gl-color-neutral-400: #89888d;
|
|
@@ -401,12 +400,12 @@
|
|
|
401
400
|
--gl-color-alpha-light-6: rgba(255, 255, 255, 0.06);
|
|
402
401
|
--gl-color-alpha-light-4: rgba(255, 255, 255, 0.04);
|
|
403
402
|
--gl-color-alpha-light-2: rgba(255, 255, 255, 0.02);
|
|
404
|
-
--gl-color-alpha-dark-24: rgba(
|
|
405
|
-
--gl-color-alpha-dark-16: rgba(
|
|
406
|
-
--gl-color-alpha-dark-8: rgba(
|
|
407
|
-
--gl-color-alpha-dark-6: rgba(
|
|
408
|
-
--gl-color-alpha-dark-4: rgba(
|
|
409
|
-
--gl-color-alpha-dark-2: rgba(
|
|
403
|
+
--gl-color-alpha-dark-24: rgba(05, 05, 06, 0.24);
|
|
404
|
+
--gl-color-alpha-dark-16: rgba(05, 05, 06, 0.16);
|
|
405
|
+
--gl-color-alpha-dark-8: rgba(05, 05, 06, 0.08);
|
|
406
|
+
--gl-color-alpha-dark-6: rgba(05, 05, 06, 0.06);
|
|
407
|
+
--gl-color-alpha-dark-4: rgba(05, 05, 06, 0.04);
|
|
408
|
+
--gl-color-alpha-dark-2: rgba(05, 05, 06, 0.02);
|
|
410
409
|
--gl-color-alpha-0: transparent;
|
|
411
410
|
--gl-text-color-disabled: var(--gl-color-neutral-400); /* Used for disabled text. */
|
|
412
411
|
--gl-text-color-success: var(--gl-color-green-600); /* Used for text indicating success or validity. */
|
|
@@ -493,6 +492,7 @@
|
|
|
493
492
|
--gl-status-muted-border-color-hover: var(--gl-color-neutral-200); /* Used for the border of a subtle neutral status item in the hover state. */
|
|
494
493
|
--gl-status-muted-background-color-active: var(--gl-color-neutral-100); /* Used for the background of a subtle neutral status item in the active state. */
|
|
495
494
|
--gl-status-muted-background-color-default: var(--gl-color-neutral-50); /* Used for the background of a subtle neutral status item when static or the default state when linked. */
|
|
495
|
+
--gl-shadow-color-default: var(--gl-color-alpha-dark-16); /* Used for the default shadow color. */
|
|
496
496
|
--gl-icon-color-success: var(--gl-color-green-600); /* Used for an icon associated with success or validity. */
|
|
497
497
|
--gl-icon-color-danger: var(--gl-color-red-600); /* Used for an icon associated with an error or danger. */
|
|
498
498
|
--gl-icon-color-warning: var(--gl-color-orange-600); /* Used for an icon associated with a warning. */
|
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
--gl-text-tertiary: #737278; /* Use text.color.disabled instead */
|
|
8
8
|
--gl-text-secondary: #89888d; /* Use text.color.subtle instead */
|
|
9
9
|
--gl-text-primary: #ececef; /* Use text.color.default instead */
|
|
10
|
-
--gl-shadow-color-default: rgba(5, 5, 6, 0.24); /* Used for the default shadow color. */
|
|
11
10
|
--gl-line-height-52: 3.25rem;
|
|
12
11
|
--gl-line-height-44: 2.75rem;
|
|
13
12
|
--gl-line-height-42: 2.625rem;
|
|
@@ -25,12 +24,12 @@
|
|
|
25
24
|
--t-white-a-36: rgba(255, 255, 255, 0.36);
|
|
26
25
|
--t-white-a-24: rgba(255, 255, 255, 0.24);
|
|
27
26
|
--t-white-a-16: rgba(255, 255, 255, 0.16);
|
|
28
|
-
--t-gray-a-08: rgba(
|
|
29
|
-
--t-gray-a-06: rgba(
|
|
30
|
-
--t-gray-a-04: rgba(
|
|
31
|
-
--t-gray-a-02: rgba(
|
|
32
|
-
--t-gray-a-24: rgba(
|
|
33
|
-
--t-gray-a-16: rgba(
|
|
27
|
+
--t-gray-a-08: rgba(05, 05, 06, 0.08);
|
|
28
|
+
--t-gray-a-06: rgba(05, 05, 06, 0.06);
|
|
29
|
+
--t-gray-a-04: rgba(05, 05, 06, 0.04);
|
|
30
|
+
--t-gray-a-02: rgba(05, 05, 06, 0.02);
|
|
31
|
+
--t-gray-a-24: rgba(05, 05, 06, 0.24);
|
|
32
|
+
--t-gray-a-16: rgba(05, 05, 06, 0.16);
|
|
34
33
|
--brand-gray-05: #2b2838;
|
|
35
34
|
--brand-gray-04: #45424d;
|
|
36
35
|
--brand-gray-03: #74717a;
|
|
@@ -94,10 +93,10 @@
|
|
|
94
93
|
--gray-500: #89888d;
|
|
95
94
|
--gray-400: #737278;
|
|
96
95
|
--gray-300: #626168;
|
|
97
|
-
--gray-200: #
|
|
98
|
-
--gray-100: #
|
|
99
|
-
--gray-50: #
|
|
100
|
-
--gray-10: #
|
|
96
|
+
--gray-200: #4c4b51;
|
|
97
|
+
--gray-100: #3a383f;
|
|
98
|
+
--gray-50: #28272d;
|
|
99
|
+
--gray-10: #18171d;
|
|
101
100
|
--blue-950: #f2f9ff;
|
|
102
101
|
--blue-900: #e9f3fc;
|
|
103
102
|
--blue-800: #cbe2f9;
|
|
@@ -109,7 +108,7 @@
|
|
|
109
108
|
--blue-200: #0b5cad;
|
|
110
109
|
--blue-100: #064787;
|
|
111
110
|
--blue-50: #033464;
|
|
112
|
-
--white: #
|
|
111
|
+
--white: #28272d;
|
|
113
112
|
--black: #fff;
|
|
114
113
|
--theme-light-red-950: #fdf9f8;
|
|
115
114
|
--theme-light-red-900: #faf2f1;
|
|
@@ -369,11 +368,11 @@
|
|
|
369
368
|
--gl-color-green-200: #91d4a8;
|
|
370
369
|
--gl-color-green-100: #c3e6cd;
|
|
371
370
|
--gl-color-green-50: #ecf4ee;
|
|
372
|
-
--gl-color-neutral-1000: #
|
|
373
|
-
--gl-color-neutral-950: #
|
|
374
|
-
--gl-color-neutral-900: #
|
|
375
|
-
--gl-color-neutral-800: #
|
|
376
|
-
--gl-color-neutral-700: #
|
|
371
|
+
--gl-color-neutral-1000: #050506;
|
|
372
|
+
--gl-color-neutral-950: #18171d;
|
|
373
|
+
--gl-color-neutral-900: #28272d;
|
|
374
|
+
--gl-color-neutral-800: #3a383f;
|
|
375
|
+
--gl-color-neutral-700: #4c4b51;
|
|
377
376
|
--gl-color-neutral-600: #626168;
|
|
378
377
|
--gl-color-neutral-500: #737278;
|
|
379
378
|
--gl-color-neutral-400: #89888d;
|
|
@@ -401,12 +400,12 @@
|
|
|
401
400
|
--gl-color-alpha-light-6: rgba(255, 255, 255, 0.06);
|
|
402
401
|
--gl-color-alpha-light-4: rgba(255, 255, 255, 0.04);
|
|
403
402
|
--gl-color-alpha-light-2: rgba(255, 255, 255, 0.02);
|
|
404
|
-
--gl-color-alpha-dark-24: rgba(
|
|
405
|
-
--gl-color-alpha-dark-16: rgba(
|
|
406
|
-
--gl-color-alpha-dark-8: rgba(
|
|
407
|
-
--gl-color-alpha-dark-6: rgba(
|
|
408
|
-
--gl-color-alpha-dark-4: rgba(
|
|
409
|
-
--gl-color-alpha-dark-2: rgba(
|
|
403
|
+
--gl-color-alpha-dark-24: rgba(05, 05, 06, 0.24);
|
|
404
|
+
--gl-color-alpha-dark-16: rgba(05, 05, 06, 0.16);
|
|
405
|
+
--gl-color-alpha-dark-8: rgba(05, 05, 06, 0.08);
|
|
406
|
+
--gl-color-alpha-dark-6: rgba(05, 05, 06, 0.06);
|
|
407
|
+
--gl-color-alpha-dark-4: rgba(05, 05, 06, 0.04);
|
|
408
|
+
--gl-color-alpha-dark-2: rgba(05, 05, 06, 0.02);
|
|
410
409
|
--gl-color-alpha-0: transparent;
|
|
411
410
|
--gl-text-color-disabled: var(--gl-color-neutral-400); /* Used for disabled text. */
|
|
412
411
|
--gl-text-color-success: var(--gl-color-green-300); /* Used for text indicating success or validity. */
|
|
@@ -493,6 +492,7 @@
|
|
|
493
492
|
--gl-status-muted-border-color-hover: var(--gl-color-neutral-700); /* Used for the border of a subtle neutral status item in the hover state. */
|
|
494
493
|
--gl-status-muted-background-color-active: var(--gl-color-neutral-800); /* Used for the background of a subtle neutral status item in the active state. */
|
|
495
494
|
--gl-status-muted-background-color-default: var(--gl-color-neutral-900); /* Used for the background of a subtle neutral status item when static or the default state when linked. */
|
|
495
|
+
--gl-shadow-color-default: var(--gl-color-alpha-dark-24); /* Used for the default shadow color. */
|
|
496
496
|
--gl-icon-color-success: var(--gl-color-green-300); /* Used for an icon associated with success or validity. */
|
|
497
497
|
--gl-icon-color-danger: var(--gl-color-red-300); /* Used for an icon associated with an error or danger. */
|
|
498
498
|
--gl-icon-color-warning: var(--gl-color-orange-300); /* Used for an icon associated with a warning. */
|