@gitlab/ui 103.2.0 → 103.4.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 +17 -0
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +9 -9
- package/dist/tokens/css/tokens.dark.css +5 -5
- package/dist/tokens/js/tokens.dark.js +9 -9
- package/dist/tokens/json/tokens.dark.json +14 -14
- package/dist/tokens/json/tokens.json +5 -5
- package/dist/tokens/scss/_tokens.dark.scss +5 -5
- package/package.json +1 -1
- package/src/components/base/badge/badge.scss +2 -5
- package/src/components/base/drawer/drawer.scss +8 -13
- package/src/tokens/build/css/tokens.dark.css +5 -5
- package/src/tokens/build/js/tokens.dark.js +9 -9
- package/src/tokens/build/json/tokens.dark.json +14 -14
- package/src/tokens/build/json/tokens.json +5 -5
- package/src/tokens/build/scss/_tokens.dark.scss +5 -5
- package/src/tokens/status.tokens.json +5 -5
|
@@ -667,10 +667,10 @@ const GL_LINK_MENTION_TEXT_COLOR_DEFAULT = '#9dc7f1';
|
|
|
667
667
|
const GL_LINK_MENTION_TEXT_COLOR_CURRENT = '#f5d9a8';
|
|
668
668
|
const GL_LINK_MENTION_BACKGROUND_COLOR_DEFAULT = '#064787';
|
|
669
669
|
const GL_LINK_MENTION_BACKGROUND_COLOR_CURRENT = '#703800';
|
|
670
|
-
const GL_PROGRESS_BAR_INDICATOR_COLOR_DEFAULT = '#
|
|
671
|
-
const GL_PROGRESS_BAR_INDICATOR_COLOR_SUCCESS = '#
|
|
672
|
-
const GL_PROGRESS_BAR_INDICATOR_COLOR_WARNING = '#
|
|
673
|
-
const GL_PROGRESS_BAR_INDICATOR_COLOR_DANGER = '#
|
|
670
|
+
const GL_PROGRESS_BAR_INDICATOR_COLOR_DEFAULT = '#63a6e9';
|
|
671
|
+
const GL_PROGRESS_BAR_INDICATOR_COLOR_SUCCESS = '#52b87a';
|
|
672
|
+
const GL_PROGRESS_BAR_INDICATOR_COLOR_WARNING = '#d99530';
|
|
673
|
+
const GL_PROGRESS_BAR_INDICATOR_COLOR_DANGER = '#f6806d';
|
|
674
674
|
const GL_PROGRESS_BAR_TRACK_COLOR = '#4c4b51';
|
|
675
675
|
const GL_SKELETON_LOADER_BACKGROUND_COLOR = '#3a383f';
|
|
676
676
|
const GL_SKELETON_LOADER_SHIMMER_COLOR = '#4c4b51';
|
|
@@ -921,19 +921,19 @@ const GL_LINE_HEIGHT_52 = '3.25rem';
|
|
|
921
921
|
const GL_SHADOW_COLOR_DEFAULT = 'rgba(05, 05, 06, 0.4)';
|
|
922
922
|
const GL_STATUS_NEUTRAL_BACKGROUND_COLOR = '#3a383f';
|
|
923
923
|
const GL_STATUS_NEUTRAL_TEXT_COLOR = '#bfbfc3';
|
|
924
|
-
const GL_STATUS_NEUTRAL_ICON_COLOR = '#
|
|
924
|
+
const GL_STATUS_NEUTRAL_ICON_COLOR = '#a4a3a8';
|
|
925
925
|
const GL_STATUS_INFO_BACKGROUND_COLOR = '#064787';
|
|
926
926
|
const GL_STATUS_INFO_TEXT_COLOR = '#9dc7f1';
|
|
927
|
-
const GL_STATUS_INFO_ICON_COLOR = '#
|
|
927
|
+
const GL_STATUS_INFO_ICON_COLOR = '#63a6e9';
|
|
928
928
|
const GL_STATUS_SUCCESS_BACKGROUND_COLOR = '#0d532a';
|
|
929
929
|
const GL_STATUS_SUCCESS_TEXT_COLOR = '#91d4a8';
|
|
930
|
-
const GL_STATUS_SUCCESS_ICON_COLOR = '#
|
|
930
|
+
const GL_STATUS_SUCCESS_ICON_COLOR = '#52b87a';
|
|
931
931
|
const GL_STATUS_WARNING_BACKGROUND_COLOR = '#703800';
|
|
932
932
|
const GL_STATUS_WARNING_TEXT_COLOR = '#e9be74';
|
|
933
|
-
const GL_STATUS_WARNING_ICON_COLOR = '#
|
|
933
|
+
const GL_STATUS_WARNING_ICON_COLOR = '#d99530';
|
|
934
934
|
const GL_STATUS_DANGER_BACKGROUND_COLOR = '#8d1300';
|
|
935
935
|
const GL_STATUS_DANGER_TEXT_COLOR = '#fcb5aa';
|
|
936
|
-
const GL_STATUS_DANGER_ICON_COLOR = '#
|
|
936
|
+
const GL_STATUS_DANGER_ICON_COLOR = '#f6806d';
|
|
937
937
|
const GL_STATUS_BRAND_BACKGROUND_COLOR = '#2f2a6b';
|
|
938
938
|
const GL_STATUS_BRAND_TEXT_COLOR = '#ac93e6';
|
|
939
939
|
const GL_STATUS_BRAND_ICON_COLOR = '#7b58cf';
|
|
@@ -751,19 +751,19 @@
|
|
|
751
751
|
--gl-shadow-color-default: var(--gl-color-alpha-dark-40); /* Used for the default shadow color. */
|
|
752
752
|
--gl-status-neutral-background-color: var(--gl-color-neutral-800); /* Used for the background of a neutral status item when the status is neither positive nor negative, or when indicating a special but stable state. */
|
|
753
753
|
--gl-status-neutral-text-color: var(--gl-color-neutral-200); /* Used for the text of a neutral status item when the status is neither positive nor negative, or when indicating a special but stable state. */
|
|
754
|
-
--gl-status-neutral-icon-color: var(--gl-color-neutral-
|
|
754
|
+
--gl-status-neutral-icon-color: var(--gl-color-neutral-300); /* Used for the icon of a neutral status item when the status is neither positive nor negative, or when indicating a special but stable state. */
|
|
755
755
|
--gl-status-info-background-color: var(--gl-color-blue-800); /* Used for the background of an informational status item when indicating a noteworthy ongoing condition or a state of active progress. */
|
|
756
756
|
--gl-status-info-text-color: var(--gl-color-blue-200); /* Used for the text of an informational status item when indicating a noteworthy ongoing condition or a state of active progress. */
|
|
757
|
-
--gl-status-info-icon-color: var(--gl-color-blue-
|
|
757
|
+
--gl-status-info-icon-color: var(--gl-color-blue-300); /* Used for the icon of an informational status item when indicating a noteworthy ongoing condition or a state of active progress. */
|
|
758
758
|
--gl-status-success-background-color: var(--gl-color-green-800); /* Used for the background of a success status item when indicating a positive outcome, completion, or desired state. Clearly conveys a positive connotation. */
|
|
759
759
|
--gl-status-success-text-color: var(--gl-color-green-200); /* Used for the text of a success status item when indicating a positive outcome, completion, or desired state. Clearly conveys a positive connotation. */
|
|
760
|
-
--gl-status-success-icon-color: var(--gl-color-green-
|
|
760
|
+
--gl-status-success-icon-color: var(--gl-color-green-300); /* Used for the icon of a success status item when indicating a positive outcome, completion, or desired state. Clearly conveys a positive connotation. */
|
|
761
761
|
--gl-status-warning-background-color: var(--gl-color-orange-800); /* Used for the background of a warning status item when indicating a state that requires heightened awareness or caution, but is not necessarily problematic. Represents a state that warrants extra attention or care when interacting with the item. */
|
|
762
762
|
--gl-status-warning-text-color: var(--gl-color-orange-200); /* Used for the text of a warning status item when indicating a state that requires heightened awareness or caution, but is not necessarily problematic. Represents a state that warrants extra attention or care when interacting with the item. */
|
|
763
|
-
--gl-status-warning-icon-color: var(--gl-color-orange-
|
|
763
|
+
--gl-status-warning-icon-color: var(--gl-color-orange-300); /* Used for the icon of a warning status item when indicating a state that requires heightened awareness or caution, but is not necessarily problematic. Represents a state that warrants extra attention or care when interacting with the item. */
|
|
764
764
|
--gl-status-danger-background-color: var(--gl-color-red-800); /* Used for the background of a danger status item when indicating a critical or severely problematic current state. Clearly conveys a negative connotation, representing a serious, ongoing issue or undesired condition. */
|
|
765
765
|
--gl-status-danger-text-color: var(--gl-color-red-200); /* Used for the text of a danger status item when indicating a critical or severely problematic current state. Clearly conveys a negative connotation, representing a serious, ongoing issue or undesired condition. */
|
|
766
|
-
--gl-status-danger-icon-color: var(--gl-color-red-
|
|
766
|
+
--gl-status-danger-icon-color: var(--gl-color-red-300); /* Used for the icon of a danger status item when indicating a critical or severely problematic current state. Clearly conveys a negative connotation, representing a serious, ongoing issue or undesired condition. */
|
|
767
767
|
--gl-status-brand-background-color: var(--gl-color-purple-900); /* Used for the background of a brand-related status item when highlighting the state of unique features or elements specific to the GitLab brand identity. Helps distinguish and emphasize brand-specific elements within the interface. */
|
|
768
768
|
--gl-status-brand-text-color: var(--gl-color-purple-300); /* Used for the text of a brand-related status item when highlighting the state of unique features or elements specific to the GitLab brand identity. Helps distinguish and emphasize brand-specific elements within the interface. */
|
|
769
769
|
--gl-status-brand-icon-color: var(--gl-color-purple-500); /* Used for the icon of a brand-related status item when highlighting the state of unique features or elements specific to the GitLab brand identity. Helps distinguish and emphasize brand-specific elements within the interface. */
|
|
@@ -667,10 +667,10 @@ export const GL_LINK_MENTION_TEXT_COLOR_DEFAULT = '#9dc7f1';
|
|
|
667
667
|
export const GL_LINK_MENTION_TEXT_COLOR_CURRENT = '#f5d9a8';
|
|
668
668
|
export const GL_LINK_MENTION_BACKGROUND_COLOR_DEFAULT = '#064787';
|
|
669
669
|
export const GL_LINK_MENTION_BACKGROUND_COLOR_CURRENT = '#703800';
|
|
670
|
-
export const GL_PROGRESS_BAR_INDICATOR_COLOR_DEFAULT = '#
|
|
671
|
-
export const GL_PROGRESS_BAR_INDICATOR_COLOR_SUCCESS = '#
|
|
672
|
-
export const GL_PROGRESS_BAR_INDICATOR_COLOR_WARNING = '#
|
|
673
|
-
export const GL_PROGRESS_BAR_INDICATOR_COLOR_DANGER = '#
|
|
670
|
+
export const GL_PROGRESS_BAR_INDICATOR_COLOR_DEFAULT = '#63a6e9';
|
|
671
|
+
export const GL_PROGRESS_BAR_INDICATOR_COLOR_SUCCESS = '#52b87a';
|
|
672
|
+
export const GL_PROGRESS_BAR_INDICATOR_COLOR_WARNING = '#d99530';
|
|
673
|
+
export const GL_PROGRESS_BAR_INDICATOR_COLOR_DANGER = '#f6806d';
|
|
674
674
|
export const GL_PROGRESS_BAR_TRACK_COLOR = '#4c4b51';
|
|
675
675
|
export const GL_SKELETON_LOADER_BACKGROUND_COLOR = '#3a383f';
|
|
676
676
|
export const GL_SKELETON_LOADER_SHIMMER_COLOR = '#4c4b51';
|
|
@@ -921,19 +921,19 @@ export const GL_LINE_HEIGHT_52 = '3.25rem';
|
|
|
921
921
|
export const GL_SHADOW_COLOR_DEFAULT = 'rgba(05, 05, 06, 0.4)';
|
|
922
922
|
export const GL_STATUS_NEUTRAL_BACKGROUND_COLOR = '#3a383f';
|
|
923
923
|
export const GL_STATUS_NEUTRAL_TEXT_COLOR = '#bfbfc3';
|
|
924
|
-
export const GL_STATUS_NEUTRAL_ICON_COLOR = '#
|
|
924
|
+
export const GL_STATUS_NEUTRAL_ICON_COLOR = '#a4a3a8';
|
|
925
925
|
export const GL_STATUS_INFO_BACKGROUND_COLOR = '#064787';
|
|
926
926
|
export const GL_STATUS_INFO_TEXT_COLOR = '#9dc7f1';
|
|
927
|
-
export const GL_STATUS_INFO_ICON_COLOR = '#
|
|
927
|
+
export const GL_STATUS_INFO_ICON_COLOR = '#63a6e9';
|
|
928
928
|
export const GL_STATUS_SUCCESS_BACKGROUND_COLOR = '#0d532a';
|
|
929
929
|
export const GL_STATUS_SUCCESS_TEXT_COLOR = '#91d4a8';
|
|
930
|
-
export const GL_STATUS_SUCCESS_ICON_COLOR = '#
|
|
930
|
+
export const GL_STATUS_SUCCESS_ICON_COLOR = '#52b87a';
|
|
931
931
|
export const GL_STATUS_WARNING_BACKGROUND_COLOR = '#703800';
|
|
932
932
|
export const GL_STATUS_WARNING_TEXT_COLOR = '#e9be74';
|
|
933
|
-
export const GL_STATUS_WARNING_ICON_COLOR = '#
|
|
933
|
+
export const GL_STATUS_WARNING_ICON_COLOR = '#d99530';
|
|
934
934
|
export const GL_STATUS_DANGER_BACKGROUND_COLOR = '#8d1300';
|
|
935
935
|
export const GL_STATUS_DANGER_TEXT_COLOR = '#fcb5aa';
|
|
936
|
-
export const GL_STATUS_DANGER_ICON_COLOR = '#
|
|
936
|
+
export const GL_STATUS_DANGER_ICON_COLOR = '#f6806d';
|
|
937
937
|
export const GL_STATUS_BRAND_BACKGROUND_COLOR = '#2f2a6b';
|
|
938
938
|
export const GL_STATUS_BRAND_TEXT_COLOR = '#ac93e6';
|
|
939
939
|
export const GL_STATUS_BRAND_ICON_COLOR = '#7b58cf';
|
|
@@ -14818,7 +14818,7 @@
|
|
|
14818
14818
|
"indicator": {
|
|
14819
14819
|
"color": {
|
|
14820
14820
|
"default": {
|
|
14821
|
-
"$value": "#
|
|
14821
|
+
"$value": "#63a6e9",
|
|
14822
14822
|
"$type": "color",
|
|
14823
14823
|
"$description": "Used for the indicator color for the primary progress-bar variant.",
|
|
14824
14824
|
"filePath": "src/tokens/contextual/progress-bar.tokens.json",
|
|
@@ -14838,7 +14838,7 @@
|
|
|
14838
14838
|
]
|
|
14839
14839
|
},
|
|
14840
14840
|
"success": {
|
|
14841
|
-
"$value": "#
|
|
14841
|
+
"$value": "#52b87a",
|
|
14842
14842
|
"$type": "color",
|
|
14843
14843
|
"$description": "Used for the indicator color for the success progress-bar variant.",
|
|
14844
14844
|
"filePath": "src/tokens/contextual/progress-bar.tokens.json",
|
|
@@ -14858,7 +14858,7 @@
|
|
|
14858
14858
|
]
|
|
14859
14859
|
},
|
|
14860
14860
|
"warning": {
|
|
14861
|
-
"$value": "#
|
|
14861
|
+
"$value": "#d99530",
|
|
14862
14862
|
"$type": "color",
|
|
14863
14863
|
"$description": "Used for the indicator color for the warning progress-bar variant.",
|
|
14864
14864
|
"filePath": "src/tokens/contextual/progress-bar.tokens.json",
|
|
@@ -14878,7 +14878,7 @@
|
|
|
14878
14878
|
]
|
|
14879
14879
|
},
|
|
14880
14880
|
"danger": {
|
|
14881
|
-
"$value": "#
|
|
14881
|
+
"$value": "#f6806d",
|
|
14882
14882
|
"$type": "color",
|
|
14883
14883
|
"$description": "Used for the indicator color for the danger progress-bar variant.",
|
|
14884
14884
|
"filePath": "src/tokens/contextual/progress-bar.tokens.json",
|
|
@@ -21163,7 +21163,7 @@
|
|
|
21163
21163
|
},
|
|
21164
21164
|
"icon": {
|
|
21165
21165
|
"color": {
|
|
21166
|
-
"$value": "#
|
|
21166
|
+
"$value": "#a4a3a8",
|
|
21167
21167
|
"$type": "color",
|
|
21168
21168
|
"$description": "Used for the icon of a neutral status item when the status is neither positive nor negative, or when indicating a special but stable state.",
|
|
21169
21169
|
"filePath": "src/tokens/status.tokens.json",
|
|
@@ -21171,7 +21171,7 @@
|
|
|
21171
21171
|
"original": {
|
|
21172
21172
|
"$value": {
|
|
21173
21173
|
"default": "{color.neutral.500}",
|
|
21174
|
-
"dark": "{color.neutral.
|
|
21174
|
+
"dark": "{color.neutral.300}"
|
|
21175
21175
|
},
|
|
21176
21176
|
"$type": "color",
|
|
21177
21177
|
"$description": "Used for the icon of a neutral status item when the status is neither positive nor negative, or when indicating a special but stable state."
|
|
@@ -21240,7 +21240,7 @@
|
|
|
21240
21240
|
},
|
|
21241
21241
|
"icon": {
|
|
21242
21242
|
"color": {
|
|
21243
|
-
"$value": "#
|
|
21243
|
+
"$value": "#63a6e9",
|
|
21244
21244
|
"$type": "color",
|
|
21245
21245
|
"$description": "Used for the icon of an informational status item when indicating a noteworthy ongoing condition or a state of active progress.",
|
|
21246
21246
|
"filePath": "src/tokens/status.tokens.json",
|
|
@@ -21248,7 +21248,7 @@
|
|
|
21248
21248
|
"original": {
|
|
21249
21249
|
"$value": {
|
|
21250
21250
|
"default": "{color.blue.500}",
|
|
21251
|
-
"dark": "{color.blue.
|
|
21251
|
+
"dark": "{color.blue.300}"
|
|
21252
21252
|
},
|
|
21253
21253
|
"$type": "color",
|
|
21254
21254
|
"$description": "Used for the icon of an informational status item when indicating a noteworthy ongoing condition or a state of active progress."
|
|
@@ -21317,7 +21317,7 @@
|
|
|
21317
21317
|
},
|
|
21318
21318
|
"icon": {
|
|
21319
21319
|
"color": {
|
|
21320
|
-
"$value": "#
|
|
21320
|
+
"$value": "#52b87a",
|
|
21321
21321
|
"$type": "color",
|
|
21322
21322
|
"$description": "Used for the icon of a success status item when indicating a positive outcome, completion, or desired state. Clearly conveys a positive connotation.",
|
|
21323
21323
|
"filePath": "src/tokens/status.tokens.json",
|
|
@@ -21325,7 +21325,7 @@
|
|
|
21325
21325
|
"original": {
|
|
21326
21326
|
"$value": {
|
|
21327
21327
|
"default": "{color.green.500}",
|
|
21328
|
-
"dark": "{color.green.
|
|
21328
|
+
"dark": "{color.green.300}"
|
|
21329
21329
|
},
|
|
21330
21330
|
"$type": "color",
|
|
21331
21331
|
"$description": "Used for the icon of a success status item when indicating a positive outcome, completion, or desired state. Clearly conveys a positive connotation."
|
|
@@ -21394,7 +21394,7 @@
|
|
|
21394
21394
|
},
|
|
21395
21395
|
"icon": {
|
|
21396
21396
|
"color": {
|
|
21397
|
-
"$value": "#
|
|
21397
|
+
"$value": "#d99530",
|
|
21398
21398
|
"$type": "color",
|
|
21399
21399
|
"$description": "Used for the icon of a warning status item when indicating a state that requires heightened awareness or caution, but is not necessarily problematic. Represents a state that warrants extra attention or care when interacting with the item.",
|
|
21400
21400
|
"filePath": "src/tokens/status.tokens.json",
|
|
@@ -21402,7 +21402,7 @@
|
|
|
21402
21402
|
"original": {
|
|
21403
21403
|
"$value": {
|
|
21404
21404
|
"default": "{color.orange.500}",
|
|
21405
|
-
"dark": "{color.orange.
|
|
21405
|
+
"dark": "{color.orange.300}"
|
|
21406
21406
|
},
|
|
21407
21407
|
"$type": "color",
|
|
21408
21408
|
"$description": "Used for the icon of a warning status item when indicating a state that requires heightened awareness or caution, but is not necessarily problematic. Represents a state that warrants extra attention or care when interacting with the item."
|
|
@@ -21471,7 +21471,7 @@
|
|
|
21471
21471
|
},
|
|
21472
21472
|
"icon": {
|
|
21473
21473
|
"color": {
|
|
21474
|
-
"$value": "#
|
|
21474
|
+
"$value": "#f6806d",
|
|
21475
21475
|
"$type": "color",
|
|
21476
21476
|
"$description": "Used for the icon of a danger status item when indicating a critical or severely problematic current state. Clearly conveys a negative connotation, representing a serious, ongoing issue or undesired condition.",
|
|
21477
21477
|
"filePath": "src/tokens/status.tokens.json",
|
|
@@ -21479,7 +21479,7 @@
|
|
|
21479
21479
|
"original": {
|
|
21480
21480
|
"$value": {
|
|
21481
21481
|
"default": "{color.red.500}",
|
|
21482
|
-
"dark": "{color.red.
|
|
21482
|
+
"dark": "{color.red.300}"
|
|
21483
21483
|
},
|
|
21484
21484
|
"$type": "color",
|
|
21485
21485
|
"$description": "Used for the icon of a danger status item when indicating a critical or severely problematic current state. Clearly conveys a negative connotation, representing a serious, ongoing issue or undesired condition."
|
|
@@ -21171,7 +21171,7 @@
|
|
|
21171
21171
|
"original": {
|
|
21172
21172
|
"$value": {
|
|
21173
21173
|
"default": "{color.neutral.500}",
|
|
21174
|
-
"dark": "{color.neutral.
|
|
21174
|
+
"dark": "{color.neutral.300}"
|
|
21175
21175
|
},
|
|
21176
21176
|
"$type": "color",
|
|
21177
21177
|
"$description": "Used for the icon of a neutral status item when the status is neither positive nor negative, or when indicating a special but stable state."
|
|
@@ -21248,7 +21248,7 @@
|
|
|
21248
21248
|
"original": {
|
|
21249
21249
|
"$value": {
|
|
21250
21250
|
"default": "{color.blue.500}",
|
|
21251
|
-
"dark": "{color.blue.
|
|
21251
|
+
"dark": "{color.blue.300}"
|
|
21252
21252
|
},
|
|
21253
21253
|
"$type": "color",
|
|
21254
21254
|
"$description": "Used for the icon of an informational status item when indicating a noteworthy ongoing condition or a state of active progress."
|
|
@@ -21325,7 +21325,7 @@
|
|
|
21325
21325
|
"original": {
|
|
21326
21326
|
"$value": {
|
|
21327
21327
|
"default": "{color.green.500}",
|
|
21328
|
-
"dark": "{color.green.
|
|
21328
|
+
"dark": "{color.green.300}"
|
|
21329
21329
|
},
|
|
21330
21330
|
"$type": "color",
|
|
21331
21331
|
"$description": "Used for the icon of a success status item when indicating a positive outcome, completion, or desired state. Clearly conveys a positive connotation."
|
|
@@ -21402,7 +21402,7 @@
|
|
|
21402
21402
|
"original": {
|
|
21403
21403
|
"$value": {
|
|
21404
21404
|
"default": "{color.orange.500}",
|
|
21405
|
-
"dark": "{color.orange.
|
|
21405
|
+
"dark": "{color.orange.300}"
|
|
21406
21406
|
},
|
|
21407
21407
|
"$type": "color",
|
|
21408
21408
|
"$description": "Used for the icon of a warning status item when indicating a state that requires heightened awareness or caution, but is not necessarily problematic. Represents a state that warrants extra attention or care when interacting with the item."
|
|
@@ -21479,7 +21479,7 @@
|
|
|
21479
21479
|
"original": {
|
|
21480
21480
|
"$value": {
|
|
21481
21481
|
"default": "{color.red.500}",
|
|
21482
|
-
"dark": "{color.red.
|
|
21482
|
+
"dark": "{color.red.300}"
|
|
21483
21483
|
},
|
|
21484
21484
|
"$type": "color",
|
|
21485
21485
|
"$description": "Used for the icon of a danger status item when indicating a critical or severely problematic current state. Clearly conveys a negative connotation, representing a serious, ongoing issue or undesired condition."
|
|
@@ -749,19 +749,19 @@ $gl-icon-color-success: $gl-color-green-300; // Used for an icon associated with
|
|
|
749
749
|
$gl-shadow-color-default: $gl-color-alpha-dark-40; // Used for the default shadow color.
|
|
750
750
|
$gl-status-neutral-background-color: $gl-color-neutral-800; // Used for the background of a neutral status item when the status is neither positive nor negative, or when indicating a special but stable state.
|
|
751
751
|
$gl-status-neutral-text-color: $gl-color-neutral-200; // Used for the text of a neutral status item when the status is neither positive nor negative, or when indicating a special but stable state.
|
|
752
|
-
$gl-status-neutral-icon-color: $gl-color-neutral-
|
|
752
|
+
$gl-status-neutral-icon-color: $gl-color-neutral-300; // Used for the icon of a neutral status item when the status is neither positive nor negative, or when indicating a special but stable state.
|
|
753
753
|
$gl-status-info-background-color: $gl-color-blue-800; // Used for the background of an informational status item when indicating a noteworthy ongoing condition or a state of active progress.
|
|
754
754
|
$gl-status-info-text-color: $gl-color-blue-200; // Used for the text of an informational status item when indicating a noteworthy ongoing condition or a state of active progress.
|
|
755
|
-
$gl-status-info-icon-color: $gl-color-blue-
|
|
755
|
+
$gl-status-info-icon-color: $gl-color-blue-300; // Used for the icon of an informational status item when indicating a noteworthy ongoing condition or a state of active progress.
|
|
756
756
|
$gl-status-success-background-color: $gl-color-green-800; // Used for the background of a success status item when indicating a positive outcome, completion, or desired state. Clearly conveys a positive connotation.
|
|
757
757
|
$gl-status-success-text-color: $gl-color-green-200; // Used for the text of a success status item when indicating a positive outcome, completion, or desired state. Clearly conveys a positive connotation.
|
|
758
|
-
$gl-status-success-icon-color: $gl-color-green-
|
|
758
|
+
$gl-status-success-icon-color: $gl-color-green-300; // Used for the icon of a success status item when indicating a positive outcome, completion, or desired state. Clearly conveys a positive connotation.
|
|
759
759
|
$gl-status-warning-background-color: $gl-color-orange-800; // Used for the background of a warning status item when indicating a state that requires heightened awareness or caution, but is not necessarily problematic. Represents a state that warrants extra attention or care when interacting with the item.
|
|
760
760
|
$gl-status-warning-text-color: $gl-color-orange-200; // Used for the text of a warning status item when indicating a state that requires heightened awareness or caution, but is not necessarily problematic. Represents a state that warrants extra attention or care when interacting with the item.
|
|
761
|
-
$gl-status-warning-icon-color: $gl-color-orange-
|
|
761
|
+
$gl-status-warning-icon-color: $gl-color-orange-300; // Used for the icon of a warning status item when indicating a state that requires heightened awareness or caution, but is not necessarily problematic. Represents a state that warrants extra attention or care when interacting with the item.
|
|
762
762
|
$gl-status-danger-background-color: $gl-color-red-800; // Used for the background of a danger status item when indicating a critical or severely problematic current state. Clearly conveys a negative connotation, representing a serious, ongoing issue or undesired condition.
|
|
763
763
|
$gl-status-danger-text-color: $gl-color-red-200; // Used for the text of a danger status item when indicating a critical or severely problematic current state. Clearly conveys a negative connotation, representing a serious, ongoing issue or undesired condition.
|
|
764
|
-
$gl-status-danger-icon-color: $gl-color-red-
|
|
764
|
+
$gl-status-danger-icon-color: $gl-color-red-300; // Used for the icon of a danger status item when indicating a critical or severely problematic current state. Clearly conveys a negative connotation, representing a serious, ongoing issue or undesired condition.
|
|
765
765
|
$gl-status-brand-background-color: $gl-color-purple-900; // Used for the background of a brand-related status item when highlighting the state of unique features or elements specific to the GitLab brand identity. Helps distinguish and emphasize brand-specific elements within the interface.
|
|
766
766
|
$gl-status-brand-text-color: $gl-color-purple-300; // Used for the text of a brand-related status item when highlighting the state of unique features or elements specific to the GitLab brand identity. Helps distinguish and emphasize brand-specific elements within the interface.
|
|
767
767
|
$gl-status-brand-icon-color: $gl-color-purple-500; // Used for the icon of a brand-related status item when highlighting the state of unique features or elements specific to the GitLab brand identity. Helps distinguish and emphasize brand-specific elements within the interface.
|
package/package.json
CHANGED
|
@@ -86,6 +86,7 @@ $badge-min-width: $gl-spacing-scale-3;
|
|
|
86
86
|
justify-content: center;
|
|
87
87
|
gap: $gl-spacing-scale-2;
|
|
88
88
|
padding: $gl-spacing-scale-1 $badge-padding-horizontal;
|
|
89
|
+
@include gl-prefers-reduced-motion-transition;
|
|
89
90
|
transition: color $gl-transition-duration-medium $gl-easing-out-cubic,
|
|
90
91
|
background-color $gl-transition-duration-medium $gl-easing-out-cubic,
|
|
91
92
|
border-color $gl-transition-duration-medium $gl-easing-out-cubic,
|
|
@@ -95,10 +96,6 @@ $badge-min-width: $gl-spacing-scale-3;
|
|
|
95
96
|
max-width: 100%;
|
|
96
97
|
}
|
|
97
98
|
|
|
98
|
-
@media (prefers-reduced-motion) {
|
|
99
|
-
transition-duration: .01ms !important;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
99
|
@media (forced-colors: active) {
|
|
103
100
|
border: 1px solid;
|
|
104
101
|
}
|
|
@@ -120,7 +117,7 @@ $badge-min-width: $gl-spacing-scale-3;
|
|
|
120
117
|
a.gl-badge.disabled {
|
|
121
118
|
cursor: not-allowed;
|
|
122
119
|
}
|
|
123
|
-
|
|
120
|
+
|
|
124
121
|
|
|
125
122
|
/* Variants */
|
|
126
123
|
|
|
@@ -2,12 +2,12 @@ $gl-drawer-width: 400px;
|
|
|
2
2
|
$gl-sidebar-width: 290px;
|
|
3
3
|
$gl-drawer-scrim-gradient: linear-gradient(
|
|
4
4
|
to bottom,
|
|
5
|
-
|
|
6
|
-
var(--
|
|
5
|
+
var(--gl-color-alpha-0),
|
|
6
|
+
var(--gl-background-color-overlap)
|
|
7
7
|
);
|
|
8
8
|
|
|
9
9
|
.gl-drawer {
|
|
10
|
-
|
|
10
|
+
@apply gl-bg-overlap;
|
|
11
11
|
right: 0;
|
|
12
12
|
@apply gl-transition-all;
|
|
13
13
|
position: fixed;
|
|
@@ -21,14 +21,13 @@ $gl-drawer-scrim-gradient: linear-gradient(
|
|
|
21
21
|
@apply gl-flex-col;
|
|
22
22
|
|
|
23
23
|
.gl-drawer-header-sticky {
|
|
24
|
-
|
|
24
|
+
@apply gl-bg-overlap;
|
|
25
25
|
top: 0;
|
|
26
26
|
position: sticky;
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
.gl-drawer-default {
|
|
31
|
-
--drawer-variant-bg-color: var(--gl-background-color-default);
|
|
32
31
|
@include media-breakpoint-up(md) {
|
|
33
32
|
width: $gl-drawer-width;
|
|
34
33
|
}
|
|
@@ -40,7 +39,6 @@ $gl-drawer-scrim-gradient: linear-gradient(
|
|
|
40
39
|
}
|
|
41
40
|
|
|
42
41
|
.gl-drawer-sidebar {
|
|
43
|
-
--drawer-variant-bg-color: var(--gl-background-color-subtle);
|
|
44
42
|
@include media-breakpoint-up(md) {
|
|
45
43
|
width: $gl-sidebar-width;
|
|
46
44
|
}
|
|
@@ -60,8 +58,8 @@ $gl-drawer-scrim-gradient: linear-gradient(
|
|
|
60
58
|
}
|
|
61
59
|
|
|
62
60
|
.gl-drawer-footer {
|
|
63
|
-
@apply gl-
|
|
64
|
-
|
|
61
|
+
@apply gl-bg-overlap;
|
|
62
|
+
@apply gl-border-t;
|
|
65
63
|
@apply gl-p-5;
|
|
66
64
|
}
|
|
67
65
|
|
|
@@ -80,14 +78,12 @@ $gl-drawer-scrim-gradient: linear-gradient(
|
|
|
80
78
|
}
|
|
81
79
|
|
|
82
80
|
.gl-drawer-footer-sticky {
|
|
83
|
-
background-color: var(--drawer-variant-bg-color);
|
|
84
81
|
bottom: 0;
|
|
85
82
|
position: sticky;
|
|
86
83
|
}
|
|
87
84
|
|
|
88
85
|
.gl-drawer-header {
|
|
89
|
-
@apply gl-border-b
|
|
90
|
-
border-bottom-color: var(--gl-border-color-default);
|
|
86
|
+
@apply gl-border-b;
|
|
91
87
|
}
|
|
92
88
|
|
|
93
89
|
.gl-drawer-title {
|
|
@@ -130,8 +126,7 @@ $gl-drawer-scrim-gradient: linear-gradient(
|
|
|
130
126
|
}
|
|
131
127
|
|
|
132
128
|
.gl-drawer-body > * {
|
|
133
|
-
@apply gl-border-b
|
|
134
|
-
border-bottom-color: var(--gl-border-color-default);
|
|
129
|
+
@apply gl-border-b;
|
|
135
130
|
|
|
136
131
|
&:last-child {
|
|
137
132
|
@apply gl-border-none;
|
|
@@ -751,19 +751,19 @@
|
|
|
751
751
|
--gl-shadow-color-default: var(--gl-color-alpha-dark-40); /* Used for the default shadow color. */
|
|
752
752
|
--gl-status-neutral-background-color: var(--gl-color-neutral-800); /* Used for the background of a neutral status item when the status is neither positive nor negative, or when indicating a special but stable state. */
|
|
753
753
|
--gl-status-neutral-text-color: var(--gl-color-neutral-200); /* Used for the text of a neutral status item when the status is neither positive nor negative, or when indicating a special but stable state. */
|
|
754
|
-
--gl-status-neutral-icon-color: var(--gl-color-neutral-
|
|
754
|
+
--gl-status-neutral-icon-color: var(--gl-color-neutral-300); /* Used for the icon of a neutral status item when the status is neither positive nor negative, or when indicating a special but stable state. */
|
|
755
755
|
--gl-status-info-background-color: var(--gl-color-blue-800); /* Used for the background of an informational status item when indicating a noteworthy ongoing condition or a state of active progress. */
|
|
756
756
|
--gl-status-info-text-color: var(--gl-color-blue-200); /* Used for the text of an informational status item when indicating a noteworthy ongoing condition or a state of active progress. */
|
|
757
|
-
--gl-status-info-icon-color: var(--gl-color-blue-
|
|
757
|
+
--gl-status-info-icon-color: var(--gl-color-blue-300); /* Used for the icon of an informational status item when indicating a noteworthy ongoing condition or a state of active progress. */
|
|
758
758
|
--gl-status-success-background-color: var(--gl-color-green-800); /* Used for the background of a success status item when indicating a positive outcome, completion, or desired state. Clearly conveys a positive connotation. */
|
|
759
759
|
--gl-status-success-text-color: var(--gl-color-green-200); /* Used for the text of a success status item when indicating a positive outcome, completion, or desired state. Clearly conveys a positive connotation. */
|
|
760
|
-
--gl-status-success-icon-color: var(--gl-color-green-
|
|
760
|
+
--gl-status-success-icon-color: var(--gl-color-green-300); /* Used for the icon of a success status item when indicating a positive outcome, completion, or desired state. Clearly conveys a positive connotation. */
|
|
761
761
|
--gl-status-warning-background-color: var(--gl-color-orange-800); /* Used for the background of a warning status item when indicating a state that requires heightened awareness or caution, but is not necessarily problematic. Represents a state that warrants extra attention or care when interacting with the item. */
|
|
762
762
|
--gl-status-warning-text-color: var(--gl-color-orange-200); /* Used for the text of a warning status item when indicating a state that requires heightened awareness or caution, but is not necessarily problematic. Represents a state that warrants extra attention or care when interacting with the item. */
|
|
763
|
-
--gl-status-warning-icon-color: var(--gl-color-orange-
|
|
763
|
+
--gl-status-warning-icon-color: var(--gl-color-orange-300); /* Used for the icon of a warning status item when indicating a state that requires heightened awareness or caution, but is not necessarily problematic. Represents a state that warrants extra attention or care when interacting with the item. */
|
|
764
764
|
--gl-status-danger-background-color: var(--gl-color-red-800); /* Used for the background of a danger status item when indicating a critical or severely problematic current state. Clearly conveys a negative connotation, representing a serious, ongoing issue or undesired condition. */
|
|
765
765
|
--gl-status-danger-text-color: var(--gl-color-red-200); /* Used for the text of a danger status item when indicating a critical or severely problematic current state. Clearly conveys a negative connotation, representing a serious, ongoing issue or undesired condition. */
|
|
766
|
-
--gl-status-danger-icon-color: var(--gl-color-red-
|
|
766
|
+
--gl-status-danger-icon-color: var(--gl-color-red-300); /* Used for the icon of a danger status item when indicating a critical or severely problematic current state. Clearly conveys a negative connotation, representing a serious, ongoing issue or undesired condition. */
|
|
767
767
|
--gl-status-brand-background-color: var(--gl-color-purple-900); /* Used for the background of a brand-related status item when highlighting the state of unique features or elements specific to the GitLab brand identity. Helps distinguish and emphasize brand-specific elements within the interface. */
|
|
768
768
|
--gl-status-brand-text-color: var(--gl-color-purple-300); /* Used for the text of a brand-related status item when highlighting the state of unique features or elements specific to the GitLab brand identity. Helps distinguish and emphasize brand-specific elements within the interface. */
|
|
769
769
|
--gl-status-brand-icon-color: var(--gl-color-purple-500); /* Used for the icon of a brand-related status item when highlighting the state of unique features or elements specific to the GitLab brand identity. Helps distinguish and emphasize brand-specific elements within the interface. */
|
|
@@ -667,10 +667,10 @@ export const GL_LINK_MENTION_TEXT_COLOR_DEFAULT = '#9dc7f1';
|
|
|
667
667
|
export const GL_LINK_MENTION_TEXT_COLOR_CURRENT = '#f5d9a8';
|
|
668
668
|
export const GL_LINK_MENTION_BACKGROUND_COLOR_DEFAULT = '#064787';
|
|
669
669
|
export const GL_LINK_MENTION_BACKGROUND_COLOR_CURRENT = '#703800';
|
|
670
|
-
export const GL_PROGRESS_BAR_INDICATOR_COLOR_DEFAULT = '#
|
|
671
|
-
export const GL_PROGRESS_BAR_INDICATOR_COLOR_SUCCESS = '#
|
|
672
|
-
export const GL_PROGRESS_BAR_INDICATOR_COLOR_WARNING = '#
|
|
673
|
-
export const GL_PROGRESS_BAR_INDICATOR_COLOR_DANGER = '#
|
|
670
|
+
export const GL_PROGRESS_BAR_INDICATOR_COLOR_DEFAULT = '#63a6e9';
|
|
671
|
+
export const GL_PROGRESS_BAR_INDICATOR_COLOR_SUCCESS = '#52b87a';
|
|
672
|
+
export const GL_PROGRESS_BAR_INDICATOR_COLOR_WARNING = '#d99530';
|
|
673
|
+
export const GL_PROGRESS_BAR_INDICATOR_COLOR_DANGER = '#f6806d';
|
|
674
674
|
export const GL_PROGRESS_BAR_TRACK_COLOR = '#4c4b51';
|
|
675
675
|
export const GL_SKELETON_LOADER_BACKGROUND_COLOR = '#3a383f';
|
|
676
676
|
export const GL_SKELETON_LOADER_SHIMMER_COLOR = '#4c4b51';
|
|
@@ -921,19 +921,19 @@ export const GL_LINE_HEIGHT_52 = '3.25rem';
|
|
|
921
921
|
export const GL_SHADOW_COLOR_DEFAULT = 'rgba(05, 05, 06, 0.4)';
|
|
922
922
|
export const GL_STATUS_NEUTRAL_BACKGROUND_COLOR = '#3a383f';
|
|
923
923
|
export const GL_STATUS_NEUTRAL_TEXT_COLOR = '#bfbfc3';
|
|
924
|
-
export const GL_STATUS_NEUTRAL_ICON_COLOR = '#
|
|
924
|
+
export const GL_STATUS_NEUTRAL_ICON_COLOR = '#a4a3a8';
|
|
925
925
|
export const GL_STATUS_INFO_BACKGROUND_COLOR = '#064787';
|
|
926
926
|
export const GL_STATUS_INFO_TEXT_COLOR = '#9dc7f1';
|
|
927
|
-
export const GL_STATUS_INFO_ICON_COLOR = '#
|
|
927
|
+
export const GL_STATUS_INFO_ICON_COLOR = '#63a6e9';
|
|
928
928
|
export const GL_STATUS_SUCCESS_BACKGROUND_COLOR = '#0d532a';
|
|
929
929
|
export const GL_STATUS_SUCCESS_TEXT_COLOR = '#91d4a8';
|
|
930
|
-
export const GL_STATUS_SUCCESS_ICON_COLOR = '#
|
|
930
|
+
export const GL_STATUS_SUCCESS_ICON_COLOR = '#52b87a';
|
|
931
931
|
export const GL_STATUS_WARNING_BACKGROUND_COLOR = '#703800';
|
|
932
932
|
export const GL_STATUS_WARNING_TEXT_COLOR = '#e9be74';
|
|
933
|
-
export const GL_STATUS_WARNING_ICON_COLOR = '#
|
|
933
|
+
export const GL_STATUS_WARNING_ICON_COLOR = '#d99530';
|
|
934
934
|
export const GL_STATUS_DANGER_BACKGROUND_COLOR = '#8d1300';
|
|
935
935
|
export const GL_STATUS_DANGER_TEXT_COLOR = '#fcb5aa';
|
|
936
|
-
export const GL_STATUS_DANGER_ICON_COLOR = '#
|
|
936
|
+
export const GL_STATUS_DANGER_ICON_COLOR = '#f6806d';
|
|
937
937
|
export const GL_STATUS_BRAND_BACKGROUND_COLOR = '#2f2a6b';
|
|
938
938
|
export const GL_STATUS_BRAND_TEXT_COLOR = '#ac93e6';
|
|
939
939
|
export const GL_STATUS_BRAND_ICON_COLOR = '#7b58cf';
|
|
@@ -14818,7 +14818,7 @@
|
|
|
14818
14818
|
"indicator": {
|
|
14819
14819
|
"color": {
|
|
14820
14820
|
"default": {
|
|
14821
|
-
"$value": "#
|
|
14821
|
+
"$value": "#63a6e9",
|
|
14822
14822
|
"$type": "color",
|
|
14823
14823
|
"$description": "Used for the indicator color for the primary progress-bar variant.",
|
|
14824
14824
|
"filePath": "src/tokens/contextual/progress-bar.tokens.json",
|
|
@@ -14838,7 +14838,7 @@
|
|
|
14838
14838
|
]
|
|
14839
14839
|
},
|
|
14840
14840
|
"success": {
|
|
14841
|
-
"$value": "#
|
|
14841
|
+
"$value": "#52b87a",
|
|
14842
14842
|
"$type": "color",
|
|
14843
14843
|
"$description": "Used for the indicator color for the success progress-bar variant.",
|
|
14844
14844
|
"filePath": "src/tokens/contextual/progress-bar.tokens.json",
|
|
@@ -14858,7 +14858,7 @@
|
|
|
14858
14858
|
]
|
|
14859
14859
|
},
|
|
14860
14860
|
"warning": {
|
|
14861
|
-
"$value": "#
|
|
14861
|
+
"$value": "#d99530",
|
|
14862
14862
|
"$type": "color",
|
|
14863
14863
|
"$description": "Used for the indicator color for the warning progress-bar variant.",
|
|
14864
14864
|
"filePath": "src/tokens/contextual/progress-bar.tokens.json",
|
|
@@ -14878,7 +14878,7 @@
|
|
|
14878
14878
|
]
|
|
14879
14879
|
},
|
|
14880
14880
|
"danger": {
|
|
14881
|
-
"$value": "#
|
|
14881
|
+
"$value": "#f6806d",
|
|
14882
14882
|
"$type": "color",
|
|
14883
14883
|
"$description": "Used for the indicator color for the danger progress-bar variant.",
|
|
14884
14884
|
"filePath": "src/tokens/contextual/progress-bar.tokens.json",
|
|
@@ -21163,7 +21163,7 @@
|
|
|
21163
21163
|
},
|
|
21164
21164
|
"icon": {
|
|
21165
21165
|
"color": {
|
|
21166
|
-
"$value": "#
|
|
21166
|
+
"$value": "#a4a3a8",
|
|
21167
21167
|
"$type": "color",
|
|
21168
21168
|
"$description": "Used for the icon of a neutral status item when the status is neither positive nor negative, or when indicating a special but stable state.",
|
|
21169
21169
|
"filePath": "src/tokens/status.tokens.json",
|
|
@@ -21171,7 +21171,7 @@
|
|
|
21171
21171
|
"original": {
|
|
21172
21172
|
"$value": {
|
|
21173
21173
|
"default": "{color.neutral.500}",
|
|
21174
|
-
"dark": "{color.neutral.
|
|
21174
|
+
"dark": "{color.neutral.300}"
|
|
21175
21175
|
},
|
|
21176
21176
|
"$type": "color",
|
|
21177
21177
|
"$description": "Used for the icon of a neutral status item when the status is neither positive nor negative, or when indicating a special but stable state."
|
|
@@ -21240,7 +21240,7 @@
|
|
|
21240
21240
|
},
|
|
21241
21241
|
"icon": {
|
|
21242
21242
|
"color": {
|
|
21243
|
-
"$value": "#
|
|
21243
|
+
"$value": "#63a6e9",
|
|
21244
21244
|
"$type": "color",
|
|
21245
21245
|
"$description": "Used for the icon of an informational status item when indicating a noteworthy ongoing condition or a state of active progress.",
|
|
21246
21246
|
"filePath": "src/tokens/status.tokens.json",
|
|
@@ -21248,7 +21248,7 @@
|
|
|
21248
21248
|
"original": {
|
|
21249
21249
|
"$value": {
|
|
21250
21250
|
"default": "{color.blue.500}",
|
|
21251
|
-
"dark": "{color.blue.
|
|
21251
|
+
"dark": "{color.blue.300}"
|
|
21252
21252
|
},
|
|
21253
21253
|
"$type": "color",
|
|
21254
21254
|
"$description": "Used for the icon of an informational status item when indicating a noteworthy ongoing condition or a state of active progress."
|
|
@@ -21317,7 +21317,7 @@
|
|
|
21317
21317
|
},
|
|
21318
21318
|
"icon": {
|
|
21319
21319
|
"color": {
|
|
21320
|
-
"$value": "#
|
|
21320
|
+
"$value": "#52b87a",
|
|
21321
21321
|
"$type": "color",
|
|
21322
21322
|
"$description": "Used for the icon of a success status item when indicating a positive outcome, completion, or desired state. Clearly conveys a positive connotation.",
|
|
21323
21323
|
"filePath": "src/tokens/status.tokens.json",
|
|
@@ -21325,7 +21325,7 @@
|
|
|
21325
21325
|
"original": {
|
|
21326
21326
|
"$value": {
|
|
21327
21327
|
"default": "{color.green.500}",
|
|
21328
|
-
"dark": "{color.green.
|
|
21328
|
+
"dark": "{color.green.300}"
|
|
21329
21329
|
},
|
|
21330
21330
|
"$type": "color",
|
|
21331
21331
|
"$description": "Used for the icon of a success status item when indicating a positive outcome, completion, or desired state. Clearly conveys a positive connotation."
|
|
@@ -21394,7 +21394,7 @@
|
|
|
21394
21394
|
},
|
|
21395
21395
|
"icon": {
|
|
21396
21396
|
"color": {
|
|
21397
|
-
"$value": "#
|
|
21397
|
+
"$value": "#d99530",
|
|
21398
21398
|
"$type": "color",
|
|
21399
21399
|
"$description": "Used for the icon of a warning status item when indicating a state that requires heightened awareness or caution, but is not necessarily problematic. Represents a state that warrants extra attention or care when interacting with the item.",
|
|
21400
21400
|
"filePath": "src/tokens/status.tokens.json",
|
|
@@ -21402,7 +21402,7 @@
|
|
|
21402
21402
|
"original": {
|
|
21403
21403
|
"$value": {
|
|
21404
21404
|
"default": "{color.orange.500}",
|
|
21405
|
-
"dark": "{color.orange.
|
|
21405
|
+
"dark": "{color.orange.300}"
|
|
21406
21406
|
},
|
|
21407
21407
|
"$type": "color",
|
|
21408
21408
|
"$description": "Used for the icon of a warning status item when indicating a state that requires heightened awareness or caution, but is not necessarily problematic. Represents a state that warrants extra attention or care when interacting with the item."
|
|
@@ -21471,7 +21471,7 @@
|
|
|
21471
21471
|
},
|
|
21472
21472
|
"icon": {
|
|
21473
21473
|
"color": {
|
|
21474
|
-
"$value": "#
|
|
21474
|
+
"$value": "#f6806d",
|
|
21475
21475
|
"$type": "color",
|
|
21476
21476
|
"$description": "Used for the icon of a danger status item when indicating a critical or severely problematic current state. Clearly conveys a negative connotation, representing a serious, ongoing issue or undesired condition.",
|
|
21477
21477
|
"filePath": "src/tokens/status.tokens.json",
|
|
@@ -21479,7 +21479,7 @@
|
|
|
21479
21479
|
"original": {
|
|
21480
21480
|
"$value": {
|
|
21481
21481
|
"default": "{color.red.500}",
|
|
21482
|
-
"dark": "{color.red.
|
|
21482
|
+
"dark": "{color.red.300}"
|
|
21483
21483
|
},
|
|
21484
21484
|
"$type": "color",
|
|
21485
21485
|
"$description": "Used for the icon of a danger status item when indicating a critical or severely problematic current state. Clearly conveys a negative connotation, representing a serious, ongoing issue or undesired condition."
|