@gitlab/ui 80.18.0 → 80.19.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [80.19.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v80.19.0...v80.19.1) (2024-06-07)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **duochat:** Don't submit on enter if composing in IME ([ef57dec](https://gitlab.com/gitlab-org/gitlab-ui/commit/ef57dece9dac129dc2cd77d23d2be5ac7e5d072e)), closes [/gitlab.com/gitlab-org/gitlab-ui/-/issues/2537#note_1938464119](https://gitlab.com//gitlab.com/gitlab-org/gitlab-ui/-/issues/2537/issues/note_1938464119)
7
+
8
+ # [80.19.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v80.18.0...v80.19.0) (2024-06-05)
9
+
10
+
11
+ ### Features
12
+
13
+ * **DesignTokens:** add theme design tokens ([feab27d](https://gitlab.com/gitlab-org/gitlab-ui/commit/feab27d8b1e2f6f7a9dab9fb82aa92540822a1b6))
14
+
1
15
  # [80.18.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v80.17.0...v80.18.0) (2024-06-05)
2
16
 
3
17
 
@@ -302,7 +302,8 @@ var script = {
302
302
  metaKey,
303
303
  ctrlKey,
304
304
  altKey,
305
- shiftKey
305
+ shiftKey,
306
+ isComposing
306
307
  } = e;
307
308
  if (this.shouldShowSlashCommands) {
308
309
  e.preventDefault();
@@ -315,7 +316,7 @@ var script = {
315
316
  } else {
316
317
  this.activeCommandIndex = 0;
317
318
  }
318
- } else if (e.key === 'Enter' && !(metaKey || ctrlKey || altKey || shiftKey)) {
319
+ } else if (e.key === 'Enter' && !isComposing && !(metaKey || ctrlKey || altKey || shiftKey)) {
319
320
  e.preventDefault();
320
321
  this.sendChatPrompt();
321
322
  }
@@ -94,6 +94,78 @@ const GL_COLOR_RED_700 = '#ae1800';
94
94
  const GL_COLOR_RED_800 = '#8d1300';
95
95
  const GL_COLOR_RED_900 = '#660e00';
96
96
  const GL_COLOR_RED_950 = '#4d0a00';
97
+ const GL_COLOR_THEME_INDIGO_10 = '#f8f8ff';
98
+ const GL_COLOR_THEME_INDIGO_50 = '#f1f1ff';
99
+ const GL_COLOR_THEME_INDIGO_100 = '#dbdbf8';
100
+ const GL_COLOR_THEME_INDIGO_200 = '#c7c7f2';
101
+ const GL_COLOR_THEME_INDIGO_300 = '#a2a2e6';
102
+ const GL_COLOR_THEME_INDIGO_400 = '#8181d7';
103
+ const GL_COLOR_THEME_INDIGO_500 = '#6666c4';
104
+ const GL_COLOR_THEME_INDIGO_600 = '#5252b5';
105
+ const GL_COLOR_THEME_INDIGO_700 = '#41419f';
106
+ const GL_COLOR_THEME_INDIGO_800 = '#303083';
107
+ const GL_COLOR_THEME_INDIGO_900 = '#222261';
108
+ const GL_COLOR_THEME_INDIGO_950 = '#14143d';
109
+ const GL_COLOR_THEME_BLUE_10 = '#e6ecf0';
110
+ const GL_COLOR_THEME_BLUE_50 = '#cdd8e3';
111
+ const GL_COLOR_THEME_BLUE_100 = '#b9cadc';
112
+ const GL_COLOR_THEME_BLUE_200 = '#a6bdd5';
113
+ const GL_COLOR_THEME_BLUE_300 = '#81a5c9';
114
+ const GL_COLOR_THEME_BLUE_400 = '#628eb9';
115
+ const GL_COLOR_THEME_BLUE_500 = '#4977a5';
116
+ const GL_COLOR_THEME_BLUE_600 = '#346596';
117
+ const GL_COLOR_THEME_BLUE_700 = '#235180';
118
+ const GL_COLOR_THEME_BLUE_800 = '#153c63';
119
+ const GL_COLOR_THEME_BLUE_900 = '#0b2640';
120
+ const GL_COLOR_THEME_BLUE_950 = '#04101c';
121
+ const GL_COLOR_THEME_LIGHT_BLUE_10 = '#eef3f7';
122
+ const GL_COLOR_THEME_LIGHT_BLUE_50 = '#dde6ee';
123
+ const GL_COLOR_THEME_LIGHT_BLUE_100 = '#c1d4e6';
124
+ const GL_COLOR_THEME_LIGHT_BLUE_200 = '#a0bedc';
125
+ const GL_COLOR_THEME_LIGHT_BLUE_300 = '#74a3d3';
126
+ const GL_COLOR_THEME_LIGHT_BLUE_400 = '#4f8bc7';
127
+ const GL_COLOR_THEME_LIGHT_BLUE_500 = '#3476b9';
128
+ const GL_COLOR_THEME_LIGHT_BLUE_600 = '#2268ae';
129
+ const GL_COLOR_THEME_LIGHT_BLUE_700 = '#145aa1';
130
+ const GL_COLOR_THEME_LIGHT_BLUE_800 = '#0e4d8d';
131
+ const GL_COLOR_THEME_LIGHT_BLUE_900 = '#0c4277';
132
+ const GL_COLOR_THEME_LIGHT_BLUE_950 = '#0a3764';
133
+ const GL_COLOR_THEME_GREEN_10 = '#eef4ef';
134
+ const GL_COLOR_THEME_GREEN_50 = '#dde9de';
135
+ const GL_COLOR_THEME_GREEN_100 = '#b1d6b5';
136
+ const GL_COLOR_THEME_GREEN_200 = '#8cc497';
137
+ const GL_COLOR_THEME_GREEN_300 = '#69af7d';
138
+ const GL_COLOR_THEME_GREEN_400 = '#499767';
139
+ const GL_COLOR_THEME_GREEN_500 = '#308258';
140
+ const GL_COLOR_THEME_GREEN_600 = '#25744c';
141
+ const GL_COLOR_THEME_GREEN_700 = '#1b653f';
142
+ const GL_COLOR_THEME_GREEN_800 = '#155635';
143
+ const GL_COLOR_THEME_GREEN_900 = '#0e4328';
144
+ const GL_COLOR_THEME_GREEN_950 = '#052e19';
145
+ const GL_COLOR_THEME_RED_10 = '#faf4f3';
146
+ const GL_COLOR_THEME_RED_50 = '#f4e9e7';
147
+ const GL_COLOR_THEME_RED_100 = '#ecd3d0';
148
+ const GL_COLOR_THEME_RED_200 = '#e3bab5';
149
+ const GL_COLOR_THEME_RED_300 = '#d59086';
150
+ const GL_COLOR_THEME_RED_400 = '#c66e60';
151
+ const GL_COLOR_THEME_RED_500 = '#ad4a3b';
152
+ const GL_COLOR_THEME_RED_600 = '#a13322';
153
+ const GL_COLOR_THEME_RED_700 = '#8f2110';
154
+ const GL_COLOR_THEME_RED_800 = '#761405';
155
+ const GL_COLOR_THEME_RED_900 = '#580d02';
156
+ const GL_COLOR_THEME_RED_950 = '#380700';
157
+ const GL_COLOR_THEME_LIGHT_RED_10 = '#fdf9f8';
158
+ const GL_COLOR_THEME_LIGHT_RED_50 = '#faf2f1';
159
+ const GL_COLOR_THEME_LIGHT_RED_100 = '#f6d9d5';
160
+ const GL_COLOR_THEME_LIGHT_RED_200 = '#ebada2';
161
+ const GL_COLOR_THEME_LIGHT_RED_300 = '#e07f6f';
162
+ const GL_COLOR_THEME_LIGHT_RED_400 = '#d36250';
163
+ const GL_COLOR_THEME_LIGHT_RED_500 = '#c24b38';
164
+ const GL_COLOR_THEME_LIGHT_RED_600 = '#b53a26';
165
+ const GL_COLOR_THEME_LIGHT_RED_700 = '#a02e1c';
166
+ const GL_COLOR_THEME_LIGHT_RED_800 = '#8b2212';
167
+ const GL_COLOR_THEME_LIGHT_RED_900 = '#751709';
168
+ const GL_COLOR_THEME_LIGHT_RED_950 = '#5c1105';
97
169
  const DATA_VIZ_GREEN_50 = '#133a03';
98
170
  const DATA_VIZ_GREEN_100 = '#1a4500';
99
171
  const DATA_VIZ_GREEN_200 = '#275600';
@@ -345,4 +417,4 @@ const GL_TEXT_COLOR_DANGER = '#f57f6c'; // Used for text indicating a problem, c
345
417
  const GL_TEXT_COLOR_SUCCESS = '#52b87a'; // Used for text indicating success or validity.
346
418
  const GL_TEXT_COLOR_DISABLED = '#89888d'; // Used for disabled text.
347
419
 
348
- export { BLACK, BLUE_100, BLUE_200, BLUE_300, BLUE_400, BLUE_50, BLUE_500, BLUE_600, BLUE_700, BLUE_800, BLUE_900, BLUE_950, BRAND_CHARCOAL, BRAND_GRAY_01, BRAND_GRAY_02, BRAND_GRAY_03, BRAND_GRAY_04, BRAND_GRAY_05, BRAND_ORANGE_01, BRAND_ORANGE_02, BRAND_ORANGE_03, BRAND_PURPLE_01, BRAND_PURPLE_02, DATA_VIZ_AQUA_100, DATA_VIZ_AQUA_200, DATA_VIZ_AQUA_300, DATA_VIZ_AQUA_400, DATA_VIZ_AQUA_50, DATA_VIZ_AQUA_500, DATA_VIZ_AQUA_600, DATA_VIZ_AQUA_700, DATA_VIZ_AQUA_800, DATA_VIZ_AQUA_900, DATA_VIZ_AQUA_950, DATA_VIZ_BLUE_100, DATA_VIZ_BLUE_200, DATA_VIZ_BLUE_300, DATA_VIZ_BLUE_400, DATA_VIZ_BLUE_50, DATA_VIZ_BLUE_500, DATA_VIZ_BLUE_600, DATA_VIZ_BLUE_700, DATA_VIZ_BLUE_800, DATA_VIZ_BLUE_900, DATA_VIZ_BLUE_950, DATA_VIZ_GREEN_100, DATA_VIZ_GREEN_200, DATA_VIZ_GREEN_300, DATA_VIZ_GREEN_400, DATA_VIZ_GREEN_50, DATA_VIZ_GREEN_500, DATA_VIZ_GREEN_600, DATA_VIZ_GREEN_700, DATA_VIZ_GREEN_800, DATA_VIZ_GREEN_900, DATA_VIZ_GREEN_950, DATA_VIZ_MAGENTA_100, DATA_VIZ_MAGENTA_200, DATA_VIZ_MAGENTA_300, DATA_VIZ_MAGENTA_400, DATA_VIZ_MAGENTA_50, DATA_VIZ_MAGENTA_500, DATA_VIZ_MAGENTA_600, DATA_VIZ_MAGENTA_700, DATA_VIZ_MAGENTA_800, DATA_VIZ_MAGENTA_900, DATA_VIZ_MAGENTA_950, DATA_VIZ_ORANGE_100, DATA_VIZ_ORANGE_200, DATA_VIZ_ORANGE_300, DATA_VIZ_ORANGE_400, DATA_VIZ_ORANGE_50, DATA_VIZ_ORANGE_500, DATA_VIZ_ORANGE_600, DATA_VIZ_ORANGE_700, DATA_VIZ_ORANGE_800, DATA_VIZ_ORANGE_900, DATA_VIZ_ORANGE_950, GL_BACKGROUND_COLOR_DEFAULT, GL_BACKGROUND_COLOR_DISABLED, GL_BACKGROUND_COLOR_STRONG, GL_BACKGROUND_COLOR_SUBTLE, GL_BORDER_COLOR_DEFAULT, GL_BORDER_COLOR_STRONG, GL_BORDER_COLOR_SUBTLE, GL_BORDER_COLOR_TRANSPARENT, GL_COLOR_ALPHA_0, GL_COLOR_ALPHA_DARK_16, GL_COLOR_ALPHA_DARK_2, GL_COLOR_ALPHA_DARK_24, GL_COLOR_ALPHA_DARK_4, GL_COLOR_ALPHA_DARK_6, GL_COLOR_ALPHA_DARK_8, GL_COLOR_ALPHA_LIGHT_16, GL_COLOR_ALPHA_LIGHT_2, GL_COLOR_ALPHA_LIGHT_24, GL_COLOR_ALPHA_LIGHT_36, GL_COLOR_ALPHA_LIGHT_4, GL_COLOR_ALPHA_LIGHT_6, GL_COLOR_ALPHA_LIGHT_8, GL_COLOR_BLUE_100, GL_COLOR_BLUE_200, GL_COLOR_BLUE_300, GL_COLOR_BLUE_400, GL_COLOR_BLUE_50, GL_COLOR_BLUE_500, GL_COLOR_BLUE_600, GL_COLOR_BLUE_700, GL_COLOR_BLUE_800, GL_COLOR_BLUE_900, GL_COLOR_BLUE_950, GL_COLOR_GREEN_100, GL_COLOR_GREEN_200, GL_COLOR_GREEN_300, GL_COLOR_GREEN_400, GL_COLOR_GREEN_50, GL_COLOR_GREEN_500, GL_COLOR_GREEN_600, GL_COLOR_GREEN_700, GL_COLOR_GREEN_800, GL_COLOR_GREEN_900, GL_COLOR_GREEN_950, GL_COLOR_NEUTRAL_0, GL_COLOR_NEUTRAL_10, GL_COLOR_NEUTRAL_100, GL_COLOR_NEUTRAL_1000, GL_COLOR_NEUTRAL_200, GL_COLOR_NEUTRAL_300, GL_COLOR_NEUTRAL_400, GL_COLOR_NEUTRAL_50, GL_COLOR_NEUTRAL_500, GL_COLOR_NEUTRAL_600, GL_COLOR_NEUTRAL_700, GL_COLOR_NEUTRAL_800, GL_COLOR_NEUTRAL_900, GL_COLOR_NEUTRAL_950, GL_COLOR_ORANGE_100, GL_COLOR_ORANGE_200, GL_COLOR_ORANGE_300, GL_COLOR_ORANGE_400, GL_COLOR_ORANGE_50, GL_COLOR_ORANGE_500, GL_COLOR_ORANGE_600, GL_COLOR_ORANGE_700, GL_COLOR_ORANGE_800, GL_COLOR_ORANGE_900, GL_COLOR_ORANGE_950, GL_COLOR_PURPLE_100, GL_COLOR_PURPLE_200, GL_COLOR_PURPLE_300, GL_COLOR_PURPLE_400, GL_COLOR_PURPLE_50, GL_COLOR_PURPLE_500, GL_COLOR_PURPLE_600, GL_COLOR_PURPLE_700, GL_COLOR_PURPLE_800, GL_COLOR_PURPLE_900, GL_COLOR_PURPLE_950, GL_COLOR_RED_100, GL_COLOR_RED_200, GL_COLOR_RED_300, GL_COLOR_RED_400, GL_COLOR_RED_50, GL_COLOR_RED_500, GL_COLOR_RED_600, GL_COLOR_RED_700, GL_COLOR_RED_800, GL_COLOR_RED_900, GL_COLOR_RED_950, GL_ICON_COLOR_DANGER, GL_ICON_COLOR_DEFAULT, GL_ICON_COLOR_DISABLED, GL_ICON_COLOR_INFO, GL_ICON_COLOR_LINK, GL_ICON_COLOR_STRONG, GL_ICON_COLOR_SUBTLE, GL_ICON_COLOR_SUCCESS, GL_ICON_COLOR_WARNING, GL_LINE_HEIGHT_12, GL_LINE_HEIGHT_16, GL_LINE_HEIGHT_20, GL_LINE_HEIGHT_24, GL_LINE_HEIGHT_28, GL_LINE_HEIGHT_32, GL_LINE_HEIGHT_36, GL_LINE_HEIGHT_42, GL_LINE_HEIGHT_44, GL_LINE_HEIGHT_52, GL_TEXT_COLOR_DANGER, GL_TEXT_COLOR_DEFAULT, GL_TEXT_COLOR_DISABLED, GL_TEXT_COLOR_HEADING, GL_TEXT_COLOR_LINK, GL_TEXT_COLOR_STRONG, GL_TEXT_COLOR_SUBTLE, GL_TEXT_COLOR_SUCCESS, GL_TEXT_PRIMARY, GL_TEXT_SECONDARY, GL_TEXT_TERTIARY, GRAY_10, GRAY_100, GRAY_200, GRAY_300, GRAY_400, GRAY_50, GRAY_500, GRAY_600, GRAY_700, GRAY_800, GRAY_900, GRAY_950, GREEN_100, GREEN_200, GREEN_300, GREEN_400, GREEN_50, GREEN_500, GREEN_600, GREEN_700, GREEN_800, GREEN_900, GREEN_950, ORANGE_100, ORANGE_200, ORANGE_300, ORANGE_400, ORANGE_50, ORANGE_500, ORANGE_600, ORANGE_700, ORANGE_800, ORANGE_900, ORANGE_950, PURPLE_100, PURPLE_200, PURPLE_300, PURPLE_400, PURPLE_50, PURPLE_500, PURPLE_600, PURPLE_700, PURPLE_800, PURPLE_900, PURPLE_950, RED_100, RED_200, RED_300, RED_400, RED_50, RED_500, RED_600, RED_700, RED_800, RED_900, RED_950, THEME_BLUE_10, THEME_BLUE_100, THEME_BLUE_200, THEME_BLUE_300, THEME_BLUE_400, THEME_BLUE_50, THEME_BLUE_500, THEME_BLUE_600, THEME_BLUE_700, THEME_BLUE_800, THEME_BLUE_900, THEME_BLUE_950, THEME_GREEN_10, THEME_GREEN_100, THEME_GREEN_200, THEME_GREEN_300, THEME_GREEN_400, THEME_GREEN_50, THEME_GREEN_500, THEME_GREEN_600, THEME_GREEN_700, THEME_GREEN_800, THEME_GREEN_900, THEME_GREEN_950, THEME_INDIGO_10, THEME_INDIGO_100, THEME_INDIGO_200, THEME_INDIGO_300, THEME_INDIGO_400, THEME_INDIGO_50, THEME_INDIGO_500, THEME_INDIGO_600, THEME_INDIGO_700, THEME_INDIGO_800, THEME_INDIGO_900, THEME_INDIGO_950, THEME_LIGHT_BLUE_10, THEME_LIGHT_BLUE_100, THEME_LIGHT_BLUE_200, THEME_LIGHT_BLUE_300, THEME_LIGHT_BLUE_400, THEME_LIGHT_BLUE_50, THEME_LIGHT_BLUE_500, THEME_LIGHT_BLUE_600, THEME_LIGHT_BLUE_700, THEME_LIGHT_BLUE_800, THEME_LIGHT_BLUE_900, THEME_LIGHT_BLUE_950, THEME_LIGHT_RED_10, THEME_LIGHT_RED_100, THEME_LIGHT_RED_200, THEME_LIGHT_RED_300, THEME_LIGHT_RED_400, THEME_LIGHT_RED_50, THEME_LIGHT_RED_500, THEME_LIGHT_RED_600, THEME_LIGHT_RED_700, THEME_LIGHT_RED_800, THEME_LIGHT_RED_900, THEME_LIGHT_RED_950, THEME_RED_10, THEME_RED_100, THEME_RED_200, THEME_RED_300, THEME_RED_400, THEME_RED_50, THEME_RED_500, THEME_RED_600, THEME_RED_700, THEME_RED_800, THEME_RED_900, THEME_RED_950, T_GRAY_A_02, T_GRAY_A_04, T_GRAY_A_06, T_GRAY_A_08, T_GRAY_A_16, T_GRAY_A_24, T_WHITE_A_02, T_WHITE_A_04, T_WHITE_A_06, T_WHITE_A_08, T_WHITE_A_16, T_WHITE_A_24, T_WHITE_A_36, WHITE };
420
+ export { BLACK, BLUE_100, BLUE_200, BLUE_300, BLUE_400, BLUE_50, BLUE_500, BLUE_600, BLUE_700, BLUE_800, BLUE_900, BLUE_950, BRAND_CHARCOAL, BRAND_GRAY_01, BRAND_GRAY_02, BRAND_GRAY_03, BRAND_GRAY_04, BRAND_GRAY_05, BRAND_ORANGE_01, BRAND_ORANGE_02, BRAND_ORANGE_03, BRAND_PURPLE_01, BRAND_PURPLE_02, DATA_VIZ_AQUA_100, DATA_VIZ_AQUA_200, DATA_VIZ_AQUA_300, DATA_VIZ_AQUA_400, DATA_VIZ_AQUA_50, DATA_VIZ_AQUA_500, DATA_VIZ_AQUA_600, DATA_VIZ_AQUA_700, DATA_VIZ_AQUA_800, DATA_VIZ_AQUA_900, DATA_VIZ_AQUA_950, DATA_VIZ_BLUE_100, DATA_VIZ_BLUE_200, DATA_VIZ_BLUE_300, DATA_VIZ_BLUE_400, DATA_VIZ_BLUE_50, DATA_VIZ_BLUE_500, DATA_VIZ_BLUE_600, DATA_VIZ_BLUE_700, DATA_VIZ_BLUE_800, DATA_VIZ_BLUE_900, DATA_VIZ_BLUE_950, DATA_VIZ_GREEN_100, DATA_VIZ_GREEN_200, DATA_VIZ_GREEN_300, DATA_VIZ_GREEN_400, DATA_VIZ_GREEN_50, DATA_VIZ_GREEN_500, DATA_VIZ_GREEN_600, DATA_VIZ_GREEN_700, DATA_VIZ_GREEN_800, DATA_VIZ_GREEN_900, DATA_VIZ_GREEN_950, DATA_VIZ_MAGENTA_100, DATA_VIZ_MAGENTA_200, DATA_VIZ_MAGENTA_300, DATA_VIZ_MAGENTA_400, DATA_VIZ_MAGENTA_50, DATA_VIZ_MAGENTA_500, DATA_VIZ_MAGENTA_600, DATA_VIZ_MAGENTA_700, DATA_VIZ_MAGENTA_800, DATA_VIZ_MAGENTA_900, DATA_VIZ_MAGENTA_950, DATA_VIZ_ORANGE_100, DATA_VIZ_ORANGE_200, DATA_VIZ_ORANGE_300, DATA_VIZ_ORANGE_400, DATA_VIZ_ORANGE_50, DATA_VIZ_ORANGE_500, DATA_VIZ_ORANGE_600, DATA_VIZ_ORANGE_700, DATA_VIZ_ORANGE_800, DATA_VIZ_ORANGE_900, DATA_VIZ_ORANGE_950, GL_BACKGROUND_COLOR_DEFAULT, GL_BACKGROUND_COLOR_DISABLED, GL_BACKGROUND_COLOR_STRONG, GL_BACKGROUND_COLOR_SUBTLE, GL_BORDER_COLOR_DEFAULT, GL_BORDER_COLOR_STRONG, GL_BORDER_COLOR_SUBTLE, GL_BORDER_COLOR_TRANSPARENT, GL_COLOR_ALPHA_0, GL_COLOR_ALPHA_DARK_16, GL_COLOR_ALPHA_DARK_2, GL_COLOR_ALPHA_DARK_24, GL_COLOR_ALPHA_DARK_4, GL_COLOR_ALPHA_DARK_6, GL_COLOR_ALPHA_DARK_8, GL_COLOR_ALPHA_LIGHT_16, GL_COLOR_ALPHA_LIGHT_2, GL_COLOR_ALPHA_LIGHT_24, GL_COLOR_ALPHA_LIGHT_36, GL_COLOR_ALPHA_LIGHT_4, GL_COLOR_ALPHA_LIGHT_6, GL_COLOR_ALPHA_LIGHT_8, GL_COLOR_BLUE_100, GL_COLOR_BLUE_200, GL_COLOR_BLUE_300, GL_COLOR_BLUE_400, GL_COLOR_BLUE_50, GL_COLOR_BLUE_500, GL_COLOR_BLUE_600, GL_COLOR_BLUE_700, GL_COLOR_BLUE_800, GL_COLOR_BLUE_900, GL_COLOR_BLUE_950, GL_COLOR_GREEN_100, GL_COLOR_GREEN_200, GL_COLOR_GREEN_300, GL_COLOR_GREEN_400, GL_COLOR_GREEN_50, GL_COLOR_GREEN_500, GL_COLOR_GREEN_600, GL_COLOR_GREEN_700, GL_COLOR_GREEN_800, GL_COLOR_GREEN_900, GL_COLOR_GREEN_950, GL_COLOR_NEUTRAL_0, GL_COLOR_NEUTRAL_10, GL_COLOR_NEUTRAL_100, GL_COLOR_NEUTRAL_1000, GL_COLOR_NEUTRAL_200, GL_COLOR_NEUTRAL_300, GL_COLOR_NEUTRAL_400, GL_COLOR_NEUTRAL_50, GL_COLOR_NEUTRAL_500, GL_COLOR_NEUTRAL_600, GL_COLOR_NEUTRAL_700, GL_COLOR_NEUTRAL_800, GL_COLOR_NEUTRAL_900, GL_COLOR_NEUTRAL_950, GL_COLOR_ORANGE_100, GL_COLOR_ORANGE_200, GL_COLOR_ORANGE_300, GL_COLOR_ORANGE_400, GL_COLOR_ORANGE_50, GL_COLOR_ORANGE_500, GL_COLOR_ORANGE_600, GL_COLOR_ORANGE_700, GL_COLOR_ORANGE_800, GL_COLOR_ORANGE_900, GL_COLOR_ORANGE_950, GL_COLOR_PURPLE_100, GL_COLOR_PURPLE_200, GL_COLOR_PURPLE_300, GL_COLOR_PURPLE_400, GL_COLOR_PURPLE_50, GL_COLOR_PURPLE_500, GL_COLOR_PURPLE_600, GL_COLOR_PURPLE_700, GL_COLOR_PURPLE_800, GL_COLOR_PURPLE_900, GL_COLOR_PURPLE_950, GL_COLOR_RED_100, GL_COLOR_RED_200, GL_COLOR_RED_300, GL_COLOR_RED_400, GL_COLOR_RED_50, GL_COLOR_RED_500, GL_COLOR_RED_600, GL_COLOR_RED_700, GL_COLOR_RED_800, GL_COLOR_RED_900, GL_COLOR_RED_950, GL_COLOR_THEME_BLUE_10, GL_COLOR_THEME_BLUE_100, GL_COLOR_THEME_BLUE_200, GL_COLOR_THEME_BLUE_300, GL_COLOR_THEME_BLUE_400, GL_COLOR_THEME_BLUE_50, GL_COLOR_THEME_BLUE_500, GL_COLOR_THEME_BLUE_600, GL_COLOR_THEME_BLUE_700, GL_COLOR_THEME_BLUE_800, GL_COLOR_THEME_BLUE_900, GL_COLOR_THEME_BLUE_950, GL_COLOR_THEME_GREEN_10, GL_COLOR_THEME_GREEN_100, GL_COLOR_THEME_GREEN_200, GL_COLOR_THEME_GREEN_300, GL_COLOR_THEME_GREEN_400, GL_COLOR_THEME_GREEN_50, GL_COLOR_THEME_GREEN_500, GL_COLOR_THEME_GREEN_600, GL_COLOR_THEME_GREEN_700, GL_COLOR_THEME_GREEN_800, GL_COLOR_THEME_GREEN_900, GL_COLOR_THEME_GREEN_950, GL_COLOR_THEME_INDIGO_10, GL_COLOR_THEME_INDIGO_100, GL_COLOR_THEME_INDIGO_200, GL_COLOR_THEME_INDIGO_300, GL_COLOR_THEME_INDIGO_400, GL_COLOR_THEME_INDIGO_50, GL_COLOR_THEME_INDIGO_500, GL_COLOR_THEME_INDIGO_600, GL_COLOR_THEME_INDIGO_700, GL_COLOR_THEME_INDIGO_800, GL_COLOR_THEME_INDIGO_900, GL_COLOR_THEME_INDIGO_950, GL_COLOR_THEME_LIGHT_BLUE_10, GL_COLOR_THEME_LIGHT_BLUE_100, GL_COLOR_THEME_LIGHT_BLUE_200, GL_COLOR_THEME_LIGHT_BLUE_300, GL_COLOR_THEME_LIGHT_BLUE_400, GL_COLOR_THEME_LIGHT_BLUE_50, GL_COLOR_THEME_LIGHT_BLUE_500, GL_COLOR_THEME_LIGHT_BLUE_600, GL_COLOR_THEME_LIGHT_BLUE_700, GL_COLOR_THEME_LIGHT_BLUE_800, GL_COLOR_THEME_LIGHT_BLUE_900, GL_COLOR_THEME_LIGHT_BLUE_950, GL_COLOR_THEME_LIGHT_RED_10, GL_COLOR_THEME_LIGHT_RED_100, GL_COLOR_THEME_LIGHT_RED_200, GL_COLOR_THEME_LIGHT_RED_300, GL_COLOR_THEME_LIGHT_RED_400, GL_COLOR_THEME_LIGHT_RED_50, GL_COLOR_THEME_LIGHT_RED_500, GL_COLOR_THEME_LIGHT_RED_600, GL_COLOR_THEME_LIGHT_RED_700, GL_COLOR_THEME_LIGHT_RED_800, GL_COLOR_THEME_LIGHT_RED_900, GL_COLOR_THEME_LIGHT_RED_950, GL_COLOR_THEME_RED_10, GL_COLOR_THEME_RED_100, GL_COLOR_THEME_RED_200, GL_COLOR_THEME_RED_300, GL_COLOR_THEME_RED_400, GL_COLOR_THEME_RED_50, GL_COLOR_THEME_RED_500, GL_COLOR_THEME_RED_600, GL_COLOR_THEME_RED_700, GL_COLOR_THEME_RED_800, GL_COLOR_THEME_RED_900, GL_COLOR_THEME_RED_950, GL_ICON_COLOR_DANGER, GL_ICON_COLOR_DEFAULT, GL_ICON_COLOR_DISABLED, GL_ICON_COLOR_INFO, GL_ICON_COLOR_LINK, GL_ICON_COLOR_STRONG, GL_ICON_COLOR_SUBTLE, GL_ICON_COLOR_SUCCESS, GL_ICON_COLOR_WARNING, GL_LINE_HEIGHT_12, GL_LINE_HEIGHT_16, GL_LINE_HEIGHT_20, GL_LINE_HEIGHT_24, GL_LINE_HEIGHT_28, GL_LINE_HEIGHT_32, GL_LINE_HEIGHT_36, GL_LINE_HEIGHT_42, GL_LINE_HEIGHT_44, GL_LINE_HEIGHT_52, GL_TEXT_COLOR_DANGER, GL_TEXT_COLOR_DEFAULT, GL_TEXT_COLOR_DISABLED, GL_TEXT_COLOR_HEADING, GL_TEXT_COLOR_LINK, GL_TEXT_COLOR_STRONG, GL_TEXT_COLOR_SUBTLE, GL_TEXT_COLOR_SUCCESS, GL_TEXT_PRIMARY, GL_TEXT_SECONDARY, GL_TEXT_TERTIARY, GRAY_10, GRAY_100, GRAY_200, GRAY_300, GRAY_400, GRAY_50, GRAY_500, GRAY_600, GRAY_700, GRAY_800, GRAY_900, GRAY_950, GREEN_100, GREEN_200, GREEN_300, GREEN_400, GREEN_50, GREEN_500, GREEN_600, GREEN_700, GREEN_800, GREEN_900, GREEN_950, ORANGE_100, ORANGE_200, ORANGE_300, ORANGE_400, ORANGE_50, ORANGE_500, ORANGE_600, ORANGE_700, ORANGE_800, ORANGE_900, ORANGE_950, PURPLE_100, PURPLE_200, PURPLE_300, PURPLE_400, PURPLE_50, PURPLE_500, PURPLE_600, PURPLE_700, PURPLE_800, PURPLE_900, PURPLE_950, RED_100, RED_200, RED_300, RED_400, RED_50, RED_500, RED_600, RED_700, RED_800, RED_900, RED_950, THEME_BLUE_10, THEME_BLUE_100, THEME_BLUE_200, THEME_BLUE_300, THEME_BLUE_400, THEME_BLUE_50, THEME_BLUE_500, THEME_BLUE_600, THEME_BLUE_700, THEME_BLUE_800, THEME_BLUE_900, THEME_BLUE_950, THEME_GREEN_10, THEME_GREEN_100, THEME_GREEN_200, THEME_GREEN_300, THEME_GREEN_400, THEME_GREEN_50, THEME_GREEN_500, THEME_GREEN_600, THEME_GREEN_700, THEME_GREEN_800, THEME_GREEN_900, THEME_GREEN_950, THEME_INDIGO_10, THEME_INDIGO_100, THEME_INDIGO_200, THEME_INDIGO_300, THEME_INDIGO_400, THEME_INDIGO_50, THEME_INDIGO_500, THEME_INDIGO_600, THEME_INDIGO_700, THEME_INDIGO_800, THEME_INDIGO_900, THEME_INDIGO_950, THEME_LIGHT_BLUE_10, THEME_LIGHT_BLUE_100, THEME_LIGHT_BLUE_200, THEME_LIGHT_BLUE_300, THEME_LIGHT_BLUE_400, THEME_LIGHT_BLUE_50, THEME_LIGHT_BLUE_500, THEME_LIGHT_BLUE_600, THEME_LIGHT_BLUE_700, THEME_LIGHT_BLUE_800, THEME_LIGHT_BLUE_900, THEME_LIGHT_BLUE_950, THEME_LIGHT_RED_10, THEME_LIGHT_RED_100, THEME_LIGHT_RED_200, THEME_LIGHT_RED_300, THEME_LIGHT_RED_400, THEME_LIGHT_RED_50, THEME_LIGHT_RED_500, THEME_LIGHT_RED_600, THEME_LIGHT_RED_700, THEME_LIGHT_RED_800, THEME_LIGHT_RED_900, THEME_LIGHT_RED_950, THEME_RED_10, THEME_RED_100, THEME_RED_200, THEME_RED_300, THEME_RED_400, THEME_RED_50, THEME_RED_500, THEME_RED_600, THEME_RED_700, THEME_RED_800, THEME_RED_900, THEME_RED_950, T_GRAY_A_02, T_GRAY_A_04, T_GRAY_A_06, T_GRAY_A_08, T_GRAY_A_16, T_GRAY_A_24, T_WHITE_A_02, T_WHITE_A_04, T_WHITE_A_06, T_WHITE_A_08, T_WHITE_A_16, T_WHITE_A_24, T_WHITE_A_36, WHITE };
@@ -94,6 +94,78 @@ const GL_COLOR_RED_700 = '#ae1800';
94
94
  const GL_COLOR_RED_800 = '#8d1300';
95
95
  const GL_COLOR_RED_900 = '#660e00';
96
96
  const GL_COLOR_RED_950 = '#4d0a00';
97
+ const GL_COLOR_THEME_INDIGO_10 = '#f8f8ff';
98
+ const GL_COLOR_THEME_INDIGO_50 = '#f1f1ff';
99
+ const GL_COLOR_THEME_INDIGO_100 = '#dbdbf8';
100
+ const GL_COLOR_THEME_INDIGO_200 = '#c7c7f2';
101
+ const GL_COLOR_THEME_INDIGO_300 = '#a2a2e6';
102
+ const GL_COLOR_THEME_INDIGO_400 = '#8181d7';
103
+ const GL_COLOR_THEME_INDIGO_500 = '#6666c4';
104
+ const GL_COLOR_THEME_INDIGO_600 = '#5252b5';
105
+ const GL_COLOR_THEME_INDIGO_700 = '#41419f';
106
+ const GL_COLOR_THEME_INDIGO_800 = '#303083';
107
+ const GL_COLOR_THEME_INDIGO_900 = '#222261';
108
+ const GL_COLOR_THEME_INDIGO_950 = '#14143d';
109
+ const GL_COLOR_THEME_BLUE_10 = '#e6ecf0';
110
+ const GL_COLOR_THEME_BLUE_50 = '#cdd8e3';
111
+ const GL_COLOR_THEME_BLUE_100 = '#b9cadc';
112
+ const GL_COLOR_THEME_BLUE_200 = '#a6bdd5';
113
+ const GL_COLOR_THEME_BLUE_300 = '#81a5c9';
114
+ const GL_COLOR_THEME_BLUE_400 = '#628eb9';
115
+ const GL_COLOR_THEME_BLUE_500 = '#4977a5';
116
+ const GL_COLOR_THEME_BLUE_600 = '#346596';
117
+ const GL_COLOR_THEME_BLUE_700 = '#235180';
118
+ const GL_COLOR_THEME_BLUE_800 = '#153c63';
119
+ const GL_COLOR_THEME_BLUE_900 = '#0b2640';
120
+ const GL_COLOR_THEME_BLUE_950 = '#04101c';
121
+ const GL_COLOR_THEME_LIGHT_BLUE_10 = '#eef3f7';
122
+ const GL_COLOR_THEME_LIGHT_BLUE_50 = '#dde6ee';
123
+ const GL_COLOR_THEME_LIGHT_BLUE_100 = '#c1d4e6';
124
+ const GL_COLOR_THEME_LIGHT_BLUE_200 = '#a0bedc';
125
+ const GL_COLOR_THEME_LIGHT_BLUE_300 = '#74a3d3';
126
+ const GL_COLOR_THEME_LIGHT_BLUE_400 = '#4f8bc7';
127
+ const GL_COLOR_THEME_LIGHT_BLUE_500 = '#3476b9';
128
+ const GL_COLOR_THEME_LIGHT_BLUE_600 = '#2268ae';
129
+ const GL_COLOR_THEME_LIGHT_BLUE_700 = '#145aa1';
130
+ const GL_COLOR_THEME_LIGHT_BLUE_800 = '#0e4d8d';
131
+ const GL_COLOR_THEME_LIGHT_BLUE_900 = '#0c4277';
132
+ const GL_COLOR_THEME_LIGHT_BLUE_950 = '#0a3764';
133
+ const GL_COLOR_THEME_GREEN_10 = '#eef4ef';
134
+ const GL_COLOR_THEME_GREEN_50 = '#dde9de';
135
+ const GL_COLOR_THEME_GREEN_100 = '#b1d6b5';
136
+ const GL_COLOR_THEME_GREEN_200 = '#8cc497';
137
+ const GL_COLOR_THEME_GREEN_300 = '#69af7d';
138
+ const GL_COLOR_THEME_GREEN_400 = '#499767';
139
+ const GL_COLOR_THEME_GREEN_500 = '#308258';
140
+ const GL_COLOR_THEME_GREEN_600 = '#25744c';
141
+ const GL_COLOR_THEME_GREEN_700 = '#1b653f';
142
+ const GL_COLOR_THEME_GREEN_800 = '#155635';
143
+ const GL_COLOR_THEME_GREEN_900 = '#0e4328';
144
+ const GL_COLOR_THEME_GREEN_950 = '#052e19';
145
+ const GL_COLOR_THEME_RED_10 = '#faf4f3';
146
+ const GL_COLOR_THEME_RED_50 = '#f4e9e7';
147
+ const GL_COLOR_THEME_RED_100 = '#ecd3d0';
148
+ const GL_COLOR_THEME_RED_200 = '#e3bab5';
149
+ const GL_COLOR_THEME_RED_300 = '#d59086';
150
+ const GL_COLOR_THEME_RED_400 = '#c66e60';
151
+ const GL_COLOR_THEME_RED_500 = '#ad4a3b';
152
+ const GL_COLOR_THEME_RED_600 = '#a13322';
153
+ const GL_COLOR_THEME_RED_700 = '#8f2110';
154
+ const GL_COLOR_THEME_RED_800 = '#761405';
155
+ const GL_COLOR_THEME_RED_900 = '#580d02';
156
+ const GL_COLOR_THEME_RED_950 = '#380700';
157
+ const GL_COLOR_THEME_LIGHT_RED_10 = '#fdf9f8';
158
+ const GL_COLOR_THEME_LIGHT_RED_50 = '#faf2f1';
159
+ const GL_COLOR_THEME_LIGHT_RED_100 = '#f6d9d5';
160
+ const GL_COLOR_THEME_LIGHT_RED_200 = '#ebada2';
161
+ const GL_COLOR_THEME_LIGHT_RED_300 = '#e07f6f';
162
+ const GL_COLOR_THEME_LIGHT_RED_400 = '#d36250';
163
+ const GL_COLOR_THEME_LIGHT_RED_500 = '#c24b38';
164
+ const GL_COLOR_THEME_LIGHT_RED_600 = '#b53a26';
165
+ const GL_COLOR_THEME_LIGHT_RED_700 = '#a02e1c';
166
+ const GL_COLOR_THEME_LIGHT_RED_800 = '#8b2212';
167
+ const GL_COLOR_THEME_LIGHT_RED_900 = '#751709';
168
+ const GL_COLOR_THEME_LIGHT_RED_950 = '#5c1105';
97
169
  const DATA_VIZ_GREEN_50 = '#ddfab7';
98
170
  const DATA_VIZ_GREEN_100 = '#c6ed94';
99
171
  const DATA_VIZ_GREEN_200 = '#b0d97b';
@@ -345,4 +417,4 @@ const GL_TEXT_COLOR_DANGER = '#c91c00'; // Used for text indicating a problem, c
345
417
  const GL_TEXT_COLOR_SUCCESS = '#217645'; // Used for text indicating success or validity.
346
418
  const GL_TEXT_COLOR_DISABLED = '#89888d'; // Used for disabled text.
347
419
 
348
- export { BLACK, BLUE_100, BLUE_200, BLUE_300, BLUE_400, BLUE_50, BLUE_500, BLUE_600, BLUE_700, BLUE_800, BLUE_900, BLUE_950, BRAND_CHARCOAL, BRAND_GRAY_01, BRAND_GRAY_02, BRAND_GRAY_03, BRAND_GRAY_04, BRAND_GRAY_05, BRAND_ORANGE_01, BRAND_ORANGE_02, BRAND_ORANGE_03, BRAND_PURPLE_01, BRAND_PURPLE_02, DATA_VIZ_AQUA_100, DATA_VIZ_AQUA_200, DATA_VIZ_AQUA_300, DATA_VIZ_AQUA_400, DATA_VIZ_AQUA_50, DATA_VIZ_AQUA_500, DATA_VIZ_AQUA_600, DATA_VIZ_AQUA_700, DATA_VIZ_AQUA_800, DATA_VIZ_AQUA_900, DATA_VIZ_AQUA_950, DATA_VIZ_BLUE_100, DATA_VIZ_BLUE_200, DATA_VIZ_BLUE_300, DATA_VIZ_BLUE_400, DATA_VIZ_BLUE_50, DATA_VIZ_BLUE_500, DATA_VIZ_BLUE_600, DATA_VIZ_BLUE_700, DATA_VIZ_BLUE_800, DATA_VIZ_BLUE_900, DATA_VIZ_BLUE_950, DATA_VIZ_GREEN_100, DATA_VIZ_GREEN_200, DATA_VIZ_GREEN_300, DATA_VIZ_GREEN_400, DATA_VIZ_GREEN_50, DATA_VIZ_GREEN_500, DATA_VIZ_GREEN_600, DATA_VIZ_GREEN_700, DATA_VIZ_GREEN_800, DATA_VIZ_GREEN_900, DATA_VIZ_GREEN_950, DATA_VIZ_MAGENTA_100, DATA_VIZ_MAGENTA_200, DATA_VIZ_MAGENTA_300, DATA_VIZ_MAGENTA_400, DATA_VIZ_MAGENTA_50, DATA_VIZ_MAGENTA_500, DATA_VIZ_MAGENTA_600, DATA_VIZ_MAGENTA_700, DATA_VIZ_MAGENTA_800, DATA_VIZ_MAGENTA_900, DATA_VIZ_MAGENTA_950, DATA_VIZ_ORANGE_100, DATA_VIZ_ORANGE_200, DATA_VIZ_ORANGE_300, DATA_VIZ_ORANGE_400, DATA_VIZ_ORANGE_50, DATA_VIZ_ORANGE_500, DATA_VIZ_ORANGE_600, DATA_VIZ_ORANGE_700, DATA_VIZ_ORANGE_800, DATA_VIZ_ORANGE_900, DATA_VIZ_ORANGE_950, GL_BACKGROUND_COLOR_DEFAULT, GL_BACKGROUND_COLOR_DISABLED, GL_BACKGROUND_COLOR_STRONG, GL_BACKGROUND_COLOR_SUBTLE, GL_BORDER_COLOR_DEFAULT, GL_BORDER_COLOR_STRONG, GL_BORDER_COLOR_SUBTLE, GL_BORDER_COLOR_TRANSPARENT, GL_COLOR_ALPHA_0, GL_COLOR_ALPHA_DARK_16, GL_COLOR_ALPHA_DARK_2, GL_COLOR_ALPHA_DARK_24, GL_COLOR_ALPHA_DARK_4, GL_COLOR_ALPHA_DARK_6, GL_COLOR_ALPHA_DARK_8, GL_COLOR_ALPHA_LIGHT_16, GL_COLOR_ALPHA_LIGHT_2, GL_COLOR_ALPHA_LIGHT_24, GL_COLOR_ALPHA_LIGHT_36, GL_COLOR_ALPHA_LIGHT_4, GL_COLOR_ALPHA_LIGHT_6, GL_COLOR_ALPHA_LIGHT_8, GL_COLOR_BLUE_100, GL_COLOR_BLUE_200, GL_COLOR_BLUE_300, GL_COLOR_BLUE_400, GL_COLOR_BLUE_50, GL_COLOR_BLUE_500, GL_COLOR_BLUE_600, GL_COLOR_BLUE_700, GL_COLOR_BLUE_800, GL_COLOR_BLUE_900, GL_COLOR_BLUE_950, GL_COLOR_GREEN_100, GL_COLOR_GREEN_200, GL_COLOR_GREEN_300, GL_COLOR_GREEN_400, GL_COLOR_GREEN_50, GL_COLOR_GREEN_500, GL_COLOR_GREEN_600, GL_COLOR_GREEN_700, GL_COLOR_GREEN_800, GL_COLOR_GREEN_900, GL_COLOR_GREEN_950, GL_COLOR_NEUTRAL_0, GL_COLOR_NEUTRAL_10, GL_COLOR_NEUTRAL_100, GL_COLOR_NEUTRAL_1000, GL_COLOR_NEUTRAL_200, GL_COLOR_NEUTRAL_300, GL_COLOR_NEUTRAL_400, GL_COLOR_NEUTRAL_50, GL_COLOR_NEUTRAL_500, GL_COLOR_NEUTRAL_600, GL_COLOR_NEUTRAL_700, GL_COLOR_NEUTRAL_800, GL_COLOR_NEUTRAL_900, GL_COLOR_NEUTRAL_950, GL_COLOR_ORANGE_100, GL_COLOR_ORANGE_200, GL_COLOR_ORANGE_300, GL_COLOR_ORANGE_400, GL_COLOR_ORANGE_50, GL_COLOR_ORANGE_500, GL_COLOR_ORANGE_600, GL_COLOR_ORANGE_700, GL_COLOR_ORANGE_800, GL_COLOR_ORANGE_900, GL_COLOR_ORANGE_950, GL_COLOR_PURPLE_100, GL_COLOR_PURPLE_200, GL_COLOR_PURPLE_300, GL_COLOR_PURPLE_400, GL_COLOR_PURPLE_50, GL_COLOR_PURPLE_500, GL_COLOR_PURPLE_600, GL_COLOR_PURPLE_700, GL_COLOR_PURPLE_800, GL_COLOR_PURPLE_900, GL_COLOR_PURPLE_950, GL_COLOR_RED_100, GL_COLOR_RED_200, GL_COLOR_RED_300, GL_COLOR_RED_400, GL_COLOR_RED_50, GL_COLOR_RED_500, GL_COLOR_RED_600, GL_COLOR_RED_700, GL_COLOR_RED_800, GL_COLOR_RED_900, GL_COLOR_RED_950, GL_ICON_COLOR_DANGER, GL_ICON_COLOR_DEFAULT, GL_ICON_COLOR_DISABLED, GL_ICON_COLOR_INFO, GL_ICON_COLOR_LINK, GL_ICON_COLOR_STRONG, GL_ICON_COLOR_SUBTLE, GL_ICON_COLOR_SUCCESS, GL_ICON_COLOR_WARNING, GL_LINE_HEIGHT_12, GL_LINE_HEIGHT_16, GL_LINE_HEIGHT_20, GL_LINE_HEIGHT_24, GL_LINE_HEIGHT_28, GL_LINE_HEIGHT_32, GL_LINE_HEIGHT_36, GL_LINE_HEIGHT_42, GL_LINE_HEIGHT_44, GL_LINE_HEIGHT_52, GL_TEXT_COLOR_DANGER, GL_TEXT_COLOR_DEFAULT, GL_TEXT_COLOR_DISABLED, GL_TEXT_COLOR_HEADING, GL_TEXT_COLOR_LINK, GL_TEXT_COLOR_STRONG, GL_TEXT_COLOR_SUBTLE, GL_TEXT_COLOR_SUCCESS, GL_TEXT_PRIMARY, GL_TEXT_SECONDARY, GL_TEXT_TERTIARY, GRAY_10, GRAY_100, GRAY_200, GRAY_300, GRAY_400, GRAY_50, GRAY_500, GRAY_600, GRAY_700, GRAY_800, GRAY_900, GRAY_950, GREEN_100, GREEN_200, GREEN_300, GREEN_400, GREEN_50, GREEN_500, GREEN_600, GREEN_700, GREEN_800, GREEN_900, GREEN_950, ORANGE_100, ORANGE_200, ORANGE_300, ORANGE_400, ORANGE_50, ORANGE_500, ORANGE_600, ORANGE_700, ORANGE_800, ORANGE_900, ORANGE_950, PURPLE_100, PURPLE_200, PURPLE_300, PURPLE_400, PURPLE_50, PURPLE_500, PURPLE_600, PURPLE_700, PURPLE_800, PURPLE_900, PURPLE_950, RED_100, RED_200, RED_300, RED_400, RED_50, RED_500, RED_600, RED_700, RED_800, RED_900, RED_950, THEME_BLUE_10, THEME_BLUE_100, THEME_BLUE_200, THEME_BLUE_300, THEME_BLUE_400, THEME_BLUE_50, THEME_BLUE_500, THEME_BLUE_600, THEME_BLUE_700, THEME_BLUE_800, THEME_BLUE_900, THEME_BLUE_950, THEME_GREEN_10, THEME_GREEN_100, THEME_GREEN_200, THEME_GREEN_300, THEME_GREEN_400, THEME_GREEN_50, THEME_GREEN_500, THEME_GREEN_600, THEME_GREEN_700, THEME_GREEN_800, THEME_GREEN_900, THEME_GREEN_950, THEME_INDIGO_10, THEME_INDIGO_100, THEME_INDIGO_200, THEME_INDIGO_300, THEME_INDIGO_400, THEME_INDIGO_50, THEME_INDIGO_500, THEME_INDIGO_600, THEME_INDIGO_700, THEME_INDIGO_800, THEME_INDIGO_900, THEME_INDIGO_950, THEME_LIGHT_BLUE_10, THEME_LIGHT_BLUE_100, THEME_LIGHT_BLUE_200, THEME_LIGHT_BLUE_300, THEME_LIGHT_BLUE_400, THEME_LIGHT_BLUE_50, THEME_LIGHT_BLUE_500, THEME_LIGHT_BLUE_600, THEME_LIGHT_BLUE_700, THEME_LIGHT_BLUE_800, THEME_LIGHT_BLUE_900, THEME_LIGHT_BLUE_950, THEME_LIGHT_RED_10, THEME_LIGHT_RED_100, THEME_LIGHT_RED_200, THEME_LIGHT_RED_300, THEME_LIGHT_RED_400, THEME_LIGHT_RED_50, THEME_LIGHT_RED_500, THEME_LIGHT_RED_600, THEME_LIGHT_RED_700, THEME_LIGHT_RED_800, THEME_LIGHT_RED_900, THEME_LIGHT_RED_950, THEME_RED_10, THEME_RED_100, THEME_RED_200, THEME_RED_300, THEME_RED_400, THEME_RED_50, THEME_RED_500, THEME_RED_600, THEME_RED_700, THEME_RED_800, THEME_RED_900, THEME_RED_950, T_GRAY_A_02, T_GRAY_A_04, T_GRAY_A_06, T_GRAY_A_08, T_GRAY_A_16, T_GRAY_A_24, T_WHITE_A_02, T_WHITE_A_04, T_WHITE_A_06, T_WHITE_A_08, T_WHITE_A_16, T_WHITE_A_24, T_WHITE_A_36, WHITE };
420
+ export { BLACK, BLUE_100, BLUE_200, BLUE_300, BLUE_400, BLUE_50, BLUE_500, BLUE_600, BLUE_700, BLUE_800, BLUE_900, BLUE_950, BRAND_CHARCOAL, BRAND_GRAY_01, BRAND_GRAY_02, BRAND_GRAY_03, BRAND_GRAY_04, BRAND_GRAY_05, BRAND_ORANGE_01, BRAND_ORANGE_02, BRAND_ORANGE_03, BRAND_PURPLE_01, BRAND_PURPLE_02, DATA_VIZ_AQUA_100, DATA_VIZ_AQUA_200, DATA_VIZ_AQUA_300, DATA_VIZ_AQUA_400, DATA_VIZ_AQUA_50, DATA_VIZ_AQUA_500, DATA_VIZ_AQUA_600, DATA_VIZ_AQUA_700, DATA_VIZ_AQUA_800, DATA_VIZ_AQUA_900, DATA_VIZ_AQUA_950, DATA_VIZ_BLUE_100, DATA_VIZ_BLUE_200, DATA_VIZ_BLUE_300, DATA_VIZ_BLUE_400, DATA_VIZ_BLUE_50, DATA_VIZ_BLUE_500, DATA_VIZ_BLUE_600, DATA_VIZ_BLUE_700, DATA_VIZ_BLUE_800, DATA_VIZ_BLUE_900, DATA_VIZ_BLUE_950, DATA_VIZ_GREEN_100, DATA_VIZ_GREEN_200, DATA_VIZ_GREEN_300, DATA_VIZ_GREEN_400, DATA_VIZ_GREEN_50, DATA_VIZ_GREEN_500, DATA_VIZ_GREEN_600, DATA_VIZ_GREEN_700, DATA_VIZ_GREEN_800, DATA_VIZ_GREEN_900, DATA_VIZ_GREEN_950, DATA_VIZ_MAGENTA_100, DATA_VIZ_MAGENTA_200, DATA_VIZ_MAGENTA_300, DATA_VIZ_MAGENTA_400, DATA_VIZ_MAGENTA_50, DATA_VIZ_MAGENTA_500, DATA_VIZ_MAGENTA_600, DATA_VIZ_MAGENTA_700, DATA_VIZ_MAGENTA_800, DATA_VIZ_MAGENTA_900, DATA_VIZ_MAGENTA_950, DATA_VIZ_ORANGE_100, DATA_VIZ_ORANGE_200, DATA_VIZ_ORANGE_300, DATA_VIZ_ORANGE_400, DATA_VIZ_ORANGE_50, DATA_VIZ_ORANGE_500, DATA_VIZ_ORANGE_600, DATA_VIZ_ORANGE_700, DATA_VIZ_ORANGE_800, DATA_VIZ_ORANGE_900, DATA_VIZ_ORANGE_950, GL_BACKGROUND_COLOR_DEFAULT, GL_BACKGROUND_COLOR_DISABLED, GL_BACKGROUND_COLOR_STRONG, GL_BACKGROUND_COLOR_SUBTLE, GL_BORDER_COLOR_DEFAULT, GL_BORDER_COLOR_STRONG, GL_BORDER_COLOR_SUBTLE, GL_BORDER_COLOR_TRANSPARENT, GL_COLOR_ALPHA_0, GL_COLOR_ALPHA_DARK_16, GL_COLOR_ALPHA_DARK_2, GL_COLOR_ALPHA_DARK_24, GL_COLOR_ALPHA_DARK_4, GL_COLOR_ALPHA_DARK_6, GL_COLOR_ALPHA_DARK_8, GL_COLOR_ALPHA_LIGHT_16, GL_COLOR_ALPHA_LIGHT_2, GL_COLOR_ALPHA_LIGHT_24, GL_COLOR_ALPHA_LIGHT_36, GL_COLOR_ALPHA_LIGHT_4, GL_COLOR_ALPHA_LIGHT_6, GL_COLOR_ALPHA_LIGHT_8, GL_COLOR_BLUE_100, GL_COLOR_BLUE_200, GL_COLOR_BLUE_300, GL_COLOR_BLUE_400, GL_COLOR_BLUE_50, GL_COLOR_BLUE_500, GL_COLOR_BLUE_600, GL_COLOR_BLUE_700, GL_COLOR_BLUE_800, GL_COLOR_BLUE_900, GL_COLOR_BLUE_950, GL_COLOR_GREEN_100, GL_COLOR_GREEN_200, GL_COLOR_GREEN_300, GL_COLOR_GREEN_400, GL_COLOR_GREEN_50, GL_COLOR_GREEN_500, GL_COLOR_GREEN_600, GL_COLOR_GREEN_700, GL_COLOR_GREEN_800, GL_COLOR_GREEN_900, GL_COLOR_GREEN_950, GL_COLOR_NEUTRAL_0, GL_COLOR_NEUTRAL_10, GL_COLOR_NEUTRAL_100, GL_COLOR_NEUTRAL_1000, GL_COLOR_NEUTRAL_200, GL_COLOR_NEUTRAL_300, GL_COLOR_NEUTRAL_400, GL_COLOR_NEUTRAL_50, GL_COLOR_NEUTRAL_500, GL_COLOR_NEUTRAL_600, GL_COLOR_NEUTRAL_700, GL_COLOR_NEUTRAL_800, GL_COLOR_NEUTRAL_900, GL_COLOR_NEUTRAL_950, GL_COLOR_ORANGE_100, GL_COLOR_ORANGE_200, GL_COLOR_ORANGE_300, GL_COLOR_ORANGE_400, GL_COLOR_ORANGE_50, GL_COLOR_ORANGE_500, GL_COLOR_ORANGE_600, GL_COLOR_ORANGE_700, GL_COLOR_ORANGE_800, GL_COLOR_ORANGE_900, GL_COLOR_ORANGE_950, GL_COLOR_PURPLE_100, GL_COLOR_PURPLE_200, GL_COLOR_PURPLE_300, GL_COLOR_PURPLE_400, GL_COLOR_PURPLE_50, GL_COLOR_PURPLE_500, GL_COLOR_PURPLE_600, GL_COLOR_PURPLE_700, GL_COLOR_PURPLE_800, GL_COLOR_PURPLE_900, GL_COLOR_PURPLE_950, GL_COLOR_RED_100, GL_COLOR_RED_200, GL_COLOR_RED_300, GL_COLOR_RED_400, GL_COLOR_RED_50, GL_COLOR_RED_500, GL_COLOR_RED_600, GL_COLOR_RED_700, GL_COLOR_RED_800, GL_COLOR_RED_900, GL_COLOR_RED_950, GL_COLOR_THEME_BLUE_10, GL_COLOR_THEME_BLUE_100, GL_COLOR_THEME_BLUE_200, GL_COLOR_THEME_BLUE_300, GL_COLOR_THEME_BLUE_400, GL_COLOR_THEME_BLUE_50, GL_COLOR_THEME_BLUE_500, GL_COLOR_THEME_BLUE_600, GL_COLOR_THEME_BLUE_700, GL_COLOR_THEME_BLUE_800, GL_COLOR_THEME_BLUE_900, GL_COLOR_THEME_BLUE_950, GL_COLOR_THEME_GREEN_10, GL_COLOR_THEME_GREEN_100, GL_COLOR_THEME_GREEN_200, GL_COLOR_THEME_GREEN_300, GL_COLOR_THEME_GREEN_400, GL_COLOR_THEME_GREEN_50, GL_COLOR_THEME_GREEN_500, GL_COLOR_THEME_GREEN_600, GL_COLOR_THEME_GREEN_700, GL_COLOR_THEME_GREEN_800, GL_COLOR_THEME_GREEN_900, GL_COLOR_THEME_GREEN_950, GL_COLOR_THEME_INDIGO_10, GL_COLOR_THEME_INDIGO_100, GL_COLOR_THEME_INDIGO_200, GL_COLOR_THEME_INDIGO_300, GL_COLOR_THEME_INDIGO_400, GL_COLOR_THEME_INDIGO_50, GL_COLOR_THEME_INDIGO_500, GL_COLOR_THEME_INDIGO_600, GL_COLOR_THEME_INDIGO_700, GL_COLOR_THEME_INDIGO_800, GL_COLOR_THEME_INDIGO_900, GL_COLOR_THEME_INDIGO_950, GL_COLOR_THEME_LIGHT_BLUE_10, GL_COLOR_THEME_LIGHT_BLUE_100, GL_COLOR_THEME_LIGHT_BLUE_200, GL_COLOR_THEME_LIGHT_BLUE_300, GL_COLOR_THEME_LIGHT_BLUE_400, GL_COLOR_THEME_LIGHT_BLUE_50, GL_COLOR_THEME_LIGHT_BLUE_500, GL_COLOR_THEME_LIGHT_BLUE_600, GL_COLOR_THEME_LIGHT_BLUE_700, GL_COLOR_THEME_LIGHT_BLUE_800, GL_COLOR_THEME_LIGHT_BLUE_900, GL_COLOR_THEME_LIGHT_BLUE_950, GL_COLOR_THEME_LIGHT_RED_10, GL_COLOR_THEME_LIGHT_RED_100, GL_COLOR_THEME_LIGHT_RED_200, GL_COLOR_THEME_LIGHT_RED_300, GL_COLOR_THEME_LIGHT_RED_400, GL_COLOR_THEME_LIGHT_RED_50, GL_COLOR_THEME_LIGHT_RED_500, GL_COLOR_THEME_LIGHT_RED_600, GL_COLOR_THEME_LIGHT_RED_700, GL_COLOR_THEME_LIGHT_RED_800, GL_COLOR_THEME_LIGHT_RED_900, GL_COLOR_THEME_LIGHT_RED_950, GL_COLOR_THEME_RED_10, GL_COLOR_THEME_RED_100, GL_COLOR_THEME_RED_200, GL_COLOR_THEME_RED_300, GL_COLOR_THEME_RED_400, GL_COLOR_THEME_RED_50, GL_COLOR_THEME_RED_500, GL_COLOR_THEME_RED_600, GL_COLOR_THEME_RED_700, GL_COLOR_THEME_RED_800, GL_COLOR_THEME_RED_900, GL_COLOR_THEME_RED_950, GL_ICON_COLOR_DANGER, GL_ICON_COLOR_DEFAULT, GL_ICON_COLOR_DISABLED, GL_ICON_COLOR_INFO, GL_ICON_COLOR_LINK, GL_ICON_COLOR_STRONG, GL_ICON_COLOR_SUBTLE, GL_ICON_COLOR_SUCCESS, GL_ICON_COLOR_WARNING, GL_LINE_HEIGHT_12, GL_LINE_HEIGHT_16, GL_LINE_HEIGHT_20, GL_LINE_HEIGHT_24, GL_LINE_HEIGHT_28, GL_LINE_HEIGHT_32, GL_LINE_HEIGHT_36, GL_LINE_HEIGHT_42, GL_LINE_HEIGHT_44, GL_LINE_HEIGHT_52, GL_TEXT_COLOR_DANGER, GL_TEXT_COLOR_DEFAULT, GL_TEXT_COLOR_DISABLED, GL_TEXT_COLOR_HEADING, GL_TEXT_COLOR_LINK, GL_TEXT_COLOR_STRONG, GL_TEXT_COLOR_SUBTLE, GL_TEXT_COLOR_SUCCESS, GL_TEXT_PRIMARY, GL_TEXT_SECONDARY, GL_TEXT_TERTIARY, GRAY_10, GRAY_100, GRAY_200, GRAY_300, GRAY_400, GRAY_50, GRAY_500, GRAY_600, GRAY_700, GRAY_800, GRAY_900, GRAY_950, GREEN_100, GREEN_200, GREEN_300, GREEN_400, GREEN_50, GREEN_500, GREEN_600, GREEN_700, GREEN_800, GREEN_900, GREEN_950, ORANGE_100, ORANGE_200, ORANGE_300, ORANGE_400, ORANGE_50, ORANGE_500, ORANGE_600, ORANGE_700, ORANGE_800, ORANGE_900, ORANGE_950, PURPLE_100, PURPLE_200, PURPLE_300, PURPLE_400, PURPLE_50, PURPLE_500, PURPLE_600, PURPLE_700, PURPLE_800, PURPLE_900, PURPLE_950, RED_100, RED_200, RED_300, RED_400, RED_50, RED_500, RED_600, RED_700, RED_800, RED_900, RED_950, THEME_BLUE_10, THEME_BLUE_100, THEME_BLUE_200, THEME_BLUE_300, THEME_BLUE_400, THEME_BLUE_50, THEME_BLUE_500, THEME_BLUE_600, THEME_BLUE_700, THEME_BLUE_800, THEME_BLUE_900, THEME_BLUE_950, THEME_GREEN_10, THEME_GREEN_100, THEME_GREEN_200, THEME_GREEN_300, THEME_GREEN_400, THEME_GREEN_50, THEME_GREEN_500, THEME_GREEN_600, THEME_GREEN_700, THEME_GREEN_800, THEME_GREEN_900, THEME_GREEN_950, THEME_INDIGO_10, THEME_INDIGO_100, THEME_INDIGO_200, THEME_INDIGO_300, THEME_INDIGO_400, THEME_INDIGO_50, THEME_INDIGO_500, THEME_INDIGO_600, THEME_INDIGO_700, THEME_INDIGO_800, THEME_INDIGO_900, THEME_INDIGO_950, THEME_LIGHT_BLUE_10, THEME_LIGHT_BLUE_100, THEME_LIGHT_BLUE_200, THEME_LIGHT_BLUE_300, THEME_LIGHT_BLUE_400, THEME_LIGHT_BLUE_50, THEME_LIGHT_BLUE_500, THEME_LIGHT_BLUE_600, THEME_LIGHT_BLUE_700, THEME_LIGHT_BLUE_800, THEME_LIGHT_BLUE_900, THEME_LIGHT_BLUE_950, THEME_LIGHT_RED_10, THEME_LIGHT_RED_100, THEME_LIGHT_RED_200, THEME_LIGHT_RED_300, THEME_LIGHT_RED_400, THEME_LIGHT_RED_50, THEME_LIGHT_RED_500, THEME_LIGHT_RED_600, THEME_LIGHT_RED_700, THEME_LIGHT_RED_800, THEME_LIGHT_RED_900, THEME_LIGHT_RED_950, THEME_RED_10, THEME_RED_100, THEME_RED_200, THEME_RED_300, THEME_RED_400, THEME_RED_50, THEME_RED_500, THEME_RED_600, THEME_RED_700, THEME_RED_800, THEME_RED_900, THEME_RED_950, T_GRAY_A_02, T_GRAY_A_04, T_GRAY_A_06, T_GRAY_A_08, T_GRAY_A_16, T_GRAY_A_24, T_WHITE_A_02, T_WHITE_A_04, T_WHITE_A_06, T_WHITE_A_08, T_WHITE_A_16, T_WHITE_A_24, T_WHITE_A_36, WHITE };
@@ -237,6 +237,78 @@
237
237
  --data-viz-green-200: #b0d97b;
238
238
  --data-viz-green-100: #c6ed94;
239
239
  --data-viz-green-50: #ddfab7;
240
+ --gl-color-theme-light-red-950: #5c1105;
241
+ --gl-color-theme-light-red-900: #751709;
242
+ --gl-color-theme-light-red-800: #8b2212;
243
+ --gl-color-theme-light-red-700: #a02e1c;
244
+ --gl-color-theme-light-red-600: #b53a26;
245
+ --gl-color-theme-light-red-500: #c24b38;
246
+ --gl-color-theme-light-red-400: #d36250;
247
+ --gl-color-theme-light-red-300: #e07f6f;
248
+ --gl-color-theme-light-red-200: #ebada2;
249
+ --gl-color-theme-light-red-100: #f6d9d5;
250
+ --gl-color-theme-light-red-50: #faf2f1;
251
+ --gl-color-theme-light-red-10: #fdf9f8;
252
+ --gl-color-theme-red-950: #380700;
253
+ --gl-color-theme-red-900: #580d02;
254
+ --gl-color-theme-red-800: #761405;
255
+ --gl-color-theme-red-700: #8f2110;
256
+ --gl-color-theme-red-600: #a13322;
257
+ --gl-color-theme-red-500: #ad4a3b;
258
+ --gl-color-theme-red-400: #c66e60;
259
+ --gl-color-theme-red-300: #d59086;
260
+ --gl-color-theme-red-200: #e3bab5;
261
+ --gl-color-theme-red-100: #ecd3d0;
262
+ --gl-color-theme-red-50: #f4e9e7;
263
+ --gl-color-theme-red-10: #faf4f3;
264
+ --gl-color-theme-green-950: #052e19;
265
+ --gl-color-theme-green-900: #0e4328;
266
+ --gl-color-theme-green-800: #155635;
267
+ --gl-color-theme-green-700: #1b653f;
268
+ --gl-color-theme-green-600: #25744c;
269
+ --gl-color-theme-green-500: #308258;
270
+ --gl-color-theme-green-400: #499767;
271
+ --gl-color-theme-green-300: #69af7d;
272
+ --gl-color-theme-green-200: #8cc497;
273
+ --gl-color-theme-green-100: #b1d6b5;
274
+ --gl-color-theme-green-50: #dde9de;
275
+ --gl-color-theme-green-10: #eef4ef;
276
+ --gl-color-theme-light-blue-950: #0a3764;
277
+ --gl-color-theme-light-blue-900: #0c4277;
278
+ --gl-color-theme-light-blue-800: #0e4d8d;
279
+ --gl-color-theme-light-blue-700: #145aa1;
280
+ --gl-color-theme-light-blue-600: #2268ae;
281
+ --gl-color-theme-light-blue-500: #3476b9;
282
+ --gl-color-theme-light-blue-400: #4f8bc7;
283
+ --gl-color-theme-light-blue-300: #74a3d3;
284
+ --gl-color-theme-light-blue-200: #a0bedc;
285
+ --gl-color-theme-light-blue-100: #c1d4e6;
286
+ --gl-color-theme-light-blue-50: #dde6ee;
287
+ --gl-color-theme-light-blue-10: #eef3f7;
288
+ --gl-color-theme-blue-950: #04101c;
289
+ --gl-color-theme-blue-900: #0b2640;
290
+ --gl-color-theme-blue-800: #153c63;
291
+ --gl-color-theme-blue-700: #235180;
292
+ --gl-color-theme-blue-600: #346596;
293
+ --gl-color-theme-blue-500: #4977a5;
294
+ --gl-color-theme-blue-400: #628eb9;
295
+ --gl-color-theme-blue-300: #81a5c9;
296
+ --gl-color-theme-blue-200: #a6bdd5;
297
+ --gl-color-theme-blue-100: #b9cadc;
298
+ --gl-color-theme-blue-50: #cdd8e3;
299
+ --gl-color-theme-blue-10: #e6ecf0;
300
+ --gl-color-theme-indigo-950: #14143d;
301
+ --gl-color-theme-indigo-900: #222261;
302
+ --gl-color-theme-indigo-800: #303083;
303
+ --gl-color-theme-indigo-700: #41419f;
304
+ --gl-color-theme-indigo-600: #5252b5;
305
+ --gl-color-theme-indigo-500: #6666c4;
306
+ --gl-color-theme-indigo-400: #8181d7;
307
+ --gl-color-theme-indigo-300: #a2a2e6;
308
+ --gl-color-theme-indigo-200: #c7c7f2;
309
+ --gl-color-theme-indigo-100: #dbdbf8;
310
+ --gl-color-theme-indigo-50: #f1f1ff;
311
+ --gl-color-theme-indigo-10: #f8f8ff;
240
312
  --gl-color-red-950: #4d0a00;
241
313
  --gl-color-red-900: #660e00;
242
314
  --gl-color-red-800: #8d1300;
@@ -237,6 +237,78 @@
237
237
  --data-viz-green-200: #275600;
238
238
  --data-viz-green-100: #1a4500;
239
239
  --data-viz-green-50: #133a03;
240
+ --gl-color-theme-light-red-950: #5c1105;
241
+ --gl-color-theme-light-red-900: #751709;
242
+ --gl-color-theme-light-red-800: #8b2212;
243
+ --gl-color-theme-light-red-700: #a02e1c;
244
+ --gl-color-theme-light-red-600: #b53a26;
245
+ --gl-color-theme-light-red-500: #c24b38;
246
+ --gl-color-theme-light-red-400: #d36250;
247
+ --gl-color-theme-light-red-300: #e07f6f;
248
+ --gl-color-theme-light-red-200: #ebada2;
249
+ --gl-color-theme-light-red-100: #f6d9d5;
250
+ --gl-color-theme-light-red-50: #faf2f1;
251
+ --gl-color-theme-light-red-10: #fdf9f8;
252
+ --gl-color-theme-red-950: #380700;
253
+ --gl-color-theme-red-900: #580d02;
254
+ --gl-color-theme-red-800: #761405;
255
+ --gl-color-theme-red-700: #8f2110;
256
+ --gl-color-theme-red-600: #a13322;
257
+ --gl-color-theme-red-500: #ad4a3b;
258
+ --gl-color-theme-red-400: #c66e60;
259
+ --gl-color-theme-red-300: #d59086;
260
+ --gl-color-theme-red-200: #e3bab5;
261
+ --gl-color-theme-red-100: #ecd3d0;
262
+ --gl-color-theme-red-50: #f4e9e7;
263
+ --gl-color-theme-red-10: #faf4f3;
264
+ --gl-color-theme-green-950: #052e19;
265
+ --gl-color-theme-green-900: #0e4328;
266
+ --gl-color-theme-green-800: #155635;
267
+ --gl-color-theme-green-700: #1b653f;
268
+ --gl-color-theme-green-600: #25744c;
269
+ --gl-color-theme-green-500: #308258;
270
+ --gl-color-theme-green-400: #499767;
271
+ --gl-color-theme-green-300: #69af7d;
272
+ --gl-color-theme-green-200: #8cc497;
273
+ --gl-color-theme-green-100: #b1d6b5;
274
+ --gl-color-theme-green-50: #dde9de;
275
+ --gl-color-theme-green-10: #eef4ef;
276
+ --gl-color-theme-light-blue-950: #0a3764;
277
+ --gl-color-theme-light-blue-900: #0c4277;
278
+ --gl-color-theme-light-blue-800: #0e4d8d;
279
+ --gl-color-theme-light-blue-700: #145aa1;
280
+ --gl-color-theme-light-blue-600: #2268ae;
281
+ --gl-color-theme-light-blue-500: #3476b9;
282
+ --gl-color-theme-light-blue-400: #4f8bc7;
283
+ --gl-color-theme-light-blue-300: #74a3d3;
284
+ --gl-color-theme-light-blue-200: #a0bedc;
285
+ --gl-color-theme-light-blue-100: #c1d4e6;
286
+ --gl-color-theme-light-blue-50: #dde6ee;
287
+ --gl-color-theme-light-blue-10: #eef3f7;
288
+ --gl-color-theme-blue-950: #04101c;
289
+ --gl-color-theme-blue-900: #0b2640;
290
+ --gl-color-theme-blue-800: #153c63;
291
+ --gl-color-theme-blue-700: #235180;
292
+ --gl-color-theme-blue-600: #346596;
293
+ --gl-color-theme-blue-500: #4977a5;
294
+ --gl-color-theme-blue-400: #628eb9;
295
+ --gl-color-theme-blue-300: #81a5c9;
296
+ --gl-color-theme-blue-200: #a6bdd5;
297
+ --gl-color-theme-blue-100: #b9cadc;
298
+ --gl-color-theme-blue-50: #cdd8e3;
299
+ --gl-color-theme-blue-10: #e6ecf0;
300
+ --gl-color-theme-indigo-950: #14143d;
301
+ --gl-color-theme-indigo-900: #222261;
302
+ --gl-color-theme-indigo-800: #303083;
303
+ --gl-color-theme-indigo-700: #41419f;
304
+ --gl-color-theme-indigo-600: #5252b5;
305
+ --gl-color-theme-indigo-500: #6666c4;
306
+ --gl-color-theme-indigo-400: #8181d7;
307
+ --gl-color-theme-indigo-300: #a2a2e6;
308
+ --gl-color-theme-indigo-200: #c7c7f2;
309
+ --gl-color-theme-indigo-100: #dbdbf8;
310
+ --gl-color-theme-indigo-50: #f1f1ff;
311
+ --gl-color-theme-indigo-10: #f8f8ff;
240
312
  --gl-color-red-950: #4d0a00;
241
313
  --gl-color-red-900: #660e00;
242
314
  --gl-color-red-800: #8d1300;
@@ -94,6 +94,78 @@ export const GL_COLOR_RED_700 = '#ae1800';
94
94
  export const GL_COLOR_RED_800 = '#8d1300';
95
95
  export const GL_COLOR_RED_900 = '#660e00';
96
96
  export const GL_COLOR_RED_950 = '#4d0a00';
97
+ export const GL_COLOR_THEME_INDIGO_10 = '#f8f8ff';
98
+ export const GL_COLOR_THEME_INDIGO_50 = '#f1f1ff';
99
+ export const GL_COLOR_THEME_INDIGO_100 = '#dbdbf8';
100
+ export const GL_COLOR_THEME_INDIGO_200 = '#c7c7f2';
101
+ export const GL_COLOR_THEME_INDIGO_300 = '#a2a2e6';
102
+ export const GL_COLOR_THEME_INDIGO_400 = '#8181d7';
103
+ export const GL_COLOR_THEME_INDIGO_500 = '#6666c4';
104
+ export const GL_COLOR_THEME_INDIGO_600 = '#5252b5';
105
+ export const GL_COLOR_THEME_INDIGO_700 = '#41419f';
106
+ export const GL_COLOR_THEME_INDIGO_800 = '#303083';
107
+ export const GL_COLOR_THEME_INDIGO_900 = '#222261';
108
+ export const GL_COLOR_THEME_INDIGO_950 = '#14143d';
109
+ export const GL_COLOR_THEME_BLUE_10 = '#e6ecf0';
110
+ export const GL_COLOR_THEME_BLUE_50 = '#cdd8e3';
111
+ export const GL_COLOR_THEME_BLUE_100 = '#b9cadc';
112
+ export const GL_COLOR_THEME_BLUE_200 = '#a6bdd5';
113
+ export const GL_COLOR_THEME_BLUE_300 = '#81a5c9';
114
+ export const GL_COLOR_THEME_BLUE_400 = '#628eb9';
115
+ export const GL_COLOR_THEME_BLUE_500 = '#4977a5';
116
+ export const GL_COLOR_THEME_BLUE_600 = '#346596';
117
+ export const GL_COLOR_THEME_BLUE_700 = '#235180';
118
+ export const GL_COLOR_THEME_BLUE_800 = '#153c63';
119
+ export const GL_COLOR_THEME_BLUE_900 = '#0b2640';
120
+ export const GL_COLOR_THEME_BLUE_950 = '#04101c';
121
+ export const GL_COLOR_THEME_LIGHT_BLUE_10 = '#eef3f7';
122
+ export const GL_COLOR_THEME_LIGHT_BLUE_50 = '#dde6ee';
123
+ export const GL_COLOR_THEME_LIGHT_BLUE_100 = '#c1d4e6';
124
+ export const GL_COLOR_THEME_LIGHT_BLUE_200 = '#a0bedc';
125
+ export const GL_COLOR_THEME_LIGHT_BLUE_300 = '#74a3d3';
126
+ export const GL_COLOR_THEME_LIGHT_BLUE_400 = '#4f8bc7';
127
+ export const GL_COLOR_THEME_LIGHT_BLUE_500 = '#3476b9';
128
+ export const GL_COLOR_THEME_LIGHT_BLUE_600 = '#2268ae';
129
+ export const GL_COLOR_THEME_LIGHT_BLUE_700 = '#145aa1';
130
+ export const GL_COLOR_THEME_LIGHT_BLUE_800 = '#0e4d8d';
131
+ export const GL_COLOR_THEME_LIGHT_BLUE_900 = '#0c4277';
132
+ export const GL_COLOR_THEME_LIGHT_BLUE_950 = '#0a3764';
133
+ export const GL_COLOR_THEME_GREEN_10 = '#eef4ef';
134
+ export const GL_COLOR_THEME_GREEN_50 = '#dde9de';
135
+ export const GL_COLOR_THEME_GREEN_100 = '#b1d6b5';
136
+ export const GL_COLOR_THEME_GREEN_200 = '#8cc497';
137
+ export const GL_COLOR_THEME_GREEN_300 = '#69af7d';
138
+ export const GL_COLOR_THEME_GREEN_400 = '#499767';
139
+ export const GL_COLOR_THEME_GREEN_500 = '#308258';
140
+ export const GL_COLOR_THEME_GREEN_600 = '#25744c';
141
+ export const GL_COLOR_THEME_GREEN_700 = '#1b653f';
142
+ export const GL_COLOR_THEME_GREEN_800 = '#155635';
143
+ export const GL_COLOR_THEME_GREEN_900 = '#0e4328';
144
+ export const GL_COLOR_THEME_GREEN_950 = '#052e19';
145
+ export const GL_COLOR_THEME_RED_10 = '#faf4f3';
146
+ export const GL_COLOR_THEME_RED_50 = '#f4e9e7';
147
+ export const GL_COLOR_THEME_RED_100 = '#ecd3d0';
148
+ export const GL_COLOR_THEME_RED_200 = '#e3bab5';
149
+ export const GL_COLOR_THEME_RED_300 = '#d59086';
150
+ export const GL_COLOR_THEME_RED_400 = '#c66e60';
151
+ export const GL_COLOR_THEME_RED_500 = '#ad4a3b';
152
+ export const GL_COLOR_THEME_RED_600 = '#a13322';
153
+ export const GL_COLOR_THEME_RED_700 = '#8f2110';
154
+ export const GL_COLOR_THEME_RED_800 = '#761405';
155
+ export const GL_COLOR_THEME_RED_900 = '#580d02';
156
+ export const GL_COLOR_THEME_RED_950 = '#380700';
157
+ export const GL_COLOR_THEME_LIGHT_RED_10 = '#fdf9f8';
158
+ export const GL_COLOR_THEME_LIGHT_RED_50 = '#faf2f1';
159
+ export const GL_COLOR_THEME_LIGHT_RED_100 = '#f6d9d5';
160
+ export const GL_COLOR_THEME_LIGHT_RED_200 = '#ebada2';
161
+ export const GL_COLOR_THEME_LIGHT_RED_300 = '#e07f6f';
162
+ export const GL_COLOR_THEME_LIGHT_RED_400 = '#d36250';
163
+ export const GL_COLOR_THEME_LIGHT_RED_500 = '#c24b38';
164
+ export const GL_COLOR_THEME_LIGHT_RED_600 = '#b53a26';
165
+ export const GL_COLOR_THEME_LIGHT_RED_700 = '#a02e1c';
166
+ export const GL_COLOR_THEME_LIGHT_RED_800 = '#8b2212';
167
+ export const GL_COLOR_THEME_LIGHT_RED_900 = '#751709';
168
+ export const GL_COLOR_THEME_LIGHT_RED_950 = '#5c1105';
97
169
  export const DATA_VIZ_GREEN_50 = '#133a03';
98
170
  export const DATA_VIZ_GREEN_100 = '#1a4500';
99
171
  export const DATA_VIZ_GREEN_200 = '#275600';
@@ -94,6 +94,78 @@ export const GL_COLOR_RED_700 = '#ae1800';
94
94
  export const GL_COLOR_RED_800 = '#8d1300';
95
95
  export const GL_COLOR_RED_900 = '#660e00';
96
96
  export const GL_COLOR_RED_950 = '#4d0a00';
97
+ export const GL_COLOR_THEME_INDIGO_10 = '#f8f8ff';
98
+ export const GL_COLOR_THEME_INDIGO_50 = '#f1f1ff';
99
+ export const GL_COLOR_THEME_INDIGO_100 = '#dbdbf8';
100
+ export const GL_COLOR_THEME_INDIGO_200 = '#c7c7f2';
101
+ export const GL_COLOR_THEME_INDIGO_300 = '#a2a2e6';
102
+ export const GL_COLOR_THEME_INDIGO_400 = '#8181d7';
103
+ export const GL_COLOR_THEME_INDIGO_500 = '#6666c4';
104
+ export const GL_COLOR_THEME_INDIGO_600 = '#5252b5';
105
+ export const GL_COLOR_THEME_INDIGO_700 = '#41419f';
106
+ export const GL_COLOR_THEME_INDIGO_800 = '#303083';
107
+ export const GL_COLOR_THEME_INDIGO_900 = '#222261';
108
+ export const GL_COLOR_THEME_INDIGO_950 = '#14143d';
109
+ export const GL_COLOR_THEME_BLUE_10 = '#e6ecf0';
110
+ export const GL_COLOR_THEME_BLUE_50 = '#cdd8e3';
111
+ export const GL_COLOR_THEME_BLUE_100 = '#b9cadc';
112
+ export const GL_COLOR_THEME_BLUE_200 = '#a6bdd5';
113
+ export const GL_COLOR_THEME_BLUE_300 = '#81a5c9';
114
+ export const GL_COLOR_THEME_BLUE_400 = '#628eb9';
115
+ export const GL_COLOR_THEME_BLUE_500 = '#4977a5';
116
+ export const GL_COLOR_THEME_BLUE_600 = '#346596';
117
+ export const GL_COLOR_THEME_BLUE_700 = '#235180';
118
+ export const GL_COLOR_THEME_BLUE_800 = '#153c63';
119
+ export const GL_COLOR_THEME_BLUE_900 = '#0b2640';
120
+ export const GL_COLOR_THEME_BLUE_950 = '#04101c';
121
+ export const GL_COLOR_THEME_LIGHT_BLUE_10 = '#eef3f7';
122
+ export const GL_COLOR_THEME_LIGHT_BLUE_50 = '#dde6ee';
123
+ export const GL_COLOR_THEME_LIGHT_BLUE_100 = '#c1d4e6';
124
+ export const GL_COLOR_THEME_LIGHT_BLUE_200 = '#a0bedc';
125
+ export const GL_COLOR_THEME_LIGHT_BLUE_300 = '#74a3d3';
126
+ export const GL_COLOR_THEME_LIGHT_BLUE_400 = '#4f8bc7';
127
+ export const GL_COLOR_THEME_LIGHT_BLUE_500 = '#3476b9';
128
+ export const GL_COLOR_THEME_LIGHT_BLUE_600 = '#2268ae';
129
+ export const GL_COLOR_THEME_LIGHT_BLUE_700 = '#145aa1';
130
+ export const GL_COLOR_THEME_LIGHT_BLUE_800 = '#0e4d8d';
131
+ export const GL_COLOR_THEME_LIGHT_BLUE_900 = '#0c4277';
132
+ export const GL_COLOR_THEME_LIGHT_BLUE_950 = '#0a3764';
133
+ export const GL_COLOR_THEME_GREEN_10 = '#eef4ef';
134
+ export const GL_COLOR_THEME_GREEN_50 = '#dde9de';
135
+ export const GL_COLOR_THEME_GREEN_100 = '#b1d6b5';
136
+ export const GL_COLOR_THEME_GREEN_200 = '#8cc497';
137
+ export const GL_COLOR_THEME_GREEN_300 = '#69af7d';
138
+ export const GL_COLOR_THEME_GREEN_400 = '#499767';
139
+ export const GL_COLOR_THEME_GREEN_500 = '#308258';
140
+ export const GL_COLOR_THEME_GREEN_600 = '#25744c';
141
+ export const GL_COLOR_THEME_GREEN_700 = '#1b653f';
142
+ export const GL_COLOR_THEME_GREEN_800 = '#155635';
143
+ export const GL_COLOR_THEME_GREEN_900 = '#0e4328';
144
+ export const GL_COLOR_THEME_GREEN_950 = '#052e19';
145
+ export const GL_COLOR_THEME_RED_10 = '#faf4f3';
146
+ export const GL_COLOR_THEME_RED_50 = '#f4e9e7';
147
+ export const GL_COLOR_THEME_RED_100 = '#ecd3d0';
148
+ export const GL_COLOR_THEME_RED_200 = '#e3bab5';
149
+ export const GL_COLOR_THEME_RED_300 = '#d59086';
150
+ export const GL_COLOR_THEME_RED_400 = '#c66e60';
151
+ export const GL_COLOR_THEME_RED_500 = '#ad4a3b';
152
+ export const GL_COLOR_THEME_RED_600 = '#a13322';
153
+ export const GL_COLOR_THEME_RED_700 = '#8f2110';
154
+ export const GL_COLOR_THEME_RED_800 = '#761405';
155
+ export const GL_COLOR_THEME_RED_900 = '#580d02';
156
+ export const GL_COLOR_THEME_RED_950 = '#380700';
157
+ export const GL_COLOR_THEME_LIGHT_RED_10 = '#fdf9f8';
158
+ export const GL_COLOR_THEME_LIGHT_RED_50 = '#faf2f1';
159
+ export const GL_COLOR_THEME_LIGHT_RED_100 = '#f6d9d5';
160
+ export const GL_COLOR_THEME_LIGHT_RED_200 = '#ebada2';
161
+ export const GL_COLOR_THEME_LIGHT_RED_300 = '#e07f6f';
162
+ export const GL_COLOR_THEME_LIGHT_RED_400 = '#d36250';
163
+ export const GL_COLOR_THEME_LIGHT_RED_500 = '#c24b38';
164
+ export const GL_COLOR_THEME_LIGHT_RED_600 = '#b53a26';
165
+ export const GL_COLOR_THEME_LIGHT_RED_700 = '#a02e1c';
166
+ export const GL_COLOR_THEME_LIGHT_RED_800 = '#8b2212';
167
+ export const GL_COLOR_THEME_LIGHT_RED_900 = '#751709';
168
+ export const GL_COLOR_THEME_LIGHT_RED_950 = '#5c1105';
97
169
  export const DATA_VIZ_GREEN_50 = '#ddfab7';
98
170
  export const DATA_VIZ_GREEN_100 = '#c6ed94';
99
171
  export const DATA_VIZ_GREEN_200 = '#b0d97b';