@gitlab/ui 87.5.1 → 87.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +77 -77
- package/dist/tokens/build/js/tokens.js +77 -77
- package/dist/tokens/css/tokens.css +27 -27
- package/dist/tokens/css/tokens.dark.css +27 -27
- package/dist/tokens/js/tokens.dark.js +77 -77
- package/dist/tokens/js/tokens.js +77 -77
- package/dist/tokens/json/tokens.dark.json +4318 -3988
- package/dist/tokens/json/tokens.json +4318 -3988
- package/dist/tokens/scss/_tokens.dark.scss +27 -27
- package/dist/tokens/scss/_tokens.scss +27 -27
- package/dist/tokens/scss/_tokens_custom_properties.scss +50 -50
- package/package.json +1 -1
- package/src/components/base/breadcrumb/breadcrumb.scss +13 -1
- package/src/tokens/build/css/tokens.css +27 -27
- package/src/tokens/build/css/tokens.dark.css +27 -27
- package/src/tokens/build/js/tokens.dark.js +77 -77
- package/src/tokens/build/js/tokens.js +77 -77
- package/src/tokens/build/json/tokens.dark.json +4318 -3988
- package/src/tokens/build/json/tokens.json +4318 -3988
- package/src/tokens/build/scss/_tokens.dark.scss +27 -27
- package/src/tokens/build/scss/_tokens.scss +27 -27
- package/src/tokens/build/scss/_tokens_custom_properties.scss +50 -50
- package/src/tokens/{color.theme.tokens.json → deprecated.color.theme.tokens.json} +144 -72
- package/src/tokens/{color.tokens.json → deprecated.color.tokens.json} +155 -75
- package/src/tokens/{color.transparency.tokens.json → deprecated.color.transparency.tokens.json} +13 -0
- package/src/tokens/text.tokens.json +3 -3
|
@@ -276,6 +276,56 @@ const DATA_VIZ_ORANGE_700 = '#e99b60';
|
|
|
276
276
|
const DATA_VIZ_ORANGE_800 = '#eebd8c';
|
|
277
277
|
const DATA_VIZ_ORANGE_900 = '#f5d6b3';
|
|
278
278
|
const DATA_VIZ_ORANGE_950 = '#fae8d1';
|
|
279
|
+
const GL_AVATAR_BORDER_COLOR_DEFAULT = 'rgba(05, 05, 06, 0.08)'; // Used to define the edge of an avatar.
|
|
280
|
+
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.
|
|
281
|
+
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_RED = '#660e00'; // Red background for avatar fallback with no particular meaning.
|
|
282
|
+
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_PURPLE = '#232150'; // Purple background for avatar fallback with no particular meaning.
|
|
283
|
+
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_BLUE = '#033464'; // Blue background for avatar fallback with no particular meaning.
|
|
284
|
+
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_GREEN = '#0a4020'; // Green background for avatar fallback with no particular meaning.
|
|
285
|
+
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_ORANGE = '#5c2900'; // Orange background for avatar fallback with no particular meaning.
|
|
286
|
+
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_NEUTRAL = '#28272d'; // Neutral background for avatar fallback with no particular meaning.
|
|
287
|
+
const GL_BANNER_INTRO_BORDER_COLOR = '#1068bf'; // Used to compliment the info banner.
|
|
288
|
+
const GL_BANNER_PROMO_BACKGROUND_COLOR = '#28272d'; // Used as background for the default banner type.
|
|
289
|
+
const GL_BREADCRUMB_SEPARATOR_COLOR = '#89888d'; // Used for the breadcrumb level separator.
|
|
290
|
+
const GL_LABEL_LIGHT_TEXT_COLOR = '#18171d'; // Used for the label text color on a light background color.
|
|
291
|
+
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.
|
|
292
|
+
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.
|
|
293
|
+
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.
|
|
294
|
+
const GL_LABEL_DARK_TEXT_COLOR = '#fff'; // Used for the label text color on a dark background color.
|
|
295
|
+
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.
|
|
296
|
+
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.
|
|
297
|
+
const GL_LABEL_DARK_BUTTON_ICON_COLOR_DEFAULT = '#fff'; // Used for the label remove button icon on a dark background color in the default state.
|
|
298
|
+
const GL_LABEL_SCOPED_TEXT_COLOR = '#fff'; // Used for the scoped label text color.
|
|
299
|
+
const GL_LABEL_SCOPED_BUTTON_BACKGROUND_COLOR_HOVER = '#fff'; // Used for the scoped label remove button background in the hover state.
|
|
300
|
+
const GL_LABEL_SCOPED_BUTTON_ICON_COLOR_DEFAULT = '#fff'; // Used for the scoped label remove button icon in the default state.
|
|
301
|
+
const GL_LABEL_SCOPED_BUTTON_ICON_COLOR_HOVER = '#18171d'; // Used for the scoped label remove button icon in the hover state.
|
|
302
|
+
const GL_POPOVER_BACKGROUND_COLOR = '#28272d'; // Used for the background color of popover.
|
|
303
|
+
const GL_SKELETON_LOADER_BACKGROUND_COLOR = '#3a383f'; // Used for the skeleton loader background color.
|
|
304
|
+
const GL_SKELETON_LOADER_SHIMMER_COLOR = '#4c4b51'; // Used for the animated shimmer effect in a skeleton loader.
|
|
305
|
+
const GL_SPINNER_TRACK_COLOR_DEFAULT = '#3a383f'; // Used for the static track (background) of a loading spinner.
|
|
306
|
+
const GL_SPINNER_TRACK_COLOR_LIGHT = '#3a383f'; // Used for the static track (background) of a loading spinner on a dark background.
|
|
307
|
+
const GL_SPINNER_SEGMENT_COLOR_DEFAULT = '#bfbfc3'; // Used for the animated segment of a loading spinner.
|
|
308
|
+
const GL_SPINNER_SEGMENT_COLOR_LIGHT = '#bfbfc3'; // Used for the animated segment of a loading spinner on a dark background.
|
|
309
|
+
const GL_TABLE_ROW_BACKGROUND_COLOR_HOVER = '#28272d'; // Used for the background of a table row in hover state.
|
|
310
|
+
const GL_TABLE_SORTING_ICON_COLOR = '#fff'; // Used for the color of the sorting icons in the column headers.
|
|
311
|
+
const GL_CONTROL_BACKGROUND_COLOR_DEFAULT = '#28272d'; // Used for form control (input, radio button, checkbox, textarea) default background.
|
|
312
|
+
const GL_CONTROL_BACKGROUND_COLOR_DISABLED = '#18171d'; // Used for disabled form control (checkbox, input, radio button, textarea) background.
|
|
313
|
+
const GL_CONTROL_BACKGROUND_COLOR_SELECTED_DEFAULT = '#428fdc'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background.
|
|
314
|
+
const GL_CONTROL_BACKGROUND_COLOR_SELECTED_HOVER = '#9dc7f1'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background on hover.
|
|
315
|
+
const GL_CONTROL_BACKGROUND_COLOR_SELECTED_FOCUS = '#9dc7f1'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background on hover.
|
|
316
|
+
const GL_CONTROL_BORDER_COLOR_DEFAULT = '#737278'; // Used for form control (input, radio button, checkbox, textarea) default border.
|
|
317
|
+
const GL_CONTROL_BORDER_COLOR_HOVER = '#a4a3a8'; // Used for form control (input, radio button, checkbox, textarea) border on hover.
|
|
318
|
+
const GL_CONTROL_BORDER_COLOR_FOCUS = '#ececef'; // Used for form control (input, radio button, checkbox, textarea) border on focus.
|
|
319
|
+
const GL_CONTROL_BORDER_COLOR_DISABLED = '#3a383f'; // Used for disabled form control (input, radio button, checkbox, textarea) border.
|
|
320
|
+
const GL_CONTROL_BORDER_COLOR_ERROR = '#ec5941'; // Used for invalid form control (input, textarea) border.
|
|
321
|
+
const GL_CONTROL_BORDER_COLOR_SELECTED_DEFAULT = '#428fdc'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border.
|
|
322
|
+
const GL_CONTROL_BORDER_COLOR_SELECTED_HOVER = '#9dc7f1'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border on hover.
|
|
323
|
+
const GL_CONTROL_BORDER_COLOR_SELECTED_FOCUS = '#9dc7f1'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border on focus.
|
|
324
|
+
const GL_CONTROL_TEXT_COLOR_ERROR = '#ec5941'; // Used for the helper text when the input is invalid.
|
|
325
|
+
const GL_CONTROL_TEXT_COLOR_VALID = '#2da160'; // Used for the helper text when the input is valid.
|
|
326
|
+
const GL_CONTROL_PLACEHOLDER_COLOR = '#737278'; // Used for placeholder text within inputs.
|
|
327
|
+
const GL_CONTROL_INDICATOR_COLOR_SELECTED = '#28272d'; // Used for checkbox and radio button state indicators.
|
|
328
|
+
const GL_CONTROL_INDICATOR_COLOR_DISABLED = '#89888d'; // Used for disabled checkbox and radio button state indicators.
|
|
279
329
|
const THEME_INDIGO_10 = '#14143d';
|
|
280
330
|
const THEME_INDIGO_50 = '#222261';
|
|
281
331
|
const THEME_INDIGO_100 = '#303083';
|
|
@@ -417,80 +467,30 @@ const RED_700 = '#fcb5aa';
|
|
|
417
467
|
const RED_800 = '#fdd4cd';
|
|
418
468
|
const RED_900 = '#fcf1ef';
|
|
419
469
|
const RED_950 = '#fff4f3';
|
|
420
|
-
const BRAND_CHARCOAL = '#171321';
|
|
421
|
-
const BRAND_ORANGE_01 = '#fca326';
|
|
422
|
-
const BRAND_ORANGE_02 = '#fc6d26';
|
|
423
|
-
const BRAND_ORANGE_03 = '#e24329';
|
|
424
|
-
const BRAND_PURPLE_01 = '#a989f5';
|
|
425
|
-
const BRAND_PURPLE_02 = '#7759c2';
|
|
426
|
-
const BRAND_GRAY_01 = '#d1d0d3';
|
|
427
|
-
const BRAND_GRAY_02 = '#a2a1a6';
|
|
428
|
-
const BRAND_GRAY_03 = '#74717a';
|
|
429
|
-
const BRAND_GRAY_04 = '#45424d';
|
|
430
|
-
const BRAND_GRAY_05 = '#2b2838';
|
|
431
|
-
const T_GRAY_A_16 = 'rgba(05, 05, 06, 0.16)';
|
|
432
|
-
const T_GRAY_A_24 = 'rgba(05, 05, 06, 0.24)';
|
|
433
|
-
const T_GRAY_A_02 = 'rgba(05, 05, 06, 0.02)';
|
|
434
|
-
const T_GRAY_A_04 = 'rgba(05, 05, 06, 0.04)';
|
|
435
|
-
const T_GRAY_A_06 = 'rgba(05, 05, 06, 0.06)';
|
|
436
|
-
const T_GRAY_A_08 = 'rgba(05, 05, 06, 0.08)';
|
|
437
|
-
const T_WHITE_A_16 = 'rgba(255, 255, 255, 0.16)';
|
|
438
|
-
const T_WHITE_A_24 = 'rgba(255, 255, 255, 0.24)';
|
|
439
|
-
const T_WHITE_A_36 = 'rgba(255, 255, 255, 0.36)';
|
|
440
|
-
const T_WHITE_A_02 = 'rgba(255, 255, 255, 0.02)';
|
|
441
|
-
const T_WHITE_A_04 = 'rgba(255, 255, 255, 0.04)';
|
|
442
|
-
const T_WHITE_A_06 = 'rgba(255, 255, 255, 0.06)';
|
|
443
|
-
const T_WHITE_A_08 = 'rgba(255, 255, 255, 0.08)';
|
|
444
|
-
const GL_AVATAR_BORDER_COLOR_DEFAULT = 'rgba(05, 05, 06, 0.08)'; // Used to define the edge of an avatar.
|
|
445
|
-
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.
|
|
446
|
-
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_RED = '#660e00'; // Red background for avatar fallback with no particular meaning.
|
|
447
|
-
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_PURPLE = '#232150'; // Purple background for avatar fallback with no particular meaning.
|
|
448
|
-
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_BLUE = '#033464'; // Blue background for avatar fallback with no particular meaning.
|
|
449
|
-
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_GREEN = '#0a4020'; // Green background for avatar fallback with no particular meaning.
|
|
450
|
-
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_ORANGE = '#5c2900'; // Orange background for avatar fallback with no particular meaning.
|
|
451
|
-
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_NEUTRAL = '#28272d'; // Neutral background for avatar fallback with no particular meaning.
|
|
452
|
-
const GL_BANNER_INTRO_BORDER_COLOR = '#1068bf'; // Used to compliment the info banner.
|
|
453
|
-
const GL_BANNER_PROMO_BACKGROUND_COLOR = '#28272d'; // Used as background for the default banner type.
|
|
454
|
-
const GL_BREADCRUMB_SEPARATOR_COLOR = '#89888d'; // Used for the breadcrumb level separator.
|
|
455
|
-
const GL_LABEL_LIGHT_TEXT_COLOR = '#18171d'; // Used for the label text color on a light background color.
|
|
456
|
-
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.
|
|
457
|
-
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.
|
|
458
|
-
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.
|
|
459
|
-
const GL_LABEL_DARK_TEXT_COLOR = '#fff'; // Used for the label text color on a dark background color.
|
|
460
|
-
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.
|
|
461
|
-
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.
|
|
462
|
-
const GL_LABEL_DARK_BUTTON_ICON_COLOR_DEFAULT = '#fff'; // Used for the label remove button icon on a dark background color in the default state.
|
|
463
|
-
const GL_LABEL_SCOPED_TEXT_COLOR = '#fff'; // Used for the scoped label text color.
|
|
464
|
-
const GL_LABEL_SCOPED_BUTTON_BACKGROUND_COLOR_HOVER = '#fff'; // Used for the scoped label remove button background in the hover state.
|
|
465
|
-
const GL_LABEL_SCOPED_BUTTON_ICON_COLOR_DEFAULT = '#fff'; // Used for the scoped label remove button icon in the default state.
|
|
466
|
-
const GL_LABEL_SCOPED_BUTTON_ICON_COLOR_HOVER = '#18171d'; // Used for the scoped label remove button icon in the hover state.
|
|
467
|
-
const GL_POPOVER_BACKGROUND_COLOR = '#28272d'; // Used for the background color of popover.
|
|
468
|
-
const GL_SKELETON_LOADER_BACKGROUND_COLOR = '#3a383f'; // Used for the skeleton loader background color.
|
|
469
|
-
const GL_SKELETON_LOADER_SHIMMER_COLOR = '#4c4b51'; // Used for the animated shimmer effect in a skeleton loader.
|
|
470
|
-
const GL_SPINNER_TRACK_COLOR_DEFAULT = '#3a383f'; // Used for the static track (background) of a loading spinner.
|
|
471
|
-
const GL_SPINNER_TRACK_COLOR_LIGHT = '#3a383f'; // Used for the static track (background) of a loading spinner on a dark background.
|
|
472
|
-
const GL_SPINNER_SEGMENT_COLOR_DEFAULT = '#bfbfc3'; // Used for the animated segment of a loading spinner.
|
|
473
|
-
const GL_SPINNER_SEGMENT_COLOR_LIGHT = '#bfbfc3'; // Used for the animated segment of a loading spinner on a dark background.
|
|
474
|
-
const GL_TABLE_ROW_BACKGROUND_COLOR_HOVER = '#28272d'; // Used for the background of a table row in hover state.
|
|
475
|
-
const GL_TABLE_SORTING_ICON_COLOR = '#fff'; // Used for the color of the sorting icons in the column headers.
|
|
476
|
-
const GL_CONTROL_BACKGROUND_COLOR_DEFAULT = '#28272d'; // Used for form control (input, radio button, checkbox, textarea) default background.
|
|
477
|
-
const GL_CONTROL_BACKGROUND_COLOR_DISABLED = '#18171d'; // Used for disabled form control (checkbox, input, radio button, textarea) background.
|
|
478
|
-
const GL_CONTROL_BACKGROUND_COLOR_SELECTED_DEFAULT = '#428fdc'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background.
|
|
479
|
-
const GL_CONTROL_BACKGROUND_COLOR_SELECTED_HOVER = '#9dc7f1'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background on hover.
|
|
480
|
-
const GL_CONTROL_BACKGROUND_COLOR_SELECTED_FOCUS = '#9dc7f1'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background on hover.
|
|
481
|
-
const GL_CONTROL_BORDER_COLOR_DEFAULT = '#737278'; // Used for form control (input, radio button, checkbox, textarea) default border.
|
|
482
|
-
const GL_CONTROL_BORDER_COLOR_HOVER = '#a4a3a8'; // Used for form control (input, radio button, checkbox, textarea) border on hover.
|
|
483
|
-
const GL_CONTROL_BORDER_COLOR_FOCUS = '#ececef'; // Used for form control (input, radio button, checkbox, textarea) border on focus.
|
|
484
|
-
const GL_CONTROL_BORDER_COLOR_DISABLED = '#3a383f'; // Used for disabled form control (input, radio button, checkbox, textarea) border.
|
|
485
|
-
const GL_CONTROL_BORDER_COLOR_ERROR = '#ec5941'; // Used for invalid form control (input, textarea) border.
|
|
486
|
-
const GL_CONTROL_BORDER_COLOR_SELECTED_DEFAULT = '#428fdc'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border.
|
|
487
|
-
const GL_CONTROL_BORDER_COLOR_SELECTED_HOVER = '#9dc7f1'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border on hover.
|
|
488
|
-
const GL_CONTROL_BORDER_COLOR_SELECTED_FOCUS = '#9dc7f1'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border on focus.
|
|
489
|
-
const GL_CONTROL_TEXT_COLOR_ERROR = '#ec5941'; // Used for the helper text when the input is invalid.
|
|
490
|
-
const GL_CONTROL_TEXT_COLOR_VALID = '#2da160'; // Used for the helper text when the input is valid.
|
|
491
|
-
const GL_CONTROL_PLACEHOLDER_COLOR = '#737278'; // Used for placeholder text within inputs.
|
|
492
|
-
const GL_CONTROL_INDICATOR_COLOR_SELECTED = '#28272d'; // Used for checkbox and radio button state indicators.
|
|
493
|
-
const GL_CONTROL_INDICATOR_COLOR_DISABLED = '#89888d'; // Used for disabled checkbox and radio button state indicators.
|
|
470
|
+
const BRAND_CHARCOAL = '#171321'; // Use color.brand-charcoal instead.
|
|
471
|
+
const BRAND_ORANGE_01 = '#fca326'; // Use color.brand-orange.01p instead.
|
|
472
|
+
const BRAND_ORANGE_02 = '#fc6d26'; // Use color.brand-orange.02p instead.
|
|
473
|
+
const BRAND_ORANGE_03 = '#e24329'; // Use color.brand-orange.03p instead.
|
|
474
|
+
const BRAND_PURPLE_01 = '#a989f5'; // Use color.purple.01p instead.
|
|
475
|
+
const BRAND_PURPLE_02 = '#7759c2'; // Use color.purple.02p instead.
|
|
476
|
+
const BRAND_GRAY_01 = '#d1d0d3'; // Use color.brand-gray.01 instead.
|
|
477
|
+
const BRAND_GRAY_02 = '#a2a1a6'; // Use color.brand-gray.02 instead.
|
|
478
|
+
const BRAND_GRAY_03 = '#74717a'; // Use color.brand-gray.03 instead.
|
|
479
|
+
const BRAND_GRAY_04 = '#45424d'; // Use color.brand-gray.04 instead.
|
|
480
|
+
const BRAND_GRAY_05 = '#2b2838'; // Use color.brand-gray.05 instead.
|
|
481
|
+
const T_GRAY_A_16 = 'rgba(05, 05, 06, 0.16)'; // Use color.alpha.dark.16 instead.
|
|
482
|
+
const T_GRAY_A_24 = 'rgba(05, 05, 06, 0.24)'; // Use color.alpha.dark.24 instead.
|
|
483
|
+
const T_GRAY_A_02 = 'rgba(05, 05, 06, 0.02)'; // Use color.alpha.dark.2 instead.
|
|
484
|
+
const T_GRAY_A_04 = 'rgba(05, 05, 06, 0.04)'; // Use color.alpha.dark.4 instead.
|
|
485
|
+
const T_GRAY_A_06 = 'rgba(05, 05, 06, 0.06)'; // Use color.alpha.dark.6 instead.
|
|
486
|
+
const T_GRAY_A_08 = 'rgba(05, 05, 06, 0.08)'; // Use color.alpha.dark.8 instead.
|
|
487
|
+
const T_WHITE_A_16 = 'rgba(255, 255, 255, 0.16)'; // Use color.alpha.light.16 instead.
|
|
488
|
+
const T_WHITE_A_24 = 'rgba(255, 255, 255, 0.24)'; // Use color.alpha.light.24 instead.
|
|
489
|
+
const T_WHITE_A_36 = 'rgba(255, 255, 255, 0.36)'; // Use color.alpha.light.36 instead.
|
|
490
|
+
const T_WHITE_A_02 = 'rgba(255, 255, 255, 0.02)'; // Use color.alpha.light.2 instead.
|
|
491
|
+
const T_WHITE_A_04 = 'rgba(255, 255, 255, 0.04)'; // Use color.alpha.light.4 instead.
|
|
492
|
+
const T_WHITE_A_06 = 'rgba(255, 255, 255, 0.06)'; // Use color.alpha.light.6 instead.
|
|
493
|
+
const T_WHITE_A_08 = 'rgba(255, 255, 255, 0.08)'; // Use color.alpha.light.8 instead.
|
|
494
494
|
const GL_FEEDBACK_BACKGROUND_COLOR_STRONG = '#fbfafd'; // Used for a background associated with feedback like a tooltip or toast message.
|
|
495
495
|
const GL_FEEDBACK_TEXT_COLOR_STRONG = '#28272d'; // Used for text on a strong feedback background.
|
|
496
496
|
const GL_FEEDBACK_ICON_COLOR_STRONG = '#28272d'; // Used for an icon on a strong feedback background.
|
|
@@ -604,9 +604,9 @@ const GL_STATUS_BRAND_ICON_COLOR_DEFAULT = '#7b58cf'; // Used for the icon of a
|
|
|
604
604
|
const GL_STATUS_BRAND_ICON_COLOR_HOVER = '#9475db'; // Used for the icon of a brand related status item in the hover state.
|
|
605
605
|
const GL_STATUS_BRAND_ICON_COLOR_FOCUS = '#9475db'; // Used for the icon of a brand related status item in the focus state.
|
|
606
606
|
const GL_STATUS_BRAND_ICON_COLOR_ACTIVE = '#ac93e6'; // Used for the icon of a brand related status item in the active state.
|
|
607
|
-
const GL_TEXT_PRIMARY = '#ececef'; // Use text.color.default instead
|
|
608
|
-
const GL_TEXT_SECONDARY = '#89888d'; // Use text.color.subtle instead
|
|
609
|
-
const GL_TEXT_TERTIARY = '#737278'; // Use text.color.disabled instead
|
|
607
|
+
const GL_TEXT_PRIMARY = '#ececef'; // Use text.color.default instead.
|
|
608
|
+
const GL_TEXT_SECONDARY = '#89888d'; // Use text.color.subtle instead.
|
|
609
|
+
const GL_TEXT_TERTIARY = '#737278'; // Use text.color.disabled instead.
|
|
610
610
|
const GL_TEXT_COLOR_DEFAULT = '#ececef'; // Used for the default text color.
|
|
611
611
|
const GL_TEXT_COLOR_SUBTLE = '#bfbfc3'; // Used for supplemental text that doesn't need to be as prominent as other text.
|
|
612
612
|
const GL_TEXT_COLOR_STRONG = '#fff'; // Used for text with the highest contrast.
|
|
@@ -276,6 +276,56 @@ const DATA_VIZ_ORANGE_700 = '#92430a';
|
|
|
276
276
|
const DATA_VIZ_ORANGE_800 = '#6f3500';
|
|
277
277
|
const DATA_VIZ_ORANGE_900 = '#5e2f05';
|
|
278
278
|
const DATA_VIZ_ORANGE_950 = '#4b2707';
|
|
279
|
+
const GL_AVATAR_BORDER_COLOR_DEFAULT = 'rgba(05, 05, 06, 0.08)'; // Used to define the edge of an avatar.
|
|
280
|
+
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.
|
|
281
|
+
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_RED = '#fcf1ef'; // Red background for avatar fallback with no particular meaning.
|
|
282
|
+
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_PURPLE = '#f4f0ff'; // Purple background for avatar fallback with no particular meaning.
|
|
283
|
+
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_BLUE = '#e9f3fc'; // Blue background for avatar fallback with no particular meaning.
|
|
284
|
+
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_GREEN = '#ecf4ee'; // Green background for avatar fallback with no particular meaning.
|
|
285
|
+
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_ORANGE = '#fdf1dd'; // Orange background for avatar fallback with no particular meaning.
|
|
286
|
+
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_NEUTRAL = '#ececef'; // Neutral background for avatar fallback with no particular meaning.
|
|
287
|
+
const GL_BANNER_INTRO_BORDER_COLOR = '#63a6e9'; // Used to compliment the info banner.
|
|
288
|
+
const GL_BANNER_PROMO_BACKGROUND_COLOR = '#fbfafd'; // Used as background for the default banner type.
|
|
289
|
+
const GL_BREADCRUMB_SEPARATOR_COLOR = '#89888d'; // Used for the breadcrumb level separator.
|
|
290
|
+
const GL_LABEL_LIGHT_TEXT_COLOR = '#18171d'; // Used for the label text color on a light background color.
|
|
291
|
+
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.
|
|
292
|
+
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.
|
|
293
|
+
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.
|
|
294
|
+
const GL_LABEL_DARK_TEXT_COLOR = '#fff'; // Used for the label text color on a dark background color.
|
|
295
|
+
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.
|
|
296
|
+
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.
|
|
297
|
+
const GL_LABEL_DARK_BUTTON_ICON_COLOR_DEFAULT = '#fff'; // Used for the label remove button icon on a dark background color in the default state.
|
|
298
|
+
const GL_LABEL_SCOPED_TEXT_COLOR = '#18171d'; // Used for the scoped label text color.
|
|
299
|
+
const GL_LABEL_SCOPED_BUTTON_BACKGROUND_COLOR_HOVER = '#18171d'; // Used for the scoped label remove button background in the hover state.
|
|
300
|
+
const GL_LABEL_SCOPED_BUTTON_ICON_COLOR_DEFAULT = '#18171d'; // Used for the scoped label remove button icon in the default state.
|
|
301
|
+
const GL_LABEL_SCOPED_BUTTON_ICON_COLOR_HOVER = '#fff'; // Used for the scoped label remove button icon in the hover state.
|
|
302
|
+
const GL_POPOVER_BACKGROUND_COLOR = '#fff'; // Used for the background color of popover.
|
|
303
|
+
const GL_SKELETON_LOADER_BACKGROUND_COLOR = '#dcdcde'; // Used for the skeleton loader background color.
|
|
304
|
+
const GL_SKELETON_LOADER_SHIMMER_COLOR = '#ececef'; // Used for the animated shimmer effect in a skeleton loader.
|
|
305
|
+
const GL_SPINNER_TRACK_COLOR_DEFAULT = '#dcdcde'; // Used for the static track (background) of a loading spinner.
|
|
306
|
+
const GL_SPINNER_TRACK_COLOR_LIGHT = '#3a383f'; // Used for the static track (background) of a loading spinner on a dark background.
|
|
307
|
+
const GL_SPINNER_SEGMENT_COLOR_DEFAULT = '#4c4b51'; // Used for the animated segment of a loading spinner.
|
|
308
|
+
const GL_SPINNER_SEGMENT_COLOR_LIGHT = '#bfbfc3'; // Used for the animated segment of a loading spinner on a dark background.
|
|
309
|
+
const GL_TABLE_ROW_BACKGROUND_COLOR_HOVER = '#fbfafd'; // Used for the background of a table row in hover state.
|
|
310
|
+
const GL_TABLE_SORTING_ICON_COLOR = '#18171d'; // Used for the color of the sorting icons in the column headers.
|
|
311
|
+
const GL_CONTROL_BACKGROUND_COLOR_DEFAULT = '#fff'; // Used for form control (input, radio button, checkbox, textarea) default background.
|
|
312
|
+
const GL_CONTROL_BACKGROUND_COLOR_DISABLED = '#fbfafd'; // Used for disabled form control (checkbox, input, radio button, textarea) background.
|
|
313
|
+
const GL_CONTROL_BACKGROUND_COLOR_SELECTED_DEFAULT = '#1f75cb'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background.
|
|
314
|
+
const GL_CONTROL_BACKGROUND_COLOR_SELECTED_HOVER = '#0b5cad'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background on hover.
|
|
315
|
+
const GL_CONTROL_BACKGROUND_COLOR_SELECTED_FOCUS = '#0b5cad'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background on hover.
|
|
316
|
+
const GL_CONTROL_BORDER_COLOR_DEFAULT = '#89888d'; // Used for form control (input, radio button, checkbox, textarea) default border.
|
|
317
|
+
const GL_CONTROL_BORDER_COLOR_HOVER = '#626168'; // Used for form control (input, radio button, checkbox, textarea) border on hover.
|
|
318
|
+
const GL_CONTROL_BORDER_COLOR_FOCUS = '#28272d'; // Used for form control (input, radio button, checkbox, textarea) border on focus.
|
|
319
|
+
const GL_CONTROL_BORDER_COLOR_DISABLED = '#dcdcde'; // Used for disabled form control (input, radio button, checkbox, textarea) border.
|
|
320
|
+
const GL_CONTROL_BORDER_COLOR_ERROR = '#dd2b0e'; // Used for invalid form control (input, textarea) border.
|
|
321
|
+
const GL_CONTROL_BORDER_COLOR_SELECTED_DEFAULT = '#1f75cb'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border.
|
|
322
|
+
const GL_CONTROL_BORDER_COLOR_SELECTED_HOVER = '#0b5cad'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border on hover.
|
|
323
|
+
const GL_CONTROL_BORDER_COLOR_SELECTED_FOCUS = '#0b5cad'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border on focus.
|
|
324
|
+
const GL_CONTROL_TEXT_COLOR_ERROR = '#dd2b0e'; // Used for the helper text when the input is invalid.
|
|
325
|
+
const GL_CONTROL_TEXT_COLOR_VALID = '#108548'; // Used for the helper text when the input is valid.
|
|
326
|
+
const GL_CONTROL_PLACEHOLDER_COLOR = '#89888d'; // Used for placeholder text within inputs.
|
|
327
|
+
const GL_CONTROL_INDICATOR_COLOR_SELECTED = '#fff'; // Used for checkbox and radio button state indicators.
|
|
328
|
+
const GL_CONTROL_INDICATOR_COLOR_DISABLED = '#737278'; // Used for disabled checkbox and radio button state indicators.
|
|
279
329
|
const THEME_INDIGO_10 = '#f8f8ff';
|
|
280
330
|
const THEME_INDIGO_50 = '#f1f1ff';
|
|
281
331
|
const THEME_INDIGO_100 = '#dbdbf8';
|
|
@@ -417,80 +467,30 @@ const RED_700 = '#ae1800';
|
|
|
417
467
|
const RED_800 = '#8d1300';
|
|
418
468
|
const RED_900 = '#660e00';
|
|
419
469
|
const RED_950 = '#4d0a00';
|
|
420
|
-
const BRAND_CHARCOAL = '#171321';
|
|
421
|
-
const BRAND_ORANGE_01 = '#fca326';
|
|
422
|
-
const BRAND_ORANGE_02 = '#fc6d26';
|
|
423
|
-
const BRAND_ORANGE_03 = '#e24329';
|
|
424
|
-
const BRAND_PURPLE_01 = '#a989f5';
|
|
425
|
-
const BRAND_PURPLE_02 = '#7759c2';
|
|
426
|
-
const BRAND_GRAY_01 = '#d1d0d3';
|
|
427
|
-
const BRAND_GRAY_02 = '#a2a1a6';
|
|
428
|
-
const BRAND_GRAY_03 = '#74717a';
|
|
429
|
-
const BRAND_GRAY_04 = '#45424d';
|
|
430
|
-
const BRAND_GRAY_05 = '#2b2838';
|
|
431
|
-
const T_GRAY_A_16 = 'rgba(05, 05, 06, 0.16)';
|
|
432
|
-
const T_GRAY_A_24 = 'rgba(05, 05, 06, 0.24)';
|
|
433
|
-
const T_GRAY_A_02 = 'rgba(05, 05, 06, 0.02)';
|
|
434
|
-
const T_GRAY_A_04 = 'rgba(05, 05, 06, 0.04)';
|
|
435
|
-
const T_GRAY_A_06 = 'rgba(05, 05, 06, 0.06)';
|
|
436
|
-
const T_GRAY_A_08 = 'rgba(05, 05, 06, 0.08)';
|
|
437
|
-
const T_WHITE_A_16 = 'rgba(255, 255, 255, 0.16)';
|
|
438
|
-
const T_WHITE_A_24 = 'rgba(255, 255, 255, 0.24)';
|
|
439
|
-
const T_WHITE_A_36 = 'rgba(255, 255, 255, 0.36)';
|
|
440
|
-
const T_WHITE_A_02 = 'rgba(255, 255, 255, 0.02)';
|
|
441
|
-
const T_WHITE_A_04 = 'rgba(255, 255, 255, 0.04)';
|
|
442
|
-
const T_WHITE_A_06 = 'rgba(255, 255, 255, 0.06)';
|
|
443
|
-
const T_WHITE_A_08 = 'rgba(255, 255, 255, 0.08)';
|
|
444
|
-
const GL_AVATAR_BORDER_COLOR_DEFAULT = 'rgba(05, 05, 06, 0.08)'; // Used to define the edge of an avatar.
|
|
445
|
-
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.
|
|
446
|
-
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_RED = '#fcf1ef'; // Red background for avatar fallback with no particular meaning.
|
|
447
|
-
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_PURPLE = '#f4f0ff'; // Purple background for avatar fallback with no particular meaning.
|
|
448
|
-
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_BLUE = '#e9f3fc'; // Blue background for avatar fallback with no particular meaning.
|
|
449
|
-
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_GREEN = '#ecf4ee'; // Green background for avatar fallback with no particular meaning.
|
|
450
|
-
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_ORANGE = '#fdf1dd'; // Orange background for avatar fallback with no particular meaning.
|
|
451
|
-
const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_NEUTRAL = '#ececef'; // Neutral background for avatar fallback with no particular meaning.
|
|
452
|
-
const GL_BANNER_INTRO_BORDER_COLOR = '#63a6e9'; // Used to compliment the info banner.
|
|
453
|
-
const GL_BANNER_PROMO_BACKGROUND_COLOR = '#fbfafd'; // Used as background for the default banner type.
|
|
454
|
-
const GL_BREADCRUMB_SEPARATOR_COLOR = '#89888d'; // Used for the breadcrumb level separator.
|
|
455
|
-
const GL_LABEL_LIGHT_TEXT_COLOR = '#18171d'; // Used for the label text color on a light background color.
|
|
456
|
-
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.
|
|
457
|
-
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.
|
|
458
|
-
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.
|
|
459
|
-
const GL_LABEL_DARK_TEXT_COLOR = '#fff'; // Used for the label text color on a dark background color.
|
|
460
|
-
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.
|
|
461
|
-
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.
|
|
462
|
-
const GL_LABEL_DARK_BUTTON_ICON_COLOR_DEFAULT = '#fff'; // Used for the label remove button icon on a dark background color in the default state.
|
|
463
|
-
const GL_LABEL_SCOPED_TEXT_COLOR = '#18171d'; // Used for the scoped label text color.
|
|
464
|
-
const GL_LABEL_SCOPED_BUTTON_BACKGROUND_COLOR_HOVER = '#18171d'; // Used for the scoped label remove button background in the hover state.
|
|
465
|
-
const GL_LABEL_SCOPED_BUTTON_ICON_COLOR_DEFAULT = '#18171d'; // Used for the scoped label remove button icon in the default state.
|
|
466
|
-
const GL_LABEL_SCOPED_BUTTON_ICON_COLOR_HOVER = '#fff'; // Used for the scoped label remove button icon in the hover state.
|
|
467
|
-
const GL_POPOVER_BACKGROUND_COLOR = '#fff'; // Used for the background color of popover.
|
|
468
|
-
const GL_SKELETON_LOADER_BACKGROUND_COLOR = '#dcdcde'; // Used for the skeleton loader background color.
|
|
469
|
-
const GL_SKELETON_LOADER_SHIMMER_COLOR = '#ececef'; // Used for the animated shimmer effect in a skeleton loader.
|
|
470
|
-
const GL_SPINNER_TRACK_COLOR_DEFAULT = '#dcdcde'; // Used for the static track (background) of a loading spinner.
|
|
471
|
-
const GL_SPINNER_TRACK_COLOR_LIGHT = '#3a383f'; // Used for the static track (background) of a loading spinner on a dark background.
|
|
472
|
-
const GL_SPINNER_SEGMENT_COLOR_DEFAULT = '#4c4b51'; // Used for the animated segment of a loading spinner.
|
|
473
|
-
const GL_SPINNER_SEGMENT_COLOR_LIGHT = '#bfbfc3'; // Used for the animated segment of a loading spinner on a dark background.
|
|
474
|
-
const GL_TABLE_ROW_BACKGROUND_COLOR_HOVER = '#fbfafd'; // Used for the background of a table row in hover state.
|
|
475
|
-
const GL_TABLE_SORTING_ICON_COLOR = '#18171d'; // Used for the color of the sorting icons in the column headers.
|
|
476
|
-
const GL_CONTROL_BACKGROUND_COLOR_DEFAULT = '#fff'; // Used for form control (input, radio button, checkbox, textarea) default background.
|
|
477
|
-
const GL_CONTROL_BACKGROUND_COLOR_DISABLED = '#fbfafd'; // Used for disabled form control (checkbox, input, radio button, textarea) background.
|
|
478
|
-
const GL_CONTROL_BACKGROUND_COLOR_SELECTED_DEFAULT = '#1f75cb'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background.
|
|
479
|
-
const GL_CONTROL_BACKGROUND_COLOR_SELECTED_HOVER = '#0b5cad'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background on hover.
|
|
480
|
-
const GL_CONTROL_BACKGROUND_COLOR_SELECTED_FOCUS = '#0b5cad'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background on hover.
|
|
481
|
-
const GL_CONTROL_BORDER_COLOR_DEFAULT = '#89888d'; // Used for form control (input, radio button, checkbox, textarea) default border.
|
|
482
|
-
const GL_CONTROL_BORDER_COLOR_HOVER = '#626168'; // Used for form control (input, radio button, checkbox, textarea) border on hover.
|
|
483
|
-
const GL_CONTROL_BORDER_COLOR_FOCUS = '#28272d'; // Used for form control (input, radio button, checkbox, textarea) border on focus.
|
|
484
|
-
const GL_CONTROL_BORDER_COLOR_DISABLED = '#dcdcde'; // Used for disabled form control (input, radio button, checkbox, textarea) border.
|
|
485
|
-
const GL_CONTROL_BORDER_COLOR_ERROR = '#dd2b0e'; // Used for invalid form control (input, textarea) border.
|
|
486
|
-
const GL_CONTROL_BORDER_COLOR_SELECTED_DEFAULT = '#1f75cb'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border.
|
|
487
|
-
const GL_CONTROL_BORDER_COLOR_SELECTED_HOVER = '#0b5cad'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border on hover.
|
|
488
|
-
const GL_CONTROL_BORDER_COLOR_SELECTED_FOCUS = '#0b5cad'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border on focus.
|
|
489
|
-
const GL_CONTROL_TEXT_COLOR_ERROR = '#dd2b0e'; // Used for the helper text when the input is invalid.
|
|
490
|
-
const GL_CONTROL_TEXT_COLOR_VALID = '#108548'; // Used for the helper text when the input is valid.
|
|
491
|
-
const GL_CONTROL_PLACEHOLDER_COLOR = '#89888d'; // Used for placeholder text within inputs.
|
|
492
|
-
const GL_CONTROL_INDICATOR_COLOR_SELECTED = '#fff'; // Used for checkbox and radio button state indicators.
|
|
493
|
-
const GL_CONTROL_INDICATOR_COLOR_DISABLED = '#737278'; // Used for disabled checkbox and radio button state indicators.
|
|
470
|
+
const BRAND_CHARCOAL = '#171321'; // Use color.brand-charcoal instead.
|
|
471
|
+
const BRAND_ORANGE_01 = '#fca326'; // Use color.brand-orange.01p instead.
|
|
472
|
+
const BRAND_ORANGE_02 = '#fc6d26'; // Use color.brand-orange.02p instead.
|
|
473
|
+
const BRAND_ORANGE_03 = '#e24329'; // Use color.brand-orange.03p instead.
|
|
474
|
+
const BRAND_PURPLE_01 = '#a989f5'; // Use color.purple.01p instead.
|
|
475
|
+
const BRAND_PURPLE_02 = '#7759c2'; // Use color.purple.02p instead.
|
|
476
|
+
const BRAND_GRAY_01 = '#d1d0d3'; // Use color.brand-gray.01 instead.
|
|
477
|
+
const BRAND_GRAY_02 = '#a2a1a6'; // Use color.brand-gray.02 instead.
|
|
478
|
+
const BRAND_GRAY_03 = '#74717a'; // Use color.brand-gray.03 instead.
|
|
479
|
+
const BRAND_GRAY_04 = '#45424d'; // Use color.brand-gray.04 instead.
|
|
480
|
+
const BRAND_GRAY_05 = '#2b2838'; // Use color.brand-gray.05 instead.
|
|
481
|
+
const T_GRAY_A_16 = 'rgba(05, 05, 06, 0.16)'; // Use color.alpha.dark.16 instead.
|
|
482
|
+
const T_GRAY_A_24 = 'rgba(05, 05, 06, 0.24)'; // Use color.alpha.dark.24 instead.
|
|
483
|
+
const T_GRAY_A_02 = 'rgba(05, 05, 06, 0.02)'; // Use color.alpha.dark.2 instead.
|
|
484
|
+
const T_GRAY_A_04 = 'rgba(05, 05, 06, 0.04)'; // Use color.alpha.dark.4 instead.
|
|
485
|
+
const T_GRAY_A_06 = 'rgba(05, 05, 06, 0.06)'; // Use color.alpha.dark.6 instead.
|
|
486
|
+
const T_GRAY_A_08 = 'rgba(05, 05, 06, 0.08)'; // Use color.alpha.dark.8 instead.
|
|
487
|
+
const T_WHITE_A_16 = 'rgba(255, 255, 255, 0.16)'; // Use color.alpha.light.16 instead.
|
|
488
|
+
const T_WHITE_A_24 = 'rgba(255, 255, 255, 0.24)'; // Use color.alpha.light.24 instead.
|
|
489
|
+
const T_WHITE_A_36 = 'rgba(255, 255, 255, 0.36)'; // Use color.alpha.light.36 instead.
|
|
490
|
+
const T_WHITE_A_02 = 'rgba(255, 255, 255, 0.02)'; // Use color.alpha.light.2 instead.
|
|
491
|
+
const T_WHITE_A_04 = 'rgba(255, 255, 255, 0.04)'; // Use color.alpha.light.4 instead.
|
|
492
|
+
const T_WHITE_A_06 = 'rgba(255, 255, 255, 0.06)'; // Use color.alpha.light.6 instead.
|
|
493
|
+
const T_WHITE_A_08 = 'rgba(255, 255, 255, 0.08)'; // Use color.alpha.light.8 instead.
|
|
494
494
|
const GL_FEEDBACK_BACKGROUND_COLOR_STRONG = '#18171d'; // Used for a background associated with feedback like a tooltip or toast message.
|
|
495
495
|
const GL_FEEDBACK_TEXT_COLOR_STRONG = '#fff'; // Used for text on a strong feedback background.
|
|
496
496
|
const GL_FEEDBACK_ICON_COLOR_STRONG = '#fff'; // Used for an icon on a strong feedback background.
|
|
@@ -604,9 +604,9 @@ const GL_STATUS_BRAND_ICON_COLOR_DEFAULT = '#7b58cf'; // Used for the icon of a
|
|
|
604
604
|
const GL_STATUS_BRAND_ICON_COLOR_HOVER = '#694cc0'; // Used for the icon of a brand related status item in the hover state.
|
|
605
605
|
const GL_STATUS_BRAND_ICON_COLOR_FOCUS = '#694cc0'; // Used for the icon of a brand related status item in the focus state.
|
|
606
606
|
const GL_STATUS_BRAND_ICON_COLOR_ACTIVE = '#5943b6'; // Used for the icon of a brand related status item in the active state.
|
|
607
|
-
const GL_TEXT_PRIMARY = '#28272d'; // Use text.color.default instead
|
|
608
|
-
const GL_TEXT_SECONDARY = '#737278'; // Use text.color.subtle instead
|
|
609
|
-
const GL_TEXT_TERTIARY = '#89888d'; // Use text.color.disabled instead
|
|
607
|
+
const GL_TEXT_PRIMARY = '#28272d'; // Use text.color.default instead.
|
|
608
|
+
const GL_TEXT_SECONDARY = '#737278'; // Use text.color.subtle instead.
|
|
609
|
+
const GL_TEXT_TERTIARY = '#89888d'; // Use text.color.disabled instead.
|
|
610
610
|
const GL_TEXT_COLOR_DEFAULT = '#3a383f'; // Used for the default text color.
|
|
611
611
|
const GL_TEXT_COLOR_SUBTLE = '#626168'; // Used for supplemental text that doesn't need to be as prominent as other text.
|
|
612
612
|
const GL_TEXT_COLOR_STRONG = '#18171d'; // Used for text with the highest contrast.
|
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
7
|
-
--gl-text-tertiary: #89888d; /* Use text.color.disabled instead */
|
|
8
|
-
--gl-text-secondary: #737278; /* Use text.color.subtle instead */
|
|
9
|
-
--gl-text-primary: #28272d; /* Use text.color.default instead */
|
|
7
|
+
--gl-text-tertiary: #89888d; /* Use text.color.disabled instead. */
|
|
8
|
+
--gl-text-secondary: #737278; /* Use text.color.subtle instead. */
|
|
9
|
+
--gl-text-primary: #28272d; /* Use text.color.default instead. */
|
|
10
10
|
--gl-line-height-52: 3.25rem;
|
|
11
11
|
--gl-line-height-44: 2.75rem;
|
|
12
12
|
--gl-line-height-42: 2.625rem;
|
|
@@ -17,30 +17,30 @@
|
|
|
17
17
|
--gl-line-height-20: 1.25rem;
|
|
18
18
|
--gl-line-height-16: 1rem;
|
|
19
19
|
--gl-line-height-12: 0.75rem;
|
|
20
|
-
--t-white-a-08: rgba(255, 255, 255, 0.08);
|
|
21
|
-
--t-white-a-06: rgba(255, 255, 255, 0.06);
|
|
22
|
-
--t-white-a-04: rgba(255, 255, 255, 0.04);
|
|
23
|
-
--t-white-a-02: rgba(255, 255, 255, 0.02);
|
|
24
|
-
--t-white-a-36: rgba(255, 255, 255, 0.36);
|
|
25
|
-
--t-white-a-24: rgba(255, 255, 255, 0.24);
|
|
26
|
-
--t-white-a-16: rgba(255, 255, 255, 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);
|
|
33
|
-
--brand-gray-05: #2b2838;
|
|
34
|
-
--brand-gray-04: #45424d;
|
|
35
|
-
--brand-gray-03: #74717a;
|
|
36
|
-
--brand-gray-02: #a2a1a6;
|
|
37
|
-
--brand-gray-01: #d1d0d3;
|
|
38
|
-
--brand-purple-02: #7759c2;
|
|
39
|
-
--brand-purple-01: #a989f5;
|
|
40
|
-
--brand-orange-03: #e24329;
|
|
41
|
-
--brand-orange-02: #fc6d26;
|
|
42
|
-
--brand-orange-01: #fca326;
|
|
43
|
-
--brand-charcoal: #171321;
|
|
20
|
+
--t-white-a-08: rgba(255, 255, 255, 0.08); /* Use color.alpha.light.8 instead. */
|
|
21
|
+
--t-white-a-06: rgba(255, 255, 255, 0.06); /* Use color.alpha.light.6 instead. */
|
|
22
|
+
--t-white-a-04: rgba(255, 255, 255, 0.04); /* Use color.alpha.light.4 instead. */
|
|
23
|
+
--t-white-a-02: rgba(255, 255, 255, 0.02); /* Use color.alpha.light.2 instead. */
|
|
24
|
+
--t-white-a-36: rgba(255, 255, 255, 0.36); /* Use color.alpha.light.36 instead. */
|
|
25
|
+
--t-white-a-24: rgba(255, 255, 255, 0.24); /* Use color.alpha.light.24 instead. */
|
|
26
|
+
--t-white-a-16: rgba(255, 255, 255, 0.16); /* Use color.alpha.light.16 instead. */
|
|
27
|
+
--t-gray-a-08: rgba(05, 05, 06, 0.08); /* Use color.alpha.dark.8 instead. */
|
|
28
|
+
--t-gray-a-06: rgba(05, 05, 06, 0.06); /* Use color.alpha.dark.6 instead. */
|
|
29
|
+
--t-gray-a-04: rgba(05, 05, 06, 0.04); /* Use color.alpha.dark.4 instead. */
|
|
30
|
+
--t-gray-a-02: rgba(05, 05, 06, 0.02); /* Use color.alpha.dark.2 instead. */
|
|
31
|
+
--t-gray-a-24: rgba(05, 05, 06, 0.24); /* Use color.alpha.dark.24 instead. */
|
|
32
|
+
--t-gray-a-16: rgba(05, 05, 06, 0.16); /* Use color.alpha.dark.16 instead. */
|
|
33
|
+
--brand-gray-05: #2b2838; /* Use color.brand-gray.05 instead. */
|
|
34
|
+
--brand-gray-04: #45424d; /* Use color.brand-gray.04 instead. */
|
|
35
|
+
--brand-gray-03: #74717a; /* Use color.brand-gray.03 instead. */
|
|
36
|
+
--brand-gray-02: #a2a1a6; /* Use color.brand-gray.02 instead. */
|
|
37
|
+
--brand-gray-01: #d1d0d3; /* Use color.brand-gray.01 instead. */
|
|
38
|
+
--brand-purple-02: #7759c2; /* Use color.purple.02p instead. */
|
|
39
|
+
--brand-purple-01: #a989f5; /* Use color.purple.01p instead. */
|
|
40
|
+
--brand-orange-03: #e24329; /* Use color.brand-orange.03p instead. */
|
|
41
|
+
--brand-orange-02: #fc6d26; /* Use color.brand-orange.02p instead. */
|
|
42
|
+
--brand-orange-01: #fca326; /* Use color.brand-orange.01p instead. */
|
|
43
|
+
--brand-charcoal: #171321; /* Use color.brand-charcoal instead. */
|
|
44
44
|
--red-950: #4d0a00;
|
|
45
45
|
--red-900: #660e00;
|
|
46
46
|
--red-800: #8d1300;
|
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root.gl-dark {
|
|
7
|
-
--gl-text-tertiary: #737278; /* Use text.color.disabled instead */
|
|
8
|
-
--gl-text-secondary: #89888d; /* Use text.color.subtle instead */
|
|
9
|
-
--gl-text-primary: #ececef; /* Use text.color.default instead */
|
|
7
|
+
--gl-text-tertiary: #737278; /* Use text.color.disabled instead. */
|
|
8
|
+
--gl-text-secondary: #89888d; /* Use text.color.subtle instead. */
|
|
9
|
+
--gl-text-primary: #ececef; /* Use text.color.default instead. */
|
|
10
10
|
--gl-line-height-52: 3.25rem;
|
|
11
11
|
--gl-line-height-44: 2.75rem;
|
|
12
12
|
--gl-line-height-42: 2.625rem;
|
|
@@ -17,30 +17,30 @@
|
|
|
17
17
|
--gl-line-height-20: 1.25rem;
|
|
18
18
|
--gl-line-height-16: 1rem;
|
|
19
19
|
--gl-line-height-12: 0.75rem;
|
|
20
|
-
--t-white-a-08: rgba(255, 255, 255, 0.08);
|
|
21
|
-
--t-white-a-06: rgba(255, 255, 255, 0.06);
|
|
22
|
-
--t-white-a-04: rgba(255, 255, 255, 0.04);
|
|
23
|
-
--t-white-a-02: rgba(255, 255, 255, 0.02);
|
|
24
|
-
--t-white-a-36: rgba(255, 255, 255, 0.36);
|
|
25
|
-
--t-white-a-24: rgba(255, 255, 255, 0.24);
|
|
26
|
-
--t-white-a-16: rgba(255, 255, 255, 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);
|
|
33
|
-
--brand-gray-05: #2b2838;
|
|
34
|
-
--brand-gray-04: #45424d;
|
|
35
|
-
--brand-gray-03: #74717a;
|
|
36
|
-
--brand-gray-02: #a2a1a6;
|
|
37
|
-
--brand-gray-01: #d1d0d3;
|
|
38
|
-
--brand-purple-02: #7759c2;
|
|
39
|
-
--brand-purple-01: #a989f5;
|
|
40
|
-
--brand-orange-03: #e24329;
|
|
41
|
-
--brand-orange-02: #fc6d26;
|
|
42
|
-
--brand-orange-01: #fca326;
|
|
43
|
-
--brand-charcoal: #171321;
|
|
20
|
+
--t-white-a-08: rgba(255, 255, 255, 0.08); /* Use color.alpha.light.8 instead. */
|
|
21
|
+
--t-white-a-06: rgba(255, 255, 255, 0.06); /* Use color.alpha.light.6 instead. */
|
|
22
|
+
--t-white-a-04: rgba(255, 255, 255, 0.04); /* Use color.alpha.light.4 instead. */
|
|
23
|
+
--t-white-a-02: rgba(255, 255, 255, 0.02); /* Use color.alpha.light.2 instead. */
|
|
24
|
+
--t-white-a-36: rgba(255, 255, 255, 0.36); /* Use color.alpha.light.36 instead. */
|
|
25
|
+
--t-white-a-24: rgba(255, 255, 255, 0.24); /* Use color.alpha.light.24 instead. */
|
|
26
|
+
--t-white-a-16: rgba(255, 255, 255, 0.16); /* Use color.alpha.light.16 instead. */
|
|
27
|
+
--t-gray-a-08: rgba(05, 05, 06, 0.08); /* Use color.alpha.dark.8 instead. */
|
|
28
|
+
--t-gray-a-06: rgba(05, 05, 06, 0.06); /* Use color.alpha.dark.6 instead. */
|
|
29
|
+
--t-gray-a-04: rgba(05, 05, 06, 0.04); /* Use color.alpha.dark.4 instead. */
|
|
30
|
+
--t-gray-a-02: rgba(05, 05, 06, 0.02); /* Use color.alpha.dark.2 instead. */
|
|
31
|
+
--t-gray-a-24: rgba(05, 05, 06, 0.24); /* Use color.alpha.dark.24 instead. */
|
|
32
|
+
--t-gray-a-16: rgba(05, 05, 06, 0.16); /* Use color.alpha.dark.16 instead. */
|
|
33
|
+
--brand-gray-05: #2b2838; /* Use color.brand-gray.05 instead. */
|
|
34
|
+
--brand-gray-04: #45424d; /* Use color.brand-gray.04 instead. */
|
|
35
|
+
--brand-gray-03: #74717a; /* Use color.brand-gray.03 instead. */
|
|
36
|
+
--brand-gray-02: #a2a1a6; /* Use color.brand-gray.02 instead. */
|
|
37
|
+
--brand-gray-01: #d1d0d3; /* Use color.brand-gray.01 instead. */
|
|
38
|
+
--brand-purple-02: #7759c2; /* Use color.purple.02p instead. */
|
|
39
|
+
--brand-purple-01: #a989f5; /* Use color.purple.01p instead. */
|
|
40
|
+
--brand-orange-03: #e24329; /* Use color.brand-orange.03p instead. */
|
|
41
|
+
--brand-orange-02: #fc6d26; /* Use color.brand-orange.02p instead. */
|
|
42
|
+
--brand-orange-01: #fca326; /* Use color.brand-orange.01p instead. */
|
|
43
|
+
--brand-charcoal: #171321; /* Use color.brand-charcoal instead. */
|
|
44
44
|
--red-950: #fff4f3;
|
|
45
45
|
--red-900: #fcf1ef;
|
|
46
46
|
--red-800: #fdd4cd;
|