@gitlab/ui 85.1.0 → 85.2.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 +14 -0
- package/dist/components/experimental/duo/chat/components/duo_chat_conversation/duo_chat_conversation.js +5 -1
- package/dist/components/experimental/duo/chat/components/duo_chat_message/duo_chat_message.js +11 -1
- package/dist/components/experimental/duo/chat/duo_chat.js +6 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +50 -1
- package/dist/tokens/build/js/tokens.js +50 -1
- package/dist/tokens/css/tokens.css +49 -0
- package/dist/tokens/css/tokens.dark.css +49 -0
- package/dist/tokens/js/tokens.dark.js +49 -0
- package/dist/tokens/js/tokens.js +49 -0
- package/dist/tokens/json/tokens.dark.json +1254 -0
- package/dist/tokens/json/tokens.json +1254 -0
- package/dist/tokens/scss/_tokens.dark.scss +49 -0
- package/dist/tokens/scss/_tokens.scss +49 -0
- package/dist/tokens/scss/_tokens_custom_properties.scss +49 -0
- package/package.json +2 -2
- package/src/components/base/alert/alert.scss +12 -14
- package/src/components/experimental/duo/chat/components/duo_chat_conversation/duo_chat_conversation.vue +5 -1
- package/src/components/experimental/duo/chat/components/duo_chat_message/duo_chat_message.vue +12 -2
- package/src/components/experimental/duo/chat/duo_chat.vue +6 -0
- package/src/tokens/action.tokens.json +318 -0
- package/src/tokens/build/css/tokens.css +49 -0
- package/src/tokens/build/css/tokens.dark.css +49 -0
- package/src/tokens/build/js/tokens.dark.js +49 -0
- package/src/tokens/build/js/tokens.js +49 -0
- package/src/tokens/build/json/tokens.dark.json +1254 -0
- package/src/tokens/build/json/tokens.json +1254 -0
- package/src/tokens/build/scss/_tokens.dark.scss +49 -0
- package/src/tokens/build/scss/_tokens.scss +49 -0
- package/src/tokens/build/scss/_tokens_custom_properties.scss +49 -0
- package/src/tokens/feedback.tokens.json +162 -0
|
@@ -484,6 +484,20 @@ $gl-icon-color-disabled: $gl-color-neutral-500; // Used for an icon within a dis
|
|
|
484
484
|
$gl-icon-color-strong: $gl-color-neutral-10; // Used for an icon with the highest contrast.
|
|
485
485
|
$gl-icon-color-subtle: $gl-color-neutral-300; // Used for a static or decorational icon. Can be paired with subtle text.
|
|
486
486
|
$gl-icon-color-default: $gl-color-neutral-100; // Used for the default icon color. Can be paired with default text.
|
|
487
|
+
$gl-feedback-danger-icon-color: $gl-color-red-300; // Used for an icon associated with danger or critical feedback.
|
|
488
|
+
$gl-feedback-danger-background-color: $gl-color-red-900; // Used for a background associated with danger or critical feedback.
|
|
489
|
+
$gl-feedback-warning-icon-color: $gl-color-orange-300; // Used for an icon associated with warning feedback or confidential content.
|
|
490
|
+
$gl-feedback-warning-background-color: $gl-color-orange-900; // Used for a background associated with warning feedback or to let a user know about confidential content.
|
|
491
|
+
$gl-feedback-success-icon-color: $gl-color-green-300; // Used for an icon associated with successful feedback or a new section.
|
|
492
|
+
$gl-feedback-success-background-color: $gl-color-green-900; // Used for a background associated with successful feedback or a new section resulting from a user action.
|
|
493
|
+
$gl-feedback-info-icon-color: $gl-color-blue-300; // Used for an icon associated with informational feedback.
|
|
494
|
+
$gl-feedback-info-background-color: $gl-color-blue-900; // Used for a background associated with informational feedback or a highlighted section resulting from a user action.
|
|
495
|
+
$gl-feedback-neutral-icon-color: $gl-color-neutral-300; // Used for an icon associated with a neutral feedback section.
|
|
496
|
+
$gl-feedback-neutral-background-color: $gl-color-neutral-900; // Used for a background associated with neutral feedback.
|
|
497
|
+
$gl-feedback-link-color-strong: $gl-color-blue-700; // Used for a link on a strong feedback background.
|
|
498
|
+
$gl-feedback-icon-color-strong: $gl-color-neutral-900; // Used for an icon on a strong feedback background.
|
|
499
|
+
$gl-feedback-text-color-strong: $gl-color-neutral-900; // Used for text on a strong feedback background.
|
|
500
|
+
$gl-feedback-background-color-strong: $gl-color-neutral-10; // Used for a background associated with feedback like a tooltip or toast message.
|
|
487
501
|
$gl-breadcrumb-separator-color: $gl-color-neutral-700; // Used for the breadcrumb level separator.
|
|
488
502
|
$gl-border-color-transparent: $gl-color-alpha-0; // Used when a border needs to be present, but not visibly perceived.
|
|
489
503
|
$gl-border-color-strong: $gl-color-neutral-400; // Used for a distinct border that emphasizes an edge or boundaries.
|
|
@@ -493,3 +507,38 @@ $gl-background-color-disabled: $gl-color-neutral-900; // Used to identify a disa
|
|
|
493
507
|
$gl-background-color-strong: $gl-color-neutral-800; // Used to make the background easily stand out from the default.
|
|
494
508
|
$gl-background-color-subtle: $gl-color-neutral-900; // Used to slightly differentiate the background from the default.
|
|
495
509
|
$gl-background-color-default: $gl-color-neutral-950; // Used for the default background color.
|
|
510
|
+
$gl-action-neutral-icon-color-strong: $gl-color-neutral-900; // Used for the icon on a solid, strong neutral action background.
|
|
511
|
+
$gl-action-neutral-icon-color-active: $gl-color-neutral-50; // Used for the icon of outlined and borderless neutral actions in the active state.
|
|
512
|
+
$gl-action-neutral-icon-color-focus: $gl-color-neutral-200; // Used for the icon of outlined and borderless neutral actions in the focus state.
|
|
513
|
+
$gl-action-neutral-icon-color-hover: $gl-color-neutral-200; // Used for the icon of outlined and borderless neutral actions in the hover state.
|
|
514
|
+
$gl-action-neutral-icon-color-default: $gl-color-neutral-400; // Used for the icon of outlined and borderless neutral actions.
|
|
515
|
+
$gl-action-neutral-text-color-strong: $gl-color-neutral-900; // Used for the text on a solid, strong neutral action background.
|
|
516
|
+
$gl-action-neutral-text-color-active: $gl-color-neutral-50; // Used for the text of a neutral action in the active state.
|
|
517
|
+
$gl-action-neutral-text-color-focus: $gl-color-neutral-50; // Used for the text of a neutral action in the focus state.
|
|
518
|
+
$gl-action-neutral-text-color-hover: $gl-color-neutral-50; // Used for the text of a neutral action in the hover state.
|
|
519
|
+
$gl-action-neutral-text-color-default: $gl-color-neutral-50; // Used for the text of outlined and borderless neutral actions.
|
|
520
|
+
$gl-action-neutral-border-color-strong-active: $gl-color-neutral-50; // Used for the border of a solid, strong neutral action in the active state.
|
|
521
|
+
$gl-action-neutral-border-color-strong-focus: $gl-color-neutral-100; // Used for the border of a solid, strong neutral action in the focus state.
|
|
522
|
+
$gl-action-neutral-border-color-strong-hover: $gl-color-neutral-100; // Used for the border of a solid, strong neutral action in the hover state.
|
|
523
|
+
$gl-action-neutral-border-color-strong-default: $gl-color-neutral-300; // Used for the border of a solid, strong neutral action in the default state.
|
|
524
|
+
$gl-action-neutral-border-color-selected: $gl-color-neutral-700; // Used for the border of a outlined neutral action when in a selected or current state.
|
|
525
|
+
$gl-action-neutral-border-color-active: $gl-color-neutral-300; // Used for the border of an outlined neutral action in the active state.
|
|
526
|
+
$gl-action-neutral-border-color-focus: $gl-color-neutral-500; // Used for the border of an outlined neutral action in the focus state.
|
|
527
|
+
$gl-action-neutral-border-color-hover: $gl-color-neutral-500; // Used for the border of an outlined neutral action in the hover state.
|
|
528
|
+
$gl-action-neutral-border-color-default: $gl-color-neutral-700; // Used for the border of an outlined neutral action in the default state.
|
|
529
|
+
$gl-action-neutral-background-color-strong-active: $gl-color-neutral-200; // Used for the background of a solid, strong neutral action in the active state.
|
|
530
|
+
$gl-action-neutral-background-color-strong-focus: $gl-color-neutral-300; // Used for the background of a solid, strong neutral action in the focus state.
|
|
531
|
+
$gl-action-neutral-background-color-strong-hover: $gl-color-neutral-300; // Used for the background of a solid, strong neutral action in the hover state.
|
|
532
|
+
$gl-action-neutral-background-color-strong-default: $gl-color-neutral-400; // Used for the background of a solid, strong neutral action in the default state.
|
|
533
|
+
$gl-action-neutral-background-color-subtle-active: $gl-color-neutral-800; // Used for the background of a borderless, subtle neutral action in the active state.
|
|
534
|
+
$gl-action-neutral-background-color-subtle-focus: $gl-color-neutral-900; // Used for the background of a borderless, subtle neutral action in the focus state.
|
|
535
|
+
$gl-action-neutral-background-color-subtle-hover: $gl-color-neutral-900; // Used for the background of a borderless, subtle neutral action in the hover state.
|
|
536
|
+
$gl-action-neutral-background-color-subtle-default: $gl-color-alpha-0; // Used for the background of a borderless, subtle neutral action in the default state.
|
|
537
|
+
$gl-action-neutral-background-color-active: $gl-color-neutral-800; // Used for the background of an outlined neutral action in the active state.
|
|
538
|
+
$gl-action-neutral-background-color-focus: $gl-color-neutral-900; // Used for the background of an outlined neutral action in the focus state.
|
|
539
|
+
$gl-action-neutral-background-color-hover: $gl-color-neutral-900; // Used for the background of an outlined neutral action in the hover state.
|
|
540
|
+
$gl-action-icon-color-disabled: $gl-color-neutral-500; // Used for the icon of a disabled action.
|
|
541
|
+
$gl-action-text-color-disabled: $gl-color-neutral-400; // Used for the text of a disabled action.
|
|
542
|
+
$gl-action-border-color-disabled: $gl-color-neutral-800; // Used for the border of a disabled action.
|
|
543
|
+
$gl-action-background-color-disabled: $gl-color-neutral-900; // Used for the background of a disabled action.
|
|
544
|
+
$gl-action-neutral-background-color-default: $gl-background-color-default; // Used for the background of an outlined neutral action in the default state.
|
|
@@ -484,6 +484,20 @@ $gl-icon-color-disabled: $gl-color-neutral-300; // Used for an icon within a dis
|
|
|
484
484
|
$gl-icon-color-strong: $gl-color-neutral-900; // Used for an icon with the highest contrast.
|
|
485
485
|
$gl-icon-color-subtle: $gl-color-neutral-500; // Used for a static or decorational icon. Can be paired with subtle text.
|
|
486
486
|
$gl-icon-color-default: $gl-color-neutral-700; // Used for the default icon color. Can be paired with default text.
|
|
487
|
+
$gl-feedback-danger-icon-color: $gl-color-red-600; // Used for an icon associated with danger or critical feedback.
|
|
488
|
+
$gl-feedback-danger-background-color: $gl-color-red-50; // Used for a background associated with danger or critical feedback.
|
|
489
|
+
$gl-feedback-warning-icon-color: $gl-color-orange-600; // Used for an icon associated with warning feedback or confidential content.
|
|
490
|
+
$gl-feedback-warning-background-color: $gl-color-orange-50; // Used for a background associated with warning feedback or to let a user know about confidential content.
|
|
491
|
+
$gl-feedback-success-icon-color: $gl-color-green-600; // Used for an icon associated with successful feedback or a new section.
|
|
492
|
+
$gl-feedback-success-background-color: $gl-color-green-50; // Used for a background associated with successful feedback or a new section resulting from a user action.
|
|
493
|
+
$gl-feedback-info-icon-color: $gl-color-blue-600; // Used for an icon associated with informational feedback.
|
|
494
|
+
$gl-feedback-info-background-color: $gl-color-blue-50; // Used for a background associated with informational feedback or a highlighted section resulting from a user action.
|
|
495
|
+
$gl-feedback-neutral-icon-color: $gl-color-neutral-600; // Used for an icon associated with a neutral feedback section.
|
|
496
|
+
$gl-feedback-neutral-background-color: $gl-color-neutral-50; // Used for a background associated with neutral feedback.
|
|
497
|
+
$gl-feedback-link-color-strong: $gl-color-blue-300; // Used for a link on a strong feedback background.
|
|
498
|
+
$gl-feedback-icon-color-strong: $gl-color-neutral-0; // Used for an icon on a strong feedback background.
|
|
499
|
+
$gl-feedback-text-color-strong: $gl-color-neutral-0; // Used for text on a strong feedback background.
|
|
500
|
+
$gl-feedback-background-color-strong: $gl-color-neutral-950; // Used for a background associated with feedback like a tooltip or toast message.
|
|
487
501
|
$gl-breadcrumb-separator-color: $gl-color-neutral-200; // Used for the breadcrumb level separator.
|
|
488
502
|
$gl-border-color-transparent: $gl-color-alpha-0; // Used when a border needs to be present, but not visibly perceived.
|
|
489
503
|
$gl-border-color-strong: $gl-color-neutral-400; // Used for a distinct border that emphasizes an edge or boundaries.
|
|
@@ -493,3 +507,38 @@ $gl-background-color-disabled: $gl-color-neutral-10; // Used to identify a disab
|
|
|
493
507
|
$gl-background-color-strong: $gl-color-neutral-50; // Used to make the background easily stand out from the default.
|
|
494
508
|
$gl-background-color-subtle: $gl-color-neutral-10; // Used to slightly differentiate the background from the default.
|
|
495
509
|
$gl-background-color-default: $gl-color-neutral-0; // Used for the default background color.
|
|
510
|
+
$gl-action-neutral-icon-color-strong: $gl-color-neutral-0; // Used for the icon on a solid, strong neutral action background.
|
|
511
|
+
$gl-action-neutral-icon-color-active: $gl-color-neutral-900; // Used for the icon of outlined and borderless neutral actions in the active state.
|
|
512
|
+
$gl-action-neutral-icon-color-focus: $gl-color-neutral-700; // Used for the icon of outlined and borderless neutral actions in the focus state.
|
|
513
|
+
$gl-action-neutral-icon-color-hover: $gl-color-neutral-700; // Used for the icon of outlined and borderless neutral actions in the hover state.
|
|
514
|
+
$gl-action-neutral-icon-color-default: $gl-color-neutral-500; // Used for the icon of outlined and borderless neutral actions.
|
|
515
|
+
$gl-action-neutral-text-color-strong: $gl-color-neutral-0; // Used for the text on a solid, strong neutral action background.
|
|
516
|
+
$gl-action-neutral-text-color-active: $gl-color-neutral-900; // Used for the text of a neutral action in the active state.
|
|
517
|
+
$gl-action-neutral-text-color-focus: $gl-color-neutral-900; // Used for the text of a neutral action in the focus state.
|
|
518
|
+
$gl-action-neutral-text-color-hover: $gl-color-neutral-900; // Used for the text of a neutral action in the hover state.
|
|
519
|
+
$gl-action-neutral-text-color-default: $gl-color-neutral-900; // Used for the text of outlined and borderless neutral actions.
|
|
520
|
+
$gl-action-neutral-border-color-strong-active: $gl-color-neutral-900; // Used for the border of a solid, strong neutral action in the active state.
|
|
521
|
+
$gl-action-neutral-border-color-strong-focus: $gl-color-neutral-800; // Used for the border of a solid, strong neutral action in the focus state.
|
|
522
|
+
$gl-action-neutral-border-color-strong-hover: $gl-color-neutral-800; // Used for the border of a solid, strong neutral action in the hover state.
|
|
523
|
+
$gl-action-neutral-border-color-strong-default: $gl-color-neutral-600; // Used for the border of a solid, strong neutral action in the default state.
|
|
524
|
+
$gl-action-neutral-border-color-selected: $gl-color-neutral-300; // Used for the border of a outlined neutral action when in a selected or current state.
|
|
525
|
+
$gl-action-neutral-border-color-active: $gl-color-neutral-600; // Used for the border of an outlined neutral action in the active state.
|
|
526
|
+
$gl-action-neutral-border-color-focus: $gl-color-neutral-400; // Used for the border of an outlined neutral action in the focus state.
|
|
527
|
+
$gl-action-neutral-border-color-hover: $gl-color-neutral-400; // Used for the border of an outlined neutral action in the hover state.
|
|
528
|
+
$gl-action-neutral-border-color-default: $gl-color-neutral-200; // Used for the border of an outlined neutral action in the default state.
|
|
529
|
+
$gl-action-neutral-background-color-strong-active: $gl-color-neutral-700; // Used for the background of a solid, strong neutral action in the active state.
|
|
530
|
+
$gl-action-neutral-background-color-strong-focus: $gl-color-neutral-600; // Used for the background of a solid, strong neutral action in the focus state.
|
|
531
|
+
$gl-action-neutral-background-color-strong-hover: $gl-color-neutral-600; // Used for the background of a solid, strong neutral action in the hover state.
|
|
532
|
+
$gl-action-neutral-background-color-strong-default: $gl-color-neutral-500; // Used for the background of a solid, strong neutral action in the default state.
|
|
533
|
+
$gl-action-neutral-background-color-subtle-active: $gl-color-neutral-100; // Used for the background of a borderless, subtle neutral action in the active state.
|
|
534
|
+
$gl-action-neutral-background-color-subtle-focus: $gl-color-neutral-50; // Used for the background of a borderless, subtle neutral action in the focus state.
|
|
535
|
+
$gl-action-neutral-background-color-subtle-hover: $gl-color-neutral-50; // Used for the background of a borderless, subtle neutral action in the hover state.
|
|
536
|
+
$gl-action-neutral-background-color-subtle-default: $gl-color-alpha-0; // Used for the background of a borderless, subtle neutral action in the default state.
|
|
537
|
+
$gl-action-neutral-background-color-active: $gl-color-neutral-100; // Used for the background of an outlined neutral action in the active state.
|
|
538
|
+
$gl-action-neutral-background-color-focus: $gl-color-neutral-50; // Used for the background of an outlined neutral action in the focus state.
|
|
539
|
+
$gl-action-neutral-background-color-hover: $gl-color-neutral-50; // Used for the background of an outlined neutral action in the hover state.
|
|
540
|
+
$gl-action-icon-color-disabled: $gl-color-neutral-400; // Used for the icon of a disabled action.
|
|
541
|
+
$gl-action-text-color-disabled: $gl-color-neutral-500; // Used for the text of a disabled action.
|
|
542
|
+
$gl-action-border-color-disabled: $gl-color-neutral-100; // Used for the border of a disabled action.
|
|
543
|
+
$gl-action-background-color-disabled: $gl-color-neutral-50; // Used for the background of a disabled action.
|
|
544
|
+
$gl-action-neutral-background-color-default: $gl-background-color-default; // Used for the background of an outlined neutral action in the default state.
|
|
@@ -3,6 +3,41 @@
|
|
|
3
3
|
* Do not edit directly
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
+
$gl-action-background-color-disabled: var(--gl-action-background-color-disabled);
|
|
7
|
+
$gl-action-border-color-disabled: var(--gl-action-border-color-disabled);
|
|
8
|
+
$gl-action-text-color-disabled: var(--gl-action-text-color-disabled);
|
|
9
|
+
$gl-action-icon-color-disabled: var(--gl-action-icon-color-disabled);
|
|
10
|
+
$gl-action-neutral-background-color-default: var(--gl-action-neutral-background-color-default);
|
|
11
|
+
$gl-action-neutral-background-color-hover: var(--gl-action-neutral-background-color-hover);
|
|
12
|
+
$gl-action-neutral-background-color-focus: var(--gl-action-neutral-background-color-focus);
|
|
13
|
+
$gl-action-neutral-background-color-active: var(--gl-action-neutral-background-color-active);
|
|
14
|
+
$gl-action-neutral-background-color-subtle-default: var(--gl-action-neutral-background-color-subtle-default);
|
|
15
|
+
$gl-action-neutral-background-color-subtle-hover: var(--gl-action-neutral-background-color-subtle-hover);
|
|
16
|
+
$gl-action-neutral-background-color-subtle-focus: var(--gl-action-neutral-background-color-subtle-focus);
|
|
17
|
+
$gl-action-neutral-background-color-subtle-active: var(--gl-action-neutral-background-color-subtle-active);
|
|
18
|
+
$gl-action-neutral-background-color-strong-default: var(--gl-action-neutral-background-color-strong-default);
|
|
19
|
+
$gl-action-neutral-background-color-strong-hover: var(--gl-action-neutral-background-color-strong-hover);
|
|
20
|
+
$gl-action-neutral-background-color-strong-focus: var(--gl-action-neutral-background-color-strong-focus);
|
|
21
|
+
$gl-action-neutral-background-color-strong-active: var(--gl-action-neutral-background-color-strong-active);
|
|
22
|
+
$gl-action-neutral-border-color-default: var(--gl-action-neutral-border-color-default);
|
|
23
|
+
$gl-action-neutral-border-color-hover: var(--gl-action-neutral-border-color-hover);
|
|
24
|
+
$gl-action-neutral-border-color-focus: var(--gl-action-neutral-border-color-focus);
|
|
25
|
+
$gl-action-neutral-border-color-active: var(--gl-action-neutral-border-color-active);
|
|
26
|
+
$gl-action-neutral-border-color-selected: var(--gl-action-neutral-border-color-selected);
|
|
27
|
+
$gl-action-neutral-border-color-strong-default: var(--gl-action-neutral-border-color-strong-default);
|
|
28
|
+
$gl-action-neutral-border-color-strong-hover: var(--gl-action-neutral-border-color-strong-hover);
|
|
29
|
+
$gl-action-neutral-border-color-strong-focus: var(--gl-action-neutral-border-color-strong-focus);
|
|
30
|
+
$gl-action-neutral-border-color-strong-active: var(--gl-action-neutral-border-color-strong-active);
|
|
31
|
+
$gl-action-neutral-text-color-default: var(--gl-action-neutral-text-color-default);
|
|
32
|
+
$gl-action-neutral-text-color-hover: var(--gl-action-neutral-text-color-hover);
|
|
33
|
+
$gl-action-neutral-text-color-focus: var(--gl-action-neutral-text-color-focus);
|
|
34
|
+
$gl-action-neutral-text-color-active: var(--gl-action-neutral-text-color-active);
|
|
35
|
+
$gl-action-neutral-text-color-strong: var(--gl-action-neutral-text-color-strong);
|
|
36
|
+
$gl-action-neutral-icon-color-default: var(--gl-action-neutral-icon-color-default);
|
|
37
|
+
$gl-action-neutral-icon-color-hover: var(--gl-action-neutral-icon-color-hover);
|
|
38
|
+
$gl-action-neutral-icon-color-focus: var(--gl-action-neutral-icon-color-focus);
|
|
39
|
+
$gl-action-neutral-icon-color-active: var(--gl-action-neutral-icon-color-active);
|
|
40
|
+
$gl-action-neutral-icon-color-strong: var(--gl-action-neutral-icon-color-strong);
|
|
6
41
|
$gl-background-color-default: var(--gl-background-color-default);
|
|
7
42
|
$gl-background-color-subtle: var(--gl-background-color-subtle);
|
|
8
43
|
$gl-background-color-strong: var(--gl-background-color-strong);
|
|
@@ -387,6 +422,20 @@ $t-white-a-04: var(--t-white-a-04);
|
|
|
387
422
|
$t-white-a-06: var(--t-white-a-06);
|
|
388
423
|
$t-white-a-08: var(--t-white-a-08);
|
|
389
424
|
$gl-breadcrumb-separator-color: var(--gl-breadcrumb-separator-color);
|
|
425
|
+
$gl-feedback-background-color-strong: var(--gl-feedback-background-color-strong);
|
|
426
|
+
$gl-feedback-text-color-strong: var(--gl-feedback-text-color-strong);
|
|
427
|
+
$gl-feedback-icon-color-strong: var(--gl-feedback-icon-color-strong);
|
|
428
|
+
$gl-feedback-link-color-strong: var(--gl-feedback-link-color-strong);
|
|
429
|
+
$gl-feedback-neutral-background-color: var(--gl-feedback-neutral-background-color);
|
|
430
|
+
$gl-feedback-neutral-icon-color: var(--gl-feedback-neutral-icon-color);
|
|
431
|
+
$gl-feedback-info-background-color: var(--gl-feedback-info-background-color);
|
|
432
|
+
$gl-feedback-info-icon-color: var(--gl-feedback-info-icon-color);
|
|
433
|
+
$gl-feedback-success-background-color: var(--gl-feedback-success-background-color);
|
|
434
|
+
$gl-feedback-success-icon-color: var(--gl-feedback-success-icon-color);
|
|
435
|
+
$gl-feedback-warning-background-color: var(--gl-feedback-warning-background-color);
|
|
436
|
+
$gl-feedback-warning-icon-color: var(--gl-feedback-warning-icon-color);
|
|
437
|
+
$gl-feedback-danger-background-color: var(--gl-feedback-danger-background-color);
|
|
438
|
+
$gl-feedback-danger-icon-color: var(--gl-feedback-danger-icon-color);
|
|
390
439
|
$gl-icon-color-default: var(--gl-icon-color-default);
|
|
391
440
|
$gl-icon-color-subtle: var(--gl-icon-color-subtle);
|
|
392
441
|
$gl-icon-color-strong: var(--gl-icon-color-strong);
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
{
|
|
2
|
+
"feedback": {
|
|
3
|
+
"background": {
|
|
4
|
+
"color": {
|
|
5
|
+
"strong": {
|
|
6
|
+
"$value": {
|
|
7
|
+
"default": "{color.neutral.950}",
|
|
8
|
+
"dark": "{color.neutral.10}"
|
|
9
|
+
},
|
|
10
|
+
"$type": "color",
|
|
11
|
+
"$description": "Used for a background associated with feedback like a tooltip or toast message."
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"text": {
|
|
16
|
+
"color": {
|
|
17
|
+
"strong": {
|
|
18
|
+
"$value": {
|
|
19
|
+
"default": "{color.neutral.0}",
|
|
20
|
+
"dark": "{color.neutral.900}"
|
|
21
|
+
},
|
|
22
|
+
"$type": "color",
|
|
23
|
+
"$description": "Used for text on a strong feedback background."
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"icon": {
|
|
28
|
+
"color": {
|
|
29
|
+
"strong": {
|
|
30
|
+
"$value": {
|
|
31
|
+
"default": "{color.neutral.0}",
|
|
32
|
+
"dark": "{color.neutral.900}"
|
|
33
|
+
},
|
|
34
|
+
"$type": "color",
|
|
35
|
+
"$description": "Used for an icon on a strong feedback background."
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"link": {
|
|
40
|
+
"color": {
|
|
41
|
+
"strong": {
|
|
42
|
+
"$value": {
|
|
43
|
+
"default": "{color.blue.300}",
|
|
44
|
+
"dark": "{color.blue.700}"
|
|
45
|
+
},
|
|
46
|
+
"$type": "color",
|
|
47
|
+
"$description": "Used for a link on a strong feedback background."
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"neutral": {
|
|
52
|
+
"background": {
|
|
53
|
+
"color": {
|
|
54
|
+
"$value": {
|
|
55
|
+
"default": "{color.neutral.50}",
|
|
56
|
+
"dark": "{color.neutral.900}"
|
|
57
|
+
},
|
|
58
|
+
"$type": "color",
|
|
59
|
+
"$description": "Used for a background associated with neutral feedback."
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"icon": {
|
|
63
|
+
"color": {
|
|
64
|
+
"$value": {
|
|
65
|
+
"default": "{color.neutral.600}",
|
|
66
|
+
"dark": "{color.neutral.300}"
|
|
67
|
+
},
|
|
68
|
+
"$type": "color",
|
|
69
|
+
"$description": "Used for an icon associated with a neutral feedback section."
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"info": {
|
|
74
|
+
"background": {
|
|
75
|
+
"color": {
|
|
76
|
+
"$value": {
|
|
77
|
+
"default": "{color.blue.50}",
|
|
78
|
+
"dark": "{color.blue.900}"
|
|
79
|
+
},
|
|
80
|
+
"$type": "color",
|
|
81
|
+
"$description": "Used for a background associated with informational feedback or a highlighted section resulting from a user action."
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"icon": {
|
|
85
|
+
"color": {
|
|
86
|
+
"$value": {
|
|
87
|
+
"default": "{color.blue.600}",
|
|
88
|
+
"dark": "{color.blue.300}"
|
|
89
|
+
},
|
|
90
|
+
"$type": "color",
|
|
91
|
+
"$description": "Used for an icon associated with informational feedback."
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"success": {
|
|
96
|
+
"background": {
|
|
97
|
+
"color": {
|
|
98
|
+
"$value": {
|
|
99
|
+
"default": "{color.green.50}",
|
|
100
|
+
"dark": "{color.green.900}"
|
|
101
|
+
},
|
|
102
|
+
"$type": "color",
|
|
103
|
+
"$description": "Used for a background associated with successful feedback or a new section resulting from a user action."
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
"icon": {
|
|
107
|
+
"color": {
|
|
108
|
+
"$value": {
|
|
109
|
+
"default": "{color.green.600}",
|
|
110
|
+
"dark": "{color.green.300}"
|
|
111
|
+
},
|
|
112
|
+
"$type": "color",
|
|
113
|
+
"$description": "Used for an icon associated with successful feedback or a new section."
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
"warning": {
|
|
118
|
+
"background": {
|
|
119
|
+
"color": {
|
|
120
|
+
"$value": {
|
|
121
|
+
"default": "{color.orange.50}",
|
|
122
|
+
"dark": "{color.orange.900}"
|
|
123
|
+
},
|
|
124
|
+
"$type": "color",
|
|
125
|
+
"$description": "Used for a background associated with warning feedback or to let a user know about confidential content."
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
"icon": {
|
|
129
|
+
"color": {
|
|
130
|
+
"$value": {
|
|
131
|
+
"default": "{color.orange.600}",
|
|
132
|
+
"dark": "{color.orange.300}"
|
|
133
|
+
},
|
|
134
|
+
"$type": "color",
|
|
135
|
+
"$description": "Used for an icon associated with warning feedback or confidential content."
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
"danger": {
|
|
140
|
+
"background": {
|
|
141
|
+
"color": {
|
|
142
|
+
"$value": {
|
|
143
|
+
"default": "{color.red.50}",
|
|
144
|
+
"dark": "{color.red.900}"
|
|
145
|
+
},
|
|
146
|
+
"$type": "color",
|
|
147
|
+
"$description": "Used for a background associated with danger or critical feedback."
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
"icon": {
|
|
151
|
+
"color": {
|
|
152
|
+
"$value": {
|
|
153
|
+
"default": "{color.red.600}",
|
|
154
|
+
"dark": "{color.red.300}"
|
|
155
|
+
},
|
|
156
|
+
"$type": "color",
|
|
157
|
+
"$description": "Used for an icon associated with danger or critical feedback."
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
}
|