@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.
Files changed (39) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist/components/base/new_dropdowns/disclosure/disclosure_dropdown.js +10 -6
  3. package/dist/components/base/new_dropdowns/disclosure/mock_data.js +8 -1
  4. package/dist/index.css +2 -2
  5. package/dist/index.css.map +1 -1
  6. package/dist/tailwind.css +1 -1
  7. package/dist/tokens/build/js/tokens.dark.js +77 -77
  8. package/dist/tokens/build/js/tokens.js +63 -63
  9. package/dist/tokens/css/tokens.css +24 -24
  10. package/dist/tokens/css/tokens.dark.css +23 -23
  11. package/dist/tokens/js/tokens.dark.js +77 -77
  12. package/dist/tokens/js/tokens.js +63 -63
  13. package/dist/tokens/json/tokens.dark.json +107 -107
  14. package/dist/tokens/json/tokens.json +93 -93
  15. package/dist/tokens/scss/_tokens.dark.scss +23 -23
  16. package/dist/tokens/scss/_tokens.scss +24 -24
  17. package/dist/tokens/tailwind/tokens.cjs +18 -18
  18. package/dist/utility_classes.css +1 -1
  19. package/dist/utility_classes.css.map +1 -1
  20. package/dist/utils/utils.js +1 -1
  21. package/package.json +1 -1
  22. package/src/components/base/new_dropdowns/disclosure/disclosure_dropdown.vue +10 -6
  23. package/src/components/base/new_dropdowns/disclosure/mock_data.js +12 -0
  24. package/src/tokens/build/css/tokens.css +24 -24
  25. package/src/tokens/build/css/tokens.dark.css +23 -23
  26. package/src/tokens/build/js/tokens.dark.js +77 -77
  27. package/src/tokens/build/js/tokens.js +63 -63
  28. package/src/tokens/build/json/tokens.dark.json +107 -107
  29. package/src/tokens/build/json/tokens.json +93 -93
  30. package/src/tokens/build/scss/_tokens.dark.scss +23 -23
  31. package/src/tokens/build/scss/_tokens.scss +24 -24
  32. package/src/tokens/build/tailwind/tokens.cjs +18 -18
  33. package/src/tokens/color.alpha.tokens.json +6 -6
  34. package/src/tokens/color.constant.tokens.json +5 -5
  35. package/src/tokens/color.tokens.json +14 -14
  36. package/src/tokens/color.transparency.tokens.json +6 -6
  37. package/src/tokens/shadow.tokens.json +2 -2
  38. package/src/tokens/text.tokens.json +1 -1
  39. package/src/utils/utils.js +1 -1
@@ -60,7 +60,7 @@ function colorFromBackground(backgroundColor) {
60
60
  let contrastRatio = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 2.4;
61
61
  let color;
62
62
  const lightColor = rgbFromHex('#FFFFFF');
63
- const darkColor = rgbFromHex('#1f1e24');
63
+ const darkColor = rgbFromHex('#18171d');
64
64
  if (backgroundColor.startsWith('#')) {
65
65
  color = rgbFromHex(backgroundColor);
66
66
  } else if (backgroundColor.startsWith('rgba(')) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "86.9.0",
3
+ "version": "86.10.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -342,12 +342,16 @@ export default {
342
342
  this.$refs.baseDropdown.closeAndFocus();
343
343
  },
344
344
  handleAction(action) {
345
- /**
346
- * Emitted when one of disclosure dropdown items is clicked
347
- *
348
- * @event action
349
- */
350
- this.$emit('action', action);
345
+ // See https://gitlab.com/gitlab-org/gitlab-ui/-/merge_requests/4376 for
346
+ // detailed explanation why we need requestAnimationFrame
347
+ window.requestAnimationFrame(() => {
348
+ /**
349
+ * Emitted when one of disclosure dropdown items is clicked
350
+ *
351
+ * @event action
352
+ */
353
+ this.$emit('action', action);
354
+ });
351
355
  },
352
356
  handleAutoClose(e) {
353
357
  if (
@@ -37,6 +37,18 @@ export const mockItems = [
37
37
  },
38
38
  ];
39
39
 
40
+ export const mockButtons = [
41
+ {
42
+ text: 'Checks',
43
+ },
44
+ {
45
+ text: 'Projects',
46
+ },
47
+ {
48
+ text: 'Standards',
49
+ },
50
+ ];
51
+
40
52
  export const mockItemsCustomItem = [
41
53
  {
42
54
  text: 'Assigned to you',
@@ -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: #333238; /* Use text.color.default instead */
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(31, 30, 36, 0.08);
29
- --t-gray-a-06: rgba(31, 30, 36, 0.06);
30
- --t-gray-a-04: rgba(31, 30, 36, 0.04);
31
- --t-gray-a-02: rgba(31, 30, 36, 0.02);
32
- --t-gray-a-24: rgba(31, 30, 36, 0.24);
33
- --t-gray-a-16: rgba(31, 30, 36, 0.16);
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: #1f1e24;
90
- --gray-900: #333238;
91
- --gray-800: #434248;
92
- --gray-700: #535158;
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: #000;
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: #000;
373
- --gl-color-neutral-950: #1f1e24;
374
- --gl-color-neutral-900: #333238;
375
- --gl-color-neutral-800: #434248;
376
- --gl-color-neutral-700: #535158;
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(31, 30, 36, 0.24);
405
- --gl-color-alpha-dark-16: rgba(31, 30, 36, 0.16);
406
- --gl-color-alpha-dark-8: rgba(31, 30, 36, 0.08);
407
- --gl-color-alpha-dark-6: rgba(31, 30, 36, 0.06);
408
- --gl-color-alpha-dark-4: rgba(31, 30, 36, 0.04);
409
- --gl-color-alpha-dark-2: rgba(31, 30, 36, 0.02);
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(31, 30, 36, 0.08);
29
- --t-gray-a-06: rgba(31, 30, 36, 0.06);
30
- --t-gray-a-04: rgba(31, 30, 36, 0.04);
31
- --t-gray-a-02: rgba(31, 30, 36, 0.02);
32
- --t-gray-a-24: rgba(31, 30, 36, 0.24);
33
- --t-gray-a-16: rgba(31, 30, 36, 0.16);
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: #535158;
98
- --gray-100: #434248;
99
- --gray-50: #333238;
100
- --gray-10: #1f1e24;
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: #333238;
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: #000;
373
- --gl-color-neutral-950: #1f1e24;
374
- --gl-color-neutral-900: #333238;
375
- --gl-color-neutral-800: #434248;
376
- --gl-color-neutral-700: #535158;
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(31, 30, 36, 0.24);
405
- --gl-color-alpha-dark-16: rgba(31, 30, 36, 0.16);
406
- --gl-color-alpha-dark-8: rgba(31, 30, 36, 0.08);
407
- --gl-color-alpha-dark-6: rgba(31, 30, 36, 0.06);
408
- --gl-color-alpha-dark-4: rgba(31, 30, 36, 0.04);
409
- --gl-color-alpha-dark-2: rgba(31, 30, 36, 0.02);
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. */
@@ -3,27 +3,27 @@
3
3
  * Do not edit directly
4
4
  */
5
5
 
6
- export const GL_ACTION_BACKGROUND_COLOR_DISABLED = '#333238'; // Used for the background of a disabled action.
7
- export const GL_ACTION_BORDER_COLOR_DISABLED = '#434248'; // Used for the border of a disabled action.
6
+ export const GL_ACTION_BACKGROUND_COLOR_DISABLED = '#28272d'; // Used for the background of a disabled action.
7
+ export const GL_ACTION_BORDER_COLOR_DISABLED = '#3a383f'; // Used for the border of a disabled action.
8
8
  export const GL_ACTION_TEXT_COLOR_DISABLED = '#89888d'; // Used for the text of a disabled action.
9
9
  export const GL_ACTION_ICON_COLOR_DISABLED = '#737278'; // Used for the icon of a disabled action.
10
- export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_DEFAULT = '#333238'; // Used for the background of an outlined neutral action in the default state.
11
- export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_HOVER = '#333238'; // Used for the background of an outlined neutral action in the hover state.
12
- export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_FOCUS = '#333238'; // Used for the background of an outlined neutral action in the focus state.
13
- export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_ACTIVE = '#434248'; // Used for the background of an outlined neutral action in the active state.
10
+ export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_DEFAULT = '#28272d'; // Used for the background of an outlined neutral action in the default state.
11
+ export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_HOVER = '#28272d'; // Used for the background of an outlined neutral action in the hover state.
12
+ export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_FOCUS = '#28272d'; // Used for the background of an outlined neutral action in the focus state.
13
+ export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_ACTIVE = '#3a383f'; // Used for the background of an outlined neutral action in the active state.
14
14
  export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_SUBTLE_DEFAULT = 'transparent'; // Used for the background of a borderless, subtle neutral action in the default state.
15
- export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_SUBTLE_HOVER = '#333238'; // Used for the background of a borderless, subtle neutral action in the hover state.
16
- export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_SUBTLE_FOCUS = '#333238'; // Used for the background of a borderless, subtle neutral action in the focus state.
17
- export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_SUBTLE_ACTIVE = '#434248'; // Used for the background of a borderless, subtle neutral action in the active state.
15
+ export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_SUBTLE_HOVER = '#28272d'; // Used for the background of a borderless, subtle neutral action in the hover state.
16
+ export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_SUBTLE_FOCUS = '#28272d'; // Used for the background of a borderless, subtle neutral action in the focus state.
17
+ export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_SUBTLE_ACTIVE = '#3a383f'; // Used for the background of a borderless, subtle neutral action in the active state.
18
18
  export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_STRONG_DEFAULT = '#89888d'; // Used for the background of a solid, strong neutral action in the default state.
19
19
  export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_STRONG_HOVER = '#a4a3a8'; // Used for the background of a solid, strong neutral action in the hover state.
20
20
  export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_STRONG_FOCUS = '#a4a3a8'; // Used for the background of a solid, strong neutral action in the focus state.
21
21
  export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_STRONG_ACTIVE = '#bfbfc3'; // Used for the background of a solid, strong neutral action in the active state.
22
- export const GL_ACTION_NEUTRAL_BORDER_COLOR_DEFAULT = '#535158'; // Used for the border of an outlined neutral action in the default state.
22
+ export const GL_ACTION_NEUTRAL_BORDER_COLOR_DEFAULT = '#4c4b51'; // Used for the border of an outlined neutral action in the default state.
23
23
  export const GL_ACTION_NEUTRAL_BORDER_COLOR_HOVER = '#737278'; // Used for the border of an outlined neutral action in the hover state.
24
24
  export const GL_ACTION_NEUTRAL_BORDER_COLOR_FOCUS = '#737278'; // Used for the border of an outlined neutral action in the focus state.
25
25
  export const GL_ACTION_NEUTRAL_BORDER_COLOR_ACTIVE = '#a4a3a8'; // Used for the border of an outlined neutral action in the active state.
26
- export const GL_ACTION_NEUTRAL_BORDER_COLOR_SELECTED = '#535158'; // Used for the border of a outlined neutral action when in a selected or current state.
26
+ export const GL_ACTION_NEUTRAL_BORDER_COLOR_SELECTED = '#4c4b51'; // Used for the border of a outlined neutral action when in a selected or current state.
27
27
  export const GL_ACTION_NEUTRAL_BORDER_COLOR_STRONG_DEFAULT = '#a4a3a8'; // Used for the border of a solid, strong neutral action in the default state.
28
28
  export const GL_ACTION_NEUTRAL_BORDER_COLOR_STRONG_HOVER = '#dcdcde'; // Used for the border of a solid, strong neutral action in the hover state.
29
29
  export const GL_ACTION_NEUTRAL_BORDER_COLOR_STRONG_FOCUS = '#dcdcde'; // Used for the border of a solid, strong neutral action in the focus state.
@@ -32,13 +32,13 @@ export const GL_ACTION_NEUTRAL_TEXT_COLOR_DEFAULT = '#ececef'; // Used for the t
32
32
  export const GL_ACTION_NEUTRAL_TEXT_COLOR_HOVER = '#ececef'; // Used for the text of a neutral action in the hover state.
33
33
  export const GL_ACTION_NEUTRAL_TEXT_COLOR_FOCUS = '#ececef'; // Used for the text of a neutral action in the focus state.
34
34
  export const GL_ACTION_NEUTRAL_TEXT_COLOR_ACTIVE = '#ececef'; // Used for the text of a neutral action in the active state.
35
- export const GL_ACTION_NEUTRAL_TEXT_COLOR_STRONG = '#333238'; // Used for the text on a solid, strong neutral action background.
35
+ export const GL_ACTION_NEUTRAL_TEXT_COLOR_STRONG = '#28272d'; // Used for the text on a solid, strong neutral action background.
36
36
  export const GL_ACTION_NEUTRAL_ICON_COLOR_DEFAULT = '#89888d'; // Used for the icon of outlined and borderless neutral actions.
37
37
  export const GL_ACTION_NEUTRAL_ICON_COLOR_HOVER = '#bfbfc3'; // Used for the icon of outlined and borderless neutral actions in the hover state.
38
38
  export const GL_ACTION_NEUTRAL_ICON_COLOR_FOCUS = '#bfbfc3'; // Used for the icon of outlined and borderless neutral actions in the focus state.
39
39
  export const GL_ACTION_NEUTRAL_ICON_COLOR_ACTIVE = '#ececef'; // Used for the icon of outlined and borderless neutral actions in the active state.
40
- export const GL_ACTION_NEUTRAL_ICON_COLOR_STRONG = '#333238'; // Used for the icon on a solid, strong neutral action background.
41
- export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_DEFAULT = '#333238'; // Used for the background of an outlined confirm (positive) action in the default state.
40
+ export const GL_ACTION_NEUTRAL_ICON_COLOR_STRONG = '#28272d'; // Used for the icon on a solid, strong neutral action background.
41
+ export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_DEFAULT = '#28272d'; // Used for the background of an outlined confirm (positive) action in the default state.
42
42
  export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_HOVER = '#033464'; // Used for the background of an outlined confirm (positive) action in the hover state.
43
43
  export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_FOCUS = '#033464'; // Used for the background of an outlined confirm (positive) action in the focus state.
44
44
  export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_ACTIVE = '#064787'; // Used for the background of an outlined confirm (positive) action in the active state.
@@ -64,13 +64,13 @@ export const GL_ACTION_CONFIRM_TEXT_COLOR_DEFAULT = '#428fdc'; // Used for the t
64
64
  export const GL_ACTION_CONFIRM_TEXT_COLOR_HOVER = '#9dc7f1'; // Used for the text of a confirm (positive) action in the hover state.
65
65
  export const GL_ACTION_CONFIRM_TEXT_COLOR_FOCUS = '#9dc7f1'; // Used for the text of a confirm (positive) action in the focus state.
66
66
  export const GL_ACTION_CONFIRM_TEXT_COLOR_ACTIVE = '#e9f3fc'; // Used for the text of a confirm (positive) action in the active state.
67
- export const GL_ACTION_CONFIRM_TEXT_COLOR_STRONG = '#333238'; // Used for the text on a solid, strong confirm (positive) action background.
67
+ export const GL_ACTION_CONFIRM_TEXT_COLOR_STRONG = '#28272d'; // Used for the text on a solid, strong confirm (positive) action background.
68
68
  export const GL_ACTION_CONFIRM_ICON_COLOR_DEFAULT = '#428fdc'; // Used for the icon of a confirm (positive) action in the default state.
69
69
  export const GL_ACTION_CONFIRM_ICON_COLOR_HOVER = '#9dc7f1'; // Used for the icon of a confirm (positive) action in the hover state.
70
70
  export const GL_ACTION_CONFIRM_ICON_COLOR_FOCUS = '#9dc7f1'; // Used for the icon of a confirm (positive) action in the focus state.
71
71
  export const GL_ACTION_CONFIRM_ICON_COLOR_ACTIVE = '#e9f3fc'; // Used for the icon of a confirm (positive) action in the active state.
72
- export const GL_ACTION_CONFIRM_ICON_COLOR_STRONG = '#333238'; // Used for the icon on a solid, strong confirm (positive) action background.
73
- export const GL_ACTION_DANGER_BACKGROUND_COLOR_DEFAULT = '#333238'; // Used for the background of an outlined danger (destructive) action in the default state.
72
+ export const GL_ACTION_CONFIRM_ICON_COLOR_STRONG = '#28272d'; // Used for the icon on a solid, strong confirm (positive) action background.
73
+ export const GL_ACTION_DANGER_BACKGROUND_COLOR_DEFAULT = '#28272d'; // Used for the background of an outlined danger (destructive) action in the default state.
74
74
  export const GL_ACTION_DANGER_BACKGROUND_COLOR_HOVER = '#660e00'; // Used for the background of an outlined danger (destructive) action in the hover state.
75
75
  export const GL_ACTION_DANGER_BACKGROUND_COLOR_FOCUS = '#660e00'; // Used for the background of an outlined danger (destructive) action in the focus state.
76
76
  export const GL_ACTION_DANGER_BACKGROUND_COLOR_ACTIVE = '#8d1300'; // Used for the background of an outlined danger (destructive) action in the active state.
@@ -94,28 +94,28 @@ export const GL_ACTION_DANGER_TEXT_COLOR_DEFAULT = '#ec5941'; // Used for the te
94
94
  export const GL_ACTION_DANGER_TEXT_COLOR_HOVER = '#fcb5aa'; // Used for the text of a danger (destructive) action in the hover state.
95
95
  export const GL_ACTION_DANGER_TEXT_COLOR_FOCUS = '#fcb5aa'; // Used for the text of a danger (destructive) action in the focus state.
96
96
  export const GL_ACTION_DANGER_TEXT_COLOR_ACTIVE = '#fcf1ef'; // Used for the text of a danger (destructive) action in the active state.
97
- export const GL_ACTION_DANGER_TEXT_COLOR_STRONG = '#333238'; // Used for the text on a solid, strong danger (destructive) action background.
97
+ export const GL_ACTION_DANGER_TEXT_COLOR_STRONG = '#28272d'; // Used for the text on a solid, strong danger (destructive) action background.
98
98
  export const GL_ACTION_DANGER_ICON_COLOR_DEFAULT = '#ec5941'; // Used for the icon of a danger (destructive) action in the default state.
99
99
  export const GL_ACTION_DANGER_ICON_COLOR_HOVER = '#fcb5aa'; // Used for the icon of a danger (destructive) action in the hover state.
100
100
  export const GL_ACTION_DANGER_ICON_COLOR_FOCUS = '#fcb5aa'; // Used for the icon of a danger (destructive) action in the focus state.
101
101
  export const GL_ACTION_DANGER_ICON_COLOR_ACTIVE = '#fcf1ef'; // Used for the icon of a danger (destructive) action in the active state.
102
- export const GL_ACTION_DANGER_ICON_COLOR_STRONG = '#333238'; // Used for the icon on a solid, strong danger (destructive) action background.
103
- export const GL_BACKGROUND_COLOR_DEFAULT = '#1f1e24'; // Used for the default background color.
104
- export const GL_BACKGROUND_COLOR_SUBTLE = '#333238'; // Used to slightly differentiate the background from the default.
105
- export const GL_BACKGROUND_COLOR_STRONG = '#434248'; // Used to make the background easily stand out from the default.
106
- export const GL_BACKGROUND_COLOR_DISABLED = '#333238'; // Used to identify a disabled section.
102
+ export const GL_ACTION_DANGER_ICON_COLOR_STRONG = '#28272d'; // Used for the icon on a solid, strong danger (destructive) action background.
103
+ export const GL_BACKGROUND_COLOR_DEFAULT = '#18171d'; // Used for the default background color.
104
+ export const GL_BACKGROUND_COLOR_SUBTLE = '#28272d'; // Used to slightly differentiate the background from the default.
105
+ export const GL_BACKGROUND_COLOR_STRONG = '#3a383f'; // Used to make the background easily stand out from the default.
106
+ export const GL_BACKGROUND_COLOR_DISABLED = '#28272d'; // Used to identify a disabled section.
107
107
  export const GL_BACKGROUND_COLOR_OVERLAY = 'rgba(0,0,0,0.64)'; // Used for an overlay that covers other content.
108
- export const GL_BORDER_COLOR_DEFAULT = '#434248'; // Used for the default border color.
109
- export const GL_BORDER_COLOR_SUBTLE = '#333238'; // Used for a subtle border in combination with the default background.
108
+ export const GL_BORDER_COLOR_DEFAULT = '#3a383f'; // Used for the default border color.
109
+ export const GL_BORDER_COLOR_SUBTLE = '#28272d'; // Used for a subtle border in combination with the default background.
110
110
  export const GL_BORDER_COLOR_STRONG = '#89888d'; // Used for a distinct border that emphasizes an edge or boundaries.
111
111
  export const GL_BORDER_COLOR_TRANSPARENT = 'transparent'; // Used when a border needs to be present, but not visibly perceived.
112
112
  export const GL_COLOR_ALPHA_0 = 'transparent';
113
- export const GL_COLOR_ALPHA_DARK_2 = 'rgba(31, 30, 36, 0.02)';
114
- export const GL_COLOR_ALPHA_DARK_4 = 'rgba(31, 30, 36, 0.04)';
115
- export const GL_COLOR_ALPHA_DARK_6 = 'rgba(31, 30, 36, 0.06)';
116
- export const GL_COLOR_ALPHA_DARK_8 = 'rgba(31, 30, 36, 0.08)';
117
- export const GL_COLOR_ALPHA_DARK_16 = 'rgba(31, 30, 36, 0.16)';
118
- export const GL_COLOR_ALPHA_DARK_24 = 'rgba(31, 30, 36, 0.24)';
113
+ export const GL_COLOR_ALPHA_DARK_2 = 'rgba(05, 05, 06, 0.02)';
114
+ export const GL_COLOR_ALPHA_DARK_4 = 'rgba(05, 05, 06, 0.04)';
115
+ export const GL_COLOR_ALPHA_DARK_6 = 'rgba(05, 05, 06, 0.06)';
116
+ export const GL_COLOR_ALPHA_DARK_8 = 'rgba(05, 05, 06, 0.08)';
117
+ export const GL_COLOR_ALPHA_DARK_16 = 'rgba(05, 05, 06, 0.16)';
118
+ export const GL_COLOR_ALPHA_DARK_24 = 'rgba(05, 05, 06, 0.24)';
119
119
  export const GL_COLOR_ALPHA_LIGHT_2 = 'rgba(255, 255, 255, 0.02)';
120
120
  export const GL_COLOR_ALPHA_LIGHT_4 = 'rgba(255, 255, 255, 0.04)';
121
121
  export const GL_COLOR_ALPHA_LIGHT_6 = 'rgba(255, 255, 255, 0.06)';
@@ -143,11 +143,11 @@ export const GL_COLOR_NEUTRAL_300 = '#a4a3a8';
143
143
  export const GL_COLOR_NEUTRAL_400 = '#89888d';
144
144
  export const GL_COLOR_NEUTRAL_500 = '#737278';
145
145
  export const GL_COLOR_NEUTRAL_600 = '#626168';
146
- export const GL_COLOR_NEUTRAL_700 = '#535158';
147
- export const GL_COLOR_NEUTRAL_800 = '#434248';
148
- export const GL_COLOR_NEUTRAL_900 = '#333238';
149
- export const GL_COLOR_NEUTRAL_950 = '#1f1e24';
150
- export const GL_COLOR_NEUTRAL_1000 = '#000';
146
+ export const GL_COLOR_NEUTRAL_700 = '#4c4b51';
147
+ export const GL_COLOR_NEUTRAL_800 = '#3a383f';
148
+ export const GL_COLOR_NEUTRAL_900 = '#28272d';
149
+ export const GL_COLOR_NEUTRAL_950 = '#18171d';
150
+ export const GL_COLOR_NEUTRAL_1000 = '#050506';
151
151
  export const GL_COLOR_GREEN_50 = '#ecf4ee';
152
152
  export const GL_COLOR_GREEN_100 = '#c3e6cd';
153
153
  export const GL_COLOR_GREEN_200 = '#91d4a8';
@@ -407,7 +407,7 @@ export const THEME_LIGHT_RED_800 = '#f6d9d5';
407
407
  export const THEME_LIGHT_RED_900 = '#faf2f1';
408
408
  export const THEME_LIGHT_RED_950 = '#fdf9f8';
409
409
  export const BLACK = '#fff';
410
- export const WHITE = '#333238';
410
+ export const WHITE = '#28272d';
411
411
  export const BLUE_50 = '#033464';
412
412
  export const BLUE_100 = '#064787';
413
413
  export const BLUE_200 = '#0b5cad';
@@ -419,10 +419,10 @@ export const BLUE_700 = '#9dc7f1';
419
419
  export const BLUE_800 = '#cbe2f9';
420
420
  export const BLUE_900 = '#e9f3fc';
421
421
  export const BLUE_950 = '#f2f9ff';
422
- export const GRAY_10 = '#1f1e24';
423
- export const GRAY_50 = '#333238';
424
- export const GRAY_100 = '#434248';
425
- export const GRAY_200 = '#535158';
422
+ export const GRAY_10 = '#18171d';
423
+ export const GRAY_50 = '#28272d';
424
+ export const GRAY_100 = '#3a383f';
425
+ export const GRAY_200 = '#4c4b51';
426
426
  export const GRAY_300 = '#626168';
427
427
  export const GRAY_400 = '#737278';
428
428
  export const GRAY_500 = '#89888d';
@@ -486,12 +486,12 @@ export const BRAND_GRAY_02 = '#a2a1a6';
486
486
  export const BRAND_GRAY_03 = '#74717a';
487
487
  export const BRAND_GRAY_04 = '#45424d';
488
488
  export const BRAND_GRAY_05 = '#2b2838';
489
- export const T_GRAY_A_16 = 'rgba(31, 30, 36, 0.16)';
490
- export const T_GRAY_A_24 = 'rgba(31, 30, 36, 0.24)';
491
- export const T_GRAY_A_02 = 'rgba(31, 30, 36, 0.02)';
492
- export const T_GRAY_A_04 = 'rgba(31, 30, 36, 0.04)';
493
- export const T_GRAY_A_06 = 'rgba(31, 30, 36, 0.06)';
494
- export const T_GRAY_A_08 = 'rgba(31, 30, 36, 0.08)';
489
+ export const T_GRAY_A_16 = 'rgba(05, 05, 06, 0.16)';
490
+ export const T_GRAY_A_24 = 'rgba(05, 05, 06, 0.24)';
491
+ export const T_GRAY_A_02 = 'rgba(05, 05, 06, 0.02)';
492
+ export const T_GRAY_A_04 = 'rgba(05, 05, 06, 0.04)';
493
+ export const T_GRAY_A_06 = 'rgba(05, 05, 06, 0.06)';
494
+ export const T_GRAY_A_08 = 'rgba(05, 05, 06, 0.08)';
495
495
  export const T_WHITE_A_16 = 'rgba(255, 255, 255, 0.16)';
496
496
  export const T_WHITE_A_24 = 'rgba(255, 255, 255, 0.24)';
497
497
  export const T_WHITE_A_36 = 'rgba(255, 255, 255, 0.36)';
@@ -499,21 +499,21 @@ export const T_WHITE_A_02 = 'rgba(255, 255, 255, 0.02)';
499
499
  export const T_WHITE_A_04 = 'rgba(255, 255, 255, 0.04)';
500
500
  export const T_WHITE_A_06 = 'rgba(255, 255, 255, 0.06)';
501
501
  export const T_WHITE_A_08 = 'rgba(255, 255, 255, 0.08)';
502
- export const GL_AVATAR_BORDER_COLOR_DEFAULT = 'rgba(31, 30, 36, 0.08)'; // Used to define the edge of an avatar.
503
- export const GL_AVATAR_BORDER_COLOR_HOVER = 'rgba(31, 30, 36, 0.24)'; // Used to increase the edge definition of an avatar in the hover state.
502
+ export const GL_AVATAR_BORDER_COLOR_DEFAULT = 'rgba(05, 05, 06, 0.08)'; // Used to define the edge of an avatar.
503
+ export 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
  export const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_RED = '#660e00'; // Red background for avatar fallback with no particular meaning.
505
505
  export const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_PURPLE = '#232150'; // Purple background for avatar fallback with no particular meaning.
506
506
  export const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_BLUE = '#033464'; // Blue background for avatar fallback with no particular meaning.
507
507
  export const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_GREEN = '#0a4020'; // Green background for avatar fallback with no particular meaning.
508
508
  export const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_ORANGE = '#5c2900'; // Orange background for avatar fallback with no particular meaning.
509
- export const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_NEUTRAL = '#333238'; // Neutral background for avatar fallback with no particular meaning.
509
+ export const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_NEUTRAL = '#28272d'; // Neutral background for avatar fallback with no particular meaning.
510
510
  export const GL_BANNER_INTRO_BORDER_COLOR = '#1068bf'; // Used to compliment the info banner.
511
- export const GL_BANNER_PROMO_BACKGROUND_COLOR = '#333238'; // Used as background for the default banner type.
512
- export const GL_BREADCRUMB_SEPARATOR_COLOR = '#535158'; // Used for the breadcrumb level separator.
513
- export const GL_LABEL_LIGHT_TEXT_COLOR = '#1f1e24'; // Used for the label text color on a light background color.
511
+ export const GL_BANNER_PROMO_BACKGROUND_COLOR = '#28272d'; // Used as background for the default banner type.
512
+ export const GL_BREADCRUMB_SEPARATOR_COLOR = '#4c4b51'; // Used for the breadcrumb level separator.
513
+ export const GL_LABEL_LIGHT_TEXT_COLOR = '#18171d'; // Used for the label text color on a light background color.
514
514
  export 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
- export const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_HOVER = '#1f1e24'; // Used for the label remove button background on a light background color in the hover state.
516
- export const GL_LABEL_LIGHT_BUTTON_ICON_COLOR_DEFAULT = '#1f1e24'; // Used for the label remove button icon on a light background color in the default state.
515
+ export 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
+ export 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
  export const GL_LABEL_DARK_TEXT_COLOR = '#fff'; // Used for the label text color on a dark background color.
518
518
  export 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
  export 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.
@@ -521,25 +521,25 @@ export const GL_LABEL_DARK_BUTTON_ICON_COLOR_DEFAULT = '#fff'; // Used for the l
521
521
  export const GL_LABEL_SCOPED_TEXT_COLOR = '#fff'; // Used for the scoped label text color.
522
522
  export const GL_LABEL_SCOPED_BUTTON_BACKGROUND_COLOR_HOVER = '#fff'; // Used for the scoped label remove button background in the hover state.
523
523
  export const GL_LABEL_SCOPED_BUTTON_ICON_COLOR_DEFAULT = '#fff'; // Used for the scoped label remove button icon in the default state.
524
- export const GL_LABEL_SCOPED_BUTTON_ICON_COLOR_HOVER = '#1f1e24'; // Used for the scoped label remove button icon in the hover state.
525
- export const GL_POPOVER_BACKGROUND_COLOR = '#333238'; // Used for the background color of popover.
526
- export const GL_SKELETON_LOADER_BACKGROUND_COLOR = '#434248'; // Used for the skeleton loader background color.
527
- export const GL_SKELETON_LOADER_SHIMMER_COLOR = '#535158'; // Used for the animated shimmer effect in a skeleton loader.
528
- export const GL_SPINNER_TRACK_COLOR_DEFAULT = '#434248'; // Used for the static track (background) of a loading spinner.
529
- export const GL_SPINNER_TRACK_COLOR_LIGHT = '#434248'; // Used for the static track (background) of a loading spinner on a dark background.
524
+ export const GL_LABEL_SCOPED_BUTTON_ICON_COLOR_HOVER = '#18171d'; // Used for the scoped label remove button icon in the hover state.
525
+ export const GL_POPOVER_BACKGROUND_COLOR = '#28272d'; // Used for the background color of popover.
526
+ export const GL_SKELETON_LOADER_BACKGROUND_COLOR = '#3a383f'; // Used for the skeleton loader background color.
527
+ export const GL_SKELETON_LOADER_SHIMMER_COLOR = '#4c4b51'; // Used for the animated shimmer effect in a skeleton loader.
528
+ export const GL_SPINNER_TRACK_COLOR_DEFAULT = '#3a383f'; // Used for the static track (background) of a loading spinner.
529
+ export const GL_SPINNER_TRACK_COLOR_LIGHT = '#3a383f'; // Used for the static track (background) of a loading spinner on a dark background.
530
530
  export const GL_SPINNER_SEGMENT_COLOR_DEFAULT = '#bfbfc3'; // Used for the animated segment of a loading spinner.
531
531
  export const GL_SPINNER_SEGMENT_COLOR_LIGHT = '#bfbfc3'; // Used for the animated segment of a loading spinner on a dark background.
532
- export const GL_TABLE_ROW_BACKGROUND_COLOR_HOVER = '#333238'; // Used for the background of a table row in hover state.
532
+ export const GL_TABLE_ROW_BACKGROUND_COLOR_HOVER = '#28272d'; // Used for the background of a table row in hover state.
533
533
  export const GL_TABLE_SORTING_ICON_COLOR = '#fff'; // Used for the color of the sorting icons in the column headers.
534
- export const GL_CONTROL_BACKGROUND_COLOR_DEFAULT = '#333238'; // Used for form control (input, radio button, checkbox, textarea) default background.
535
- export const GL_CONTROL_BACKGROUND_COLOR_DISABLED = '#1f1e24'; // Used for disabled form control (checkbox, input, radio button, textarea) background.
534
+ export const GL_CONTROL_BACKGROUND_COLOR_DEFAULT = '#28272d'; // Used for form control (input, radio button, checkbox, textarea) default background.
535
+ export const GL_CONTROL_BACKGROUND_COLOR_DISABLED = '#18171d'; // Used for disabled form control (checkbox, input, radio button, textarea) background.
536
536
  export const GL_CONTROL_BACKGROUND_COLOR_SELECTED_DEFAULT = '#428fdc'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background.
537
537
  export const GL_CONTROL_BACKGROUND_COLOR_SELECTED_HOVER = '#9dc7f1'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background on hover.
538
538
  export const GL_CONTROL_BACKGROUND_COLOR_SELECTED_FOCUS = '#9dc7f1'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background on hover.
539
539
  export const GL_CONTROL_BORDER_COLOR_DEFAULT = '#737278'; // Used for form control (input, radio button, checkbox, textarea) default border.
540
540
  export const GL_CONTROL_BORDER_COLOR_HOVER = '#a4a3a8'; // Used for form control (input, radio button, checkbox, textarea) border on hover.
541
541
  export const GL_CONTROL_BORDER_COLOR_FOCUS = '#ececef'; // Used for form control (input, radio button, checkbox, textarea) border on focus.
542
- export const GL_CONTROL_BORDER_COLOR_DISABLED = '#434248'; // Used for disabled form control (input, radio button, checkbox, textarea) border.
542
+ export const GL_CONTROL_BORDER_COLOR_DISABLED = '#3a383f'; // Used for disabled form control (input, radio button, checkbox, textarea) border.
543
543
  export const GL_CONTROL_BORDER_COLOR_ERROR = '#ec5941'; // Used for invalid form control (input, textarea) border.
544
544
  export const GL_CONTROL_BORDER_COLOR_SELECTED_DEFAULT = '#428fdc'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border.
545
545
  export const GL_CONTROL_BORDER_COLOR_SELECTED_HOVER = '#9dc7f1'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border on hover.
@@ -547,13 +547,13 @@ export const GL_CONTROL_BORDER_COLOR_SELECTED_FOCUS = '#9dc7f1'; // Used for che
547
547
  export const GL_CONTROL_TEXT_COLOR_ERROR = '#ec5941'; // Used for the helper text when the input is invalid.
548
548
  export const GL_CONTROL_TEXT_COLOR_VALID = '#2da160'; // Used for the helper text when the input is valid.
549
549
  export const GL_CONTROL_PLACEHOLDER_COLOR = '#737278'; // Used for placeholder text within inputs.
550
- export const GL_CONTROL_INDICATOR_COLOR_SELECTED = '#333238'; // Used for checkbox and radio button state indicators.
550
+ export const GL_CONTROL_INDICATOR_COLOR_SELECTED = '#28272d'; // Used for checkbox and radio button state indicators.
551
551
  export const GL_CONTROL_INDICATOR_COLOR_DISABLED = '#89888d'; // Used for disabled checkbox and radio button state indicators.
552
552
  export const GL_FEEDBACK_BACKGROUND_COLOR_STRONG = '#fbfafd'; // Used for a background associated with feedback like a tooltip or toast message.
553
- export const GL_FEEDBACK_TEXT_COLOR_STRONG = '#333238'; // Used for text on a strong feedback background.
554
- export const GL_FEEDBACK_ICON_COLOR_STRONG = '#333238'; // Used for an icon on a strong feedback background.
553
+ export const GL_FEEDBACK_TEXT_COLOR_STRONG = '#28272d'; // Used for text on a strong feedback background.
554
+ export const GL_FEEDBACK_ICON_COLOR_STRONG = '#28272d'; // Used for an icon on a strong feedback background.
555
555
  export const GL_FEEDBACK_LINK_COLOR_STRONG = '#0b5cad'; // Used for a link on a strong feedback background.
556
- export const GL_FEEDBACK_NEUTRAL_BACKGROUND_COLOR = '#333238'; // Used for a background associated with neutral feedback.
556
+ export const GL_FEEDBACK_NEUTRAL_BACKGROUND_COLOR = '#28272d'; // Used for a background associated with neutral feedback.
557
557
  export const GL_FEEDBACK_NEUTRAL_ICON_COLOR = '#a4a3a8'; // Used for an icon associated with a neutral feedback section.
558
558
  export const GL_FEEDBACK_INFO_BACKGROUND_COLOR = '#033464'; // Used for a background associated with informational feedback or a highlighted section resulting from a user action.
559
559
  export const GL_FEEDBACK_INFO_ICON_COLOR = '#63a6e9'; // Used for an icon associated with informational feedback.
@@ -564,7 +564,7 @@ export const GL_FEEDBACK_WARNING_ICON_COLOR = '#d99530'; // Used for an icon ass
564
564
  export const GL_FEEDBACK_DANGER_BACKGROUND_COLOR = '#660e00'; // Used for a background associated with danger or critical feedback.
565
565
  export const GL_FEEDBACK_DANGER_ICON_COLOR = '#f57f6c'; // Used for an icon associated with danger or critical feedback.
566
566
  export const GL_FOCUS_RING_OUTER_COLOR = '#428fdc'; // Used for the outer color portion of the focus ring.
567
- export const GL_FOCUS_RING_INNER_COLOR = '#1f1e24'; // Used for the inner neutral portion of the focus ring.
567
+ export const GL_FOCUS_RING_INNER_COLOR = '#18171d'; // Used for the inner neutral portion of the focus ring.
568
568
  export const GL_ICON_COLOR_DEFAULT = '#dcdcde'; // Used for the default icon color. Can be paired with default text.
569
569
  export const GL_ICON_COLOR_SUBTLE = '#a4a3a8'; // Used for a static or decorational icon. Can be paired with subtle text.
570
570
  export const GL_ICON_COLOR_STRONG = '#fbfafd'; // Used for an icon with the highest contrast.
@@ -584,10 +584,10 @@ export const GL_LINE_HEIGHT_36 = '2.25rem';
584
584
  export const GL_LINE_HEIGHT_42 = '2.625rem';
585
585
  export const GL_LINE_HEIGHT_44 = '2.75rem';
586
586
  export const GL_LINE_HEIGHT_52 = '3.25rem';
587
- export const GL_SHADOW_COLOR_DEFAULT = 'rgba(5, 5, 6, 0.24)'; // Used for the default shadow color.
588
- export const GL_STATUS_MUTED_BACKGROUND_COLOR_DEFAULT = '#333238'; // Used for the background of a subtle neutral status item when static or the default state when linked.
589
- export const GL_STATUS_MUTED_BACKGROUND_COLOR_ACTIVE = '#434248'; // Used for the background of a subtle neutral status item in the active state.
590
- export const GL_STATUS_MUTED_BORDER_COLOR_HOVER = '#535158'; // Used for the border of a subtle neutral status item in the hover state.
587
+ export const GL_SHADOW_COLOR_DEFAULT = 'rgba(05, 05, 06, 0.24)'; // Used for the default shadow color.
588
+ export const GL_STATUS_MUTED_BACKGROUND_COLOR_DEFAULT = '#28272d'; // Used for the background of a subtle neutral status item when static or the default state when linked.
589
+ export const GL_STATUS_MUTED_BACKGROUND_COLOR_ACTIVE = '#3a383f'; // Used for the background of a subtle neutral status item in the active state.
590
+ export const GL_STATUS_MUTED_BORDER_COLOR_HOVER = '#4c4b51'; // Used for the border of a subtle neutral status item in the hover state.
591
591
  export const GL_STATUS_MUTED_TEXT_COLOR_DEFAULT = '#a4a3a8'; // Used for the text of a subtle neutral status item when static or the default state when linked.
592
592
  export const GL_STATUS_MUTED_TEXT_COLOR_HOVER = '#bfbfc3'; // Used for the text of a subtle neutral status item in the hover state.
593
593
  export const GL_STATUS_MUTED_TEXT_COLOR_FOCUS = '#bfbfc3'; // Used for the text of a subtle neutral status item in the focus state.
@@ -596,9 +596,9 @@ export const GL_STATUS_MUTED_ICON_COLOR_DEFAULT = '#89888d'; // Used for the ico
596
596
  export const GL_STATUS_MUTED_ICON_COLOR_HOVER = '#a4a3a8'; // Used for the icon of a subtle neutral status item in the hover state.
597
597
  export const GL_STATUS_MUTED_ICON_COLOR_FOCUS = '#a4a3a8'; // Used for the icon of a subtle neutral status item in the focus state.
598
598
  export const GL_STATUS_MUTED_ICON_COLOR_ACTIVE = '#bfbfc3'; // Used for the icon of a subtle neutral status item in the active state.
599
- export const GL_STATUS_NEUTRAL_BACKGROUND_COLOR_DEFAULT = '#434248'; // Used for the background of a neutral status item when static or the default state when linked.
600
- export const GL_STATUS_NEUTRAL_BACKGROUND_COLOR_ACTIVE = '#535158'; // Used for the background of a neutral status item in the active state.
601
- export const GL_STATUS_NEUTRAL_BORDER_COLOR_HOVER = '#535158'; // Used for the border of a neutral status item in the hover state.
599
+ export const GL_STATUS_NEUTRAL_BACKGROUND_COLOR_DEFAULT = '#3a383f'; // Used for the background of a neutral status item when static or the default state when linked.
600
+ export const GL_STATUS_NEUTRAL_BACKGROUND_COLOR_ACTIVE = '#4c4b51'; // Used for the background of a neutral status item in the active state.
601
+ export const GL_STATUS_NEUTRAL_BORDER_COLOR_HOVER = '#4c4b51'; // Used for the border of a neutral status item in the hover state.
602
602
  export const GL_STATUS_NEUTRAL_TEXT_COLOR_DEFAULT = '#bfbfc3'; // Used for the text of a neutral status item when static or the default state when linked.
603
603
  export const GL_STATUS_NEUTRAL_TEXT_COLOR_HOVER = '#dcdcde'; // Used for the text of a neutral status item in the hover state.
604
604
  export const GL_STATUS_NEUTRAL_TEXT_COLOR_FOCUS = '#dcdcde'; // Used for the text of a neutral status item in the focus state.