@gitlab/ui 132.1.0 → 132.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (232) hide show
  1. package/dist/components/base/accordion/accordion_item.js +1 -3
  2. package/dist/components/base/avatar/avatar.js +76 -5
  3. package/dist/components/base/badge/badge.js +5 -7
  4. package/dist/components/base/button/button.js +1 -3
  5. package/dist/components/base/collapse/collapse.js +2 -6
  6. package/dist/components/base/datepicker/datepicker.js +4 -5
  7. package/dist/components/base/daterange_picker/daterange_picker.js +2 -4
  8. package/dist/components/base/dropdown/dropdown_item.js +3 -4
  9. package/dist/components/base/filtered_search/filtered_search.js +55 -7
  10. package/dist/components/base/filtered_search/filtered_search_token.js +6 -14
  11. package/dist/components/base/filtered_search/filtered_search_token_segment.js +39 -19
  12. package/dist/components/base/filtered_search/filtered_search_utils.js +57 -7
  13. package/dist/components/base/form/form_checkbox/form_checkbox.js +13 -26
  14. package/dist/components/base/form/form_checkbox/form_checkbox_group.js +1 -3
  15. package/dist/components/base/form/form_fields/form_fields_loop.js +57 -6
  16. package/dist/components/base/form/form_group/form_group.js +1 -3
  17. package/dist/components/base/form/form_input/form_input.js +95 -41
  18. package/dist/components/base/form/form_input_group/form_input_group.js +2 -4
  19. package/dist/components/base/form/form_radio/form_radio.js +5 -9
  20. package/dist/components/base/form/form_radio_group/form_radio_group.js +1 -3
  21. package/dist/components/base/form/form_select/form_select.js +76 -5
  22. package/dist/components/base/infinite_scroll/infinite_scroll.js +7 -14
  23. package/dist/components/base/link/link.js +26 -7
  24. package/dist/components/base/new_dropdowns/base_dropdown/base_dropdown.js +93 -32
  25. package/dist/components/base/new_dropdowns/disclosure/disclosure_dropdown.js +2 -6
  26. package/dist/components/base/new_dropdowns/disclosure/disclosure_dropdown_item.js +2 -6
  27. package/dist/components/base/new_dropdowns/listbox/listbox.js +5 -13
  28. package/dist/components/base/new_dropdowns/listbox/listbox_item.js +1 -3
  29. package/dist/components/base/new_dropdowns/listbox/mock_data.js +2 -6
  30. package/dist/components/base/new_dropdowns/listbox/utils.js +6 -11
  31. package/dist/components/base/path/path.js +1 -5
  32. package/dist/components/base/search_box_by_type/search_box_by_type.js +2 -6
  33. package/dist/components/base/skeleton_loader/skeleton_loader.js +3 -5
  34. package/dist/components/base/table/table.js +32 -21
  35. package/dist/components/base/table_lite/table_lite.js +1 -3
  36. package/dist/components/base/tabs/tab/tab.js +1 -3
  37. package/dist/components/base/tabs/tabs/scrollable_tabs.js +1 -5
  38. package/dist/components/base/token_selector/token_selector.js +2 -6
  39. package/dist/components/charts/area/area.js +6 -7
  40. package/dist/components/charts/column/column.js +11 -15
  41. package/dist/components/charts/discrete_scatter/discrete_scatter.js +57 -5
  42. package/dist/components/charts/gauge/gauge.js +13 -21
  43. package/dist/components/charts/heatmap/heatmap.js +66 -18
  44. package/dist/components/charts/legend/legend.js +59 -13
  45. package/dist/components/charts/line/line.js +6 -7
  46. package/dist/components/charts/shared/tooltip/tooltip.js +11 -18
  47. package/dist/components/charts/sparkline/sparkline.js +72 -19
  48. package/dist/components/charts/stacked_column/stacked_column.js +18 -31
  49. package/dist/components/dashboards/dashboard_layout/grid_layout/grid_layout.js +37 -21
  50. package/dist/components/utilities/friendly_wrap/friendly_wrap.js +3 -7
  51. package/dist/components/utilities/intersperse/intersperse.js +6 -11
  52. package/dist/components/utilities/sprintf/sprintf.js +58 -7
  53. package/dist/components/utilities/truncate/truncate.js +2 -4
  54. package/dist/components/utilities/truncate_text/truncate_text.js +1 -3
  55. package/dist/config.js +3 -4
  56. package/dist/directives/hover_load/hover_load.js +1 -3
  57. package/dist/directives/outside/outside.js +9 -16
  58. package/dist/directives/resize_observer/resize_observer.js +6 -8
  59. package/dist/directives/safe_html/safe_html.js +1 -3
  60. package/dist/directives/safe_link/safe_link.js +11 -14
  61. package/dist/index.css +2 -2
  62. package/dist/index.css.map +1 -1
  63. package/dist/tokens/build/js/tokens.dark.js +95 -95
  64. package/dist/tokens/build/js/tokens.js +74 -74
  65. package/dist/tokens/common_story_options.js +7 -8
  66. package/dist/utils/charts/config.js +122 -90
  67. package/dist/utils/constants.js +26 -1
  68. package/dist/utils/data_utils.js +28 -1
  69. package/dist/utils/form_options_utils.js +4 -6
  70. package/dist/utils/is_slot_empty.js +3 -5
  71. package/dist/utils/stories_utils.js +8 -8
  72. package/dist/utils/use_mock_intersection_observer.js +63 -12
  73. package/dist/utils/utils.js +76 -19
  74. package/dist/vendor/bootstrap-vue/src/components/button/button-close.js +8 -11
  75. package/dist/vendor/bootstrap-vue/src/components/button/button.js +12 -17
  76. package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-divider.js +3 -6
  77. package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-form.js +6 -9
  78. package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-group.js +14 -19
  79. package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-header.js +8 -13
  80. package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-item-button.js +9 -12
  81. package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-item.js +8 -11
  82. package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-text.js +9 -14
  83. package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown.js +34 -43
  84. package/dist/vendor/bootstrap-vue/src/components/form/form-invalid-feedback.js +5 -9
  85. package/dist/vendor/bootstrap-vue/src/components/form/form-text.js +7 -10
  86. package/dist/vendor/bootstrap-vue/src/components/form/form-valid-feedback.js +5 -9
  87. package/dist/vendor/bootstrap-vue/src/components/form/form.js +7 -10
  88. package/dist/vendor/bootstrap-vue/src/components/form-group/form-group.js +25 -33
  89. package/dist/vendor/bootstrap-vue/src/components/form-select/form-select-option-group.js +6 -11
  90. package/dist/vendor/bootstrap-vue/src/components/form-select/form-select-option.js +6 -12
  91. package/dist/vendor/bootstrap-vue/src/components/form-select/form-select.js +28 -29
  92. package/dist/vendor/bootstrap-vue/src/components/form-textarea/form-textarea.js +7 -10
  93. package/dist/vendor/bootstrap-vue/src/components/layout/col.js +7 -11
  94. package/dist/vendor/bootstrap-vue/src/components/layout/form-row.js +3 -5
  95. package/dist/vendor/bootstrap-vue/src/components/link/link.js +19 -31
  96. package/dist/vendor/bootstrap-vue/src/components/modal/helpers/modal-manager.js +3 -4
  97. package/dist/vendor/bootstrap-vue/src/components/modal/modal.js +59 -68
  98. package/dist/vendor/bootstrap-vue/src/components/popover/helpers/bv-popover-template.js +2 -4
  99. package/dist/vendor/bootstrap-vue/src/components/popover/popover.js +4 -5
  100. package/dist/vendor/bootstrap-vue/src/components/table/helpers/default-sort-compare.js +11 -7
  101. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-bottom-row.js +4 -6
  102. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-busy.js +3 -6
  103. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-caption.js +4 -7
  104. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-colgroup.js +1 -3
  105. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-empty.js +16 -20
  106. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-filtering.js +14 -25
  107. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-items.js +23 -35
  108. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-pagination.js +6 -8
  109. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-provider.js +8 -10
  110. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-selectable.js +8 -15
  111. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-sorting.js +33 -41
  112. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-stacked.js +3 -8
  113. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-table-renderer.js +38 -50
  114. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-tbody-row.js +19 -31
  115. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-tbody.js +13 -23
  116. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-tfoot.js +5 -6
  117. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-thead.js +17 -21
  118. package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-top-row.js +4 -6
  119. package/dist/vendor/bootstrap-vue/src/components/table/helpers/sanitize-row.js +1 -3
  120. package/dist/vendor/bootstrap-vue/src/components/table/tbody.js +3 -6
  121. package/dist/vendor/bootstrap-vue/src/components/table/td.js +9 -14
  122. package/dist/vendor/bootstrap-vue/src/components/table/tfoot.js +1 -2
  123. package/dist/vendor/bootstrap-vue/src/components/table/thead.js +1 -2
  124. package/dist/vendor/bootstrap-vue/src/components/table/tr.js +2 -5
  125. package/dist/vendor/bootstrap-vue/src/components/tabs/tab.js +19 -36
  126. package/dist/vendor/bootstrap-vue/src/components/tabs/tabs.js +66 -81
  127. package/dist/vendor/bootstrap-vue/src/components/tooltip/helpers/bv-popper.js +2 -6
  128. package/dist/vendor/bootstrap-vue/src/components/tooltip/helpers/bv-tooltip-template.js +5 -11
  129. package/dist/vendor/bootstrap-vue/src/components/tooltip/helpers/bv-tooltip.js +8 -14
  130. package/dist/vendor/bootstrap-vue/src/components/tooltip/tooltip.js +19 -22
  131. package/dist/vendor/bootstrap-vue/src/components/transition/bv-transition.js +7 -10
  132. package/dist/vendor/bootstrap-vue/src/components/transporter/transporter.js +7 -14
  133. package/dist/vendor/bootstrap-vue/src/directives/modal/modal.js +4 -5
  134. package/dist/vendor/bootstrap-vue/src/directives/visible/visible.js +5 -9
  135. package/dist/vendor/bootstrap-vue/src/mixins/dropdown.js +17 -29
  136. package/dist/vendor/bootstrap-vue/src/mixins/form-control.js +6 -7
  137. package/dist/vendor/bootstrap-vue/src/mixins/form-custom.js +1 -2
  138. package/dist/vendor/bootstrap-vue/src/mixins/form-options.js +5 -6
  139. package/dist/vendor/bootstrap-vue/src/mixins/form-size.js +1 -2
  140. package/dist/vendor/bootstrap-vue/src/mixins/form-state.js +1 -2
  141. package/dist/vendor/bootstrap-vue/src/mixins/form-text.js +29 -43
  142. package/dist/vendor/bootstrap-vue/src/mixins/id.js +1 -2
  143. package/dist/vendor/bootstrap-vue/src/utils/create-new-child-component.js +62 -15
  144. package/dist/vendor/bootstrap-vue/src/utils/dom.js +3 -9
  145. package/dist/vendor/bootstrap-vue/src/utils/events.js +7 -5
  146. package/dist/vendor/bootstrap-vue/src/utils/plugins.js +4 -5
  147. package/dist/vendor/bootstrap-vue/src/utils/router.js +9 -13
  148. package/package.json +9 -7
  149. package/src/scss/gitlab_ui.scss +3 -0
  150. package/src/scss/storybook.scss +3 -0
  151. package/src/scss/themes.scss +84 -0
  152. package/src/tokens/build/css/tokens.css +142 -142
  153. package/src/tokens/build/css/tokens.dark.css +138 -138
  154. package/src/tokens/build/docs/tokens-tailwind-docs.dark.json +580 -580
  155. package/src/tokens/build/docs/tokens-tailwind-docs.json +495 -495
  156. package/src/tokens/build/figma/constants.dark.json +799 -799
  157. package/src/tokens/build/figma/constants.json +799 -799
  158. package/src/tokens/build/js/tokens.dark.js +95 -95
  159. package/src/tokens/build/js/tokens.js +74 -74
  160. package/src/tokens/build/json/tokens.dark.json +1668 -1668
  161. package/src/tokens/build/json/tokens.json +1647 -1647
  162. package/src/tokens/build/scss/_tokens.dark.scss +138 -138
  163. package/src/tokens/build/scss/_tokens.scss +142 -142
  164. package/src/tokens/build/scss/_tokens_custom_properties.scss +73 -73
  165. package/src/tokens/constant/color.blue.tokens.json +182 -0
  166. package/src/tokens/constant/color.brand.tokens.json +252 -0
  167. package/src/tokens/constant/color.data.tokens.json +894 -0
  168. package/src/tokens/constant/color.green.tokens.json +182 -0
  169. package/src/tokens/constant/color.neutral.tokens.json +230 -0
  170. package/src/tokens/constant/color.orange.tokens.json +182 -0
  171. package/src/tokens/constant/color.purple.tokens.json +182 -0
  172. package/src/tokens/constant/color.red.tokens.json +182 -0
  173. package/src/tokens/constant/color.theme.tokens.json +1168 -0
  174. package/src/tokens/deprecated/deprecated.color.tokens.json +134 -1340
  175. package/src/utils/constants.js +9 -0
  176. package/src/vendor/bootstrap-vue/src/components/button/button-close.js +4 -5
  177. package/src/vendor/bootstrap-vue/src/components/button/button.js +7 -8
  178. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-divider.js +1 -2
  179. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-form.js +2 -8
  180. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-group.js +6 -7
  181. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-header.js +3 -4
  182. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-item-button.js +6 -12
  183. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-item.js +2 -3
  184. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-text.js +3 -4
  185. package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown.js +19 -26
  186. package/src/vendor/bootstrap-vue/src/components/form/form-text.js +4 -6
  187. package/src/vendor/bootstrap-vue/src/components/form/form.js +4 -6
  188. package/src/vendor/bootstrap-vue/src/components/form-group/form-group.js +14 -20
  189. package/src/vendor/bootstrap-vue/src/components/form-select/form-select-option-group.js +1 -2
  190. package/src/vendor/bootstrap-vue/src/components/form-select/form-select-option.js +1 -4
  191. package/src/vendor/bootstrap-vue/src/components/form-select/form-select.js +13 -14
  192. package/src/vendor/bootstrap-vue/src/components/form-textarea/form-textarea.js +5 -6
  193. package/src/vendor/bootstrap-vue/src/components/modal/modal.js +53 -62
  194. package/src/vendor/bootstrap-vue/src/components/popover/popover.js +4 -10
  195. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-busy.js +1 -2
  196. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-caption.js +2 -3
  197. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-empty.js +5 -6
  198. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-filtering.js +5 -13
  199. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-items.js +12 -21
  200. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-pagination.js +2 -3
  201. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-provider.js +5 -11
  202. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-selectable.js +4 -5
  203. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-sorting.js +14 -21
  204. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-stacked.js +1 -2
  205. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-table-renderer.js +14 -20
  206. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-tbody-row.js +3 -9
  207. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-tbody.js +1 -2
  208. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-tfoot.js +5 -11
  209. package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-thead.js +4 -5
  210. package/src/vendor/bootstrap-vue/src/components/table/tbody.js +2 -3
  211. package/src/vendor/bootstrap-vue/src/components/table/td.js +5 -6
  212. package/src/vendor/bootstrap-vue/src/components/table/tfoot.js +1 -2
  213. package/src/vendor/bootstrap-vue/src/components/table/thead.js +1 -2
  214. package/src/vendor/bootstrap-vue/src/components/table/tr.js +1 -2
  215. package/src/vendor/bootstrap-vue/src/components/tabs/tab.js +10 -16
  216. package/src/vendor/bootstrap-vue/src/components/tabs/tabs.js +33 -39
  217. package/src/vendor/bootstrap-vue/src/components/tooltip/tooltip.js +17 -25
  218. package/src/vendor/bootstrap-vue/src/components/transition/bv-transition.js +4 -5
  219. package/src/vendor/bootstrap-vue/src/components/transporter/transporter.js +4 -10
  220. package/src/vendor/bootstrap-vue/src/mixins/dropdown.js +9 -15
  221. package/src/vendor/bootstrap-vue/src/mixins/form-control.js +6 -7
  222. package/src/vendor/bootstrap-vue/src/mixins/form-custom.js +1 -2
  223. package/src/vendor/bootstrap-vue/src/mixins/form-options.js +5 -6
  224. package/src/vendor/bootstrap-vue/src/mixins/form-size.js +1 -2
  225. package/src/vendor/bootstrap-vue/src/mixins/form-state.js +1 -2
  226. package/src/vendor/bootstrap-vue/src/mixins/form-text.js +21 -33
  227. package/src/vendor/bootstrap-vue/src/mixins/id.js +1 -2
  228. package/dist/vendor/bootstrap-vue/src/mixins/model.js +0 -10
  229. package/dist/vendor/bootstrap-vue/src/utils/model.js +0 -33
  230. package/src/tokens/constant/color.tokens.json +0 -3422
  231. package/src/vendor/bootstrap-vue/src/mixins/model.js +0 -5
  232. package/src/vendor/bootstrap-vue/src/utils/model.js +0 -29
@@ -43,64 +43,21 @@ export const GL_COLOR_BLUE_700 = '#2f5ca0';
43
43
  export const GL_COLOR_BLUE_800 = '#284779';
44
44
  export const GL_COLOR_BLUE_900 = '#213454';
45
45
  export const GL_COLOR_BLUE_950 = '#1d283e';
46
- export const GL_COLOR_NEUTRAL_0 = '#fff';
47
- export const GL_COLOR_NEUTRAL_10 = '#fbfafd';
48
- export const GL_COLOR_NEUTRAL_50 = '#ececef';
49
- export const GL_COLOR_NEUTRAL_100 = '#dcdcde';
50
- export const GL_COLOR_NEUTRAL_200 = '#bfbfc3';
51
- export const GL_COLOR_NEUTRAL_300 = '#a4a3a8';
52
- export const GL_COLOR_NEUTRAL_400 = '#89888d';
53
- export const GL_COLOR_NEUTRAL_500 = '#737278';
54
- export const GL_COLOR_NEUTRAL_600 = '#626168';
55
- export const GL_COLOR_NEUTRAL_700 = '#4c4b51';
56
- export const GL_COLOR_NEUTRAL_800 = '#3a383f';
57
- export const GL_COLOR_NEUTRAL_900 = '#28272d';
58
- export const GL_COLOR_NEUTRAL_950 = '#18171d';
59
- export const GL_COLOR_NEUTRAL_1000 = '#050506';
60
- export const GL_COLOR_GREEN_50 = '#ecf4ee';
61
- export const GL_COLOR_GREEN_100 = '#c3e6cd';
62
- export const GL_COLOR_GREEN_200 = '#91d4a8';
63
- export const GL_COLOR_GREEN_300 = '#52b87a';
64
- export const GL_COLOR_GREEN_400 = '#2da160';
65
- export const GL_COLOR_GREEN_500 = '#108548';
66
- export const GL_COLOR_GREEN_600 = '#2f7549';
67
- export const GL_COLOR_GREEN_700 = '#306440';
68
- export const GL_COLOR_GREEN_800 = '#225131';
69
- export const GL_COLOR_GREEN_900 = '#1e3e28';
70
- export const GL_COLOR_GREEN_950 = '#17291c';
71
- export const GL_COLOR_ORANGE_50 = '#fdf1dd';
72
- export const GL_COLOR_ORANGE_100 = '#f5d9a8';
73
- export const GL_COLOR_ORANGE_200 = '#e9be74';
74
- export const GL_COLOR_ORANGE_300 = '#d99530';
75
- export const GL_COLOR_ORANGE_400 = '#c17d10';
76
- export const GL_COLOR_ORANGE_500 = '#ab6100';
77
- export const GL_COLOR_ORANGE_600 = '#995715';
78
- export const GL_COLOR_ORANGE_700 = '#894b16';
79
- export const GL_COLOR_ORANGE_800 = '#693c14';
80
- export const GL_COLOR_ORANGE_900 = '#532e16';
81
- export const GL_COLOR_ORANGE_950 = '#382315';
82
- export const GL_COLOR_PURPLE_50 = '#f4f0ff';
83
- export const GL_COLOR_PURPLE_100 = '#e1d8f9';
84
- export const GL_COLOR_PURPLE_200 = '#cbbbf2';
85
- export const GL_COLOR_PURPLE_300 = '#ac93e6';
86
- export const GL_COLOR_PURPLE_400 = '#9475db';
87
- export const GL_COLOR_PURPLE_500 = '#7b58cf';
88
- export const GL_COLOR_PURPLE_600 = '#6a4fb4';
89
- export const GL_COLOR_PURPLE_700 = '#5c47a6';
90
- export const GL_COLOR_PURPLE_800 = '#493c83';
91
- export const GL_COLOR_PURPLE_900 = '#342d59';
92
- export const GL_COLOR_PURPLE_950 = '#27243e';
93
- export const GL_COLOR_RED_50 = '#fcf1ef';
94
- export const GL_COLOR_RED_100 = '#fdd4cd';
95
- export const GL_COLOR_RED_200 = '#fcb5aa';
96
- export const GL_COLOR_RED_300 = '#f6806d';
97
- export const GL_COLOR_RED_400 = '#ec5941';
98
- export const GL_COLOR_RED_500 = '#dd2b0e';
99
- export const GL_COLOR_RED_600 = '#c02f12';
100
- export const GL_COLOR_RED_700 = '#a32c12';
101
- export const GL_COLOR_RED_800 = '#812713';
102
- export const GL_COLOR_RED_900 = '#582014';
103
- export const GL_COLOR_RED_950 = '#3e1a14';
46
+ export const GL_COLOR_BRAND_WHITE = '#fff';
47
+ export const GL_COLOR_BRAND_CHARCOAL = '#171321';
48
+ export const GL_COLOR_BRAND_ORANGE_01G = '#ffd1bf';
49
+ export const GL_COLOR_BRAND_ORANGE_01P = '#fca326';
50
+ export const GL_COLOR_BRAND_ORANGE_02P = '#fc6d26';
51
+ export const GL_COLOR_BRAND_ORANGE_03P = '#e24329';
52
+ export const GL_COLOR_BRAND_PURPLE_01G = '#ceb3ef';
53
+ export const GL_COLOR_BRAND_PURPLE_01P = '#a989f5';
54
+ export const GL_COLOR_BRAND_PURPLE_02P = '#7759c2';
55
+ export const GL_COLOR_BRAND_GRAY_01 = '#d1d0d3';
56
+ export const GL_COLOR_BRAND_GRAY_02 = '#a2a1a6';
57
+ export const GL_COLOR_BRAND_GRAY_03 = '#74717a';
58
+ export const GL_COLOR_BRAND_GRAY_04 = '#45424d';
59
+ export const GL_COLOR_BRAND_GRAY_05 = '#2b2838';
60
+ export const GL_COLOR_BRAND_PINK_01G = '#ffb9c9';
104
61
  export const GL_COLOR_DATA_GREEN_50 = '#ddfab7';
105
62
  export const GL_COLOR_DATA_GREEN_100 = '#c6ed94';
106
63
  export const GL_COLOR_DATA_GREEN_200 = '#b0d97b';
@@ -156,6 +113,64 @@ export const GL_COLOR_DATA_ORANGE_700 = '#92430a';
156
113
  export const GL_COLOR_DATA_ORANGE_800 = '#6f3500';
157
114
  export const GL_COLOR_DATA_ORANGE_900 = '#5e2f05';
158
115
  export const GL_COLOR_DATA_ORANGE_950 = '#4b2707';
116
+ export const GL_COLOR_GREEN_50 = '#ecf4ee';
117
+ export const GL_COLOR_GREEN_100 = '#c3e6cd';
118
+ export const GL_COLOR_GREEN_200 = '#91d4a8';
119
+ export const GL_COLOR_GREEN_300 = '#52b87a';
120
+ export const GL_COLOR_GREEN_400 = '#2da160';
121
+ export const GL_COLOR_GREEN_500 = '#108548';
122
+ export const GL_COLOR_GREEN_600 = '#2f7549';
123
+ export const GL_COLOR_GREEN_700 = '#306440';
124
+ export const GL_COLOR_GREEN_800 = '#225131';
125
+ export const GL_COLOR_GREEN_900 = '#1e3e28';
126
+ export const GL_COLOR_GREEN_950 = '#17291c';
127
+ export const GL_COLOR_NEUTRAL_0 = '#fff';
128
+ export const GL_COLOR_NEUTRAL_10 = '#fbfafd';
129
+ export const GL_COLOR_NEUTRAL_50 = '#ececef';
130
+ export const GL_COLOR_NEUTRAL_100 = '#dcdcde';
131
+ export const GL_COLOR_NEUTRAL_200 = '#bfbfc3';
132
+ export const GL_COLOR_NEUTRAL_300 = '#a4a3a8';
133
+ export const GL_COLOR_NEUTRAL_400 = '#89888d';
134
+ export const GL_COLOR_NEUTRAL_500 = '#737278';
135
+ export const GL_COLOR_NEUTRAL_600 = '#626168';
136
+ export const GL_COLOR_NEUTRAL_700 = '#4c4b51';
137
+ export const GL_COLOR_NEUTRAL_800 = '#3a383f';
138
+ export const GL_COLOR_NEUTRAL_900 = '#28272d';
139
+ export const GL_COLOR_NEUTRAL_950 = '#18171d';
140
+ export const GL_COLOR_NEUTRAL_1000 = '#050506';
141
+ export const GL_COLOR_ORANGE_50 = '#fdf1dd';
142
+ export const GL_COLOR_ORANGE_100 = '#f5d9a8';
143
+ export const GL_COLOR_ORANGE_200 = '#e9be74';
144
+ export const GL_COLOR_ORANGE_300 = '#d99530';
145
+ export const GL_COLOR_ORANGE_400 = '#c17d10';
146
+ export const GL_COLOR_ORANGE_500 = '#ab6100';
147
+ export const GL_COLOR_ORANGE_600 = '#995715';
148
+ export const GL_COLOR_ORANGE_700 = '#894b16';
149
+ export const GL_COLOR_ORANGE_800 = '#693c14';
150
+ export const GL_COLOR_ORANGE_900 = '#532e16';
151
+ export const GL_COLOR_ORANGE_950 = '#382315';
152
+ export const GL_COLOR_PURPLE_50 = '#f4f0ff';
153
+ export const GL_COLOR_PURPLE_100 = '#e1d8f9';
154
+ export const GL_COLOR_PURPLE_200 = '#cbbbf2';
155
+ export const GL_COLOR_PURPLE_300 = '#ac93e6';
156
+ export const GL_COLOR_PURPLE_400 = '#9475db';
157
+ export const GL_COLOR_PURPLE_500 = '#7b58cf';
158
+ export const GL_COLOR_PURPLE_600 = '#6a4fb4';
159
+ export const GL_COLOR_PURPLE_700 = '#5c47a6';
160
+ export const GL_COLOR_PURPLE_800 = '#493c83';
161
+ export const GL_COLOR_PURPLE_900 = '#342d59';
162
+ export const GL_COLOR_PURPLE_950 = '#27243e';
163
+ export const GL_COLOR_RED_50 = '#fcf1ef';
164
+ export const GL_COLOR_RED_100 = '#fdd4cd';
165
+ export const GL_COLOR_RED_200 = '#fcb5aa';
166
+ export const GL_COLOR_RED_300 = '#f6806d';
167
+ export const GL_COLOR_RED_400 = '#ec5941';
168
+ export const GL_COLOR_RED_500 = '#dd2b0e';
169
+ export const GL_COLOR_RED_600 = '#c02f12';
170
+ export const GL_COLOR_RED_700 = '#a32c12';
171
+ export const GL_COLOR_RED_800 = '#812713';
172
+ export const GL_COLOR_RED_900 = '#582014';
173
+ export const GL_COLOR_RED_950 = '#3e1a14';
159
174
  export const GL_COLOR_THEME_INDIGO_10 = '#f8f8ff';
160
175
  export const GL_COLOR_THEME_INDIGO_50 = '#f1f1ff';
161
176
  export const GL_COLOR_THEME_INDIGO_100 = '#dbdbf8';
@@ -228,21 +243,6 @@ export const GL_COLOR_THEME_LIGHT_RED_700 = '#a02e1c';
228
243
  export const GL_COLOR_THEME_LIGHT_RED_800 = '#8b2212';
229
244
  export const GL_COLOR_THEME_LIGHT_RED_900 = '#751709';
230
245
  export const GL_COLOR_THEME_LIGHT_RED_950 = '#5c1105';
231
- export const GL_COLOR_BRAND_WHITE = '#fff';
232
- export const GL_COLOR_BRAND_CHARCOAL = '#171321';
233
- export const GL_COLOR_BRAND_ORANGE_01G = '#ffd1bf';
234
- export const GL_COLOR_BRAND_ORANGE_01P = '#fca326';
235
- export const GL_COLOR_BRAND_ORANGE_02P = '#fc6d26';
236
- export const GL_COLOR_BRAND_ORANGE_03P = '#e24329';
237
- export const GL_COLOR_BRAND_PURPLE_01G = '#ceb3ef';
238
- export const GL_COLOR_BRAND_PURPLE_01P = '#a989f5';
239
- export const GL_COLOR_BRAND_PURPLE_02P = '#7759c2';
240
- export const GL_COLOR_BRAND_GRAY_01 = '#d1d0d3';
241
- export const GL_COLOR_BRAND_GRAY_02 = '#a2a1a6';
242
- export const GL_COLOR_BRAND_GRAY_03 = '#74717a';
243
- export const GL_COLOR_BRAND_GRAY_04 = '#45424d';
244
- export const GL_COLOR_BRAND_GRAY_05 = '#2b2838';
245
- export const GL_COLOR_BRAND_PINK_01G = '#ffb9c9';
246
246
  export const GL_FONT_FAMILY_REGULAR = [
247
247
  "var(--default-regular-font, 'GitLab Sans')",
248
248
  "'GitLab Sans'",
@@ -991,10 +991,10 @@ export const THEME_LIGHT_RED_900 = '#faf2f1';
991
991
  export const THEME_LIGHT_RED_950 = '#fdf9f8';
992
992
  export const BLACK = '#fff';
993
993
  export const WHITE = '#28272d';
994
- export const BLUE_50 = '#033464';
995
- export const BLUE_100 = '#064787';
996
- export const BLUE_200 = '#0b5cad';
997
- export const BLUE_300 = '#1068bf';
994
+ export const BLUE_50 = '#213454';
995
+ export const BLUE_100 = '#284779';
996
+ export const BLUE_200 = '#2f5ca0';
997
+ export const BLUE_300 = '#2f68b4';
998
998
  export const BLUE_400 = '#1f75cb';
999
999
  export const BLUE_500 = '#428fdc';
1000
1000
  export const BLUE_600 = '#63a6e9';
@@ -1014,10 +1014,10 @@ export const GRAY_700 = '#bfbfc3';
1014
1014
  export const GRAY_800 = '#dcdcde';
1015
1015
  export const GRAY_900 = '#ececef';
1016
1016
  export const GRAY_950 = '#fbfafd';
1017
- export const GREEN_50 = '#0a4020';
1018
- export const GREEN_100 = '#0d532a';
1019
- export const GREEN_200 = '#24663b';
1020
- export const GREEN_300 = '#217645';
1017
+ export const GREEN_50 = '#1e3e28';
1018
+ export const GREEN_100 = '#225131';
1019
+ export const GREEN_200 = '#306440';
1020
+ export const GREEN_300 = '#2f7549';
1021
1021
  export const GREEN_400 = '#108548';
1022
1022
  export const GREEN_500 = '#2da160';
1023
1023
  export const GREEN_600 = '#52b87a';
@@ -1025,10 +1025,10 @@ export const GREEN_700 = '#91d4a8';
1025
1025
  export const GREEN_800 = '#c3e6cd';
1026
1026
  export const GREEN_900 = '#ecf4ee';
1027
1027
  export const GREEN_950 = '#f1fdf6';
1028
- export const ORANGE_50 = '#5c2900';
1029
- export const ORANGE_100 = '#703800';
1030
- export const ORANGE_200 = '#8f4700';
1031
- export const ORANGE_300 = '#9e5400';
1028
+ export const ORANGE_50 = '#532e16';
1029
+ export const ORANGE_100 = '#693c14';
1030
+ export const ORANGE_200 = '#894b16';
1031
+ export const ORANGE_300 = '#995715';
1032
1032
  export const ORANGE_400 = '#ab6100';
1033
1033
  export const ORANGE_500 = '#c17d10';
1034
1034
  export const ORANGE_600 = '#d99530';
@@ -1036,24 +1036,24 @@ export const ORANGE_700 = '#e9be74';
1036
1036
  export const ORANGE_800 = '#f5d9a8';
1037
1037
  export const ORANGE_900 = '#fdf1dd';
1038
1038
  export const ORANGE_950 = '#fff4e1';
1039
- export const PURPLE_50 = '#232150';
1040
- export const PURPLE_100 = '#2f2a6b';
1041
- export const PURPLE_200 = '#453894';
1042
- export const PURPLE_300 = '#5943b6';
1043
- export const PURPLE_400 = '#694cc0';
1039
+ export const PURPLE_50 = '#342d59';
1040
+ export const PURPLE_100 = '#493c83';
1041
+ export const PURPLE_200 = '#5c47a6';
1042
+ export const PURPLE_300 = '#6a4fb4';
1043
+ export const PURPLE_400 = '#7b58cf';
1044
1044
  export const PURPLE_500 = '#7b58cf';
1045
1045
  export const PURPLE_600 = '#9475db';
1046
1046
  export const PURPLE_700 = '#ac93e6';
1047
1047
  export const PURPLE_800 = '#cbbbf2';
1048
1048
  export const PURPLE_900 = '#e1d8f9';
1049
1049
  export const PURPLE_950 = '#f4f0ff';
1050
- export const RED_50 = '#660e00';
1051
- export const RED_100 = '#8d1300';
1052
- export const RED_200 = '#ae1800';
1053
- export const RED_300 = '#c91c00';
1050
+ export const RED_50 = '#582014';
1051
+ export const RED_100 = '#812713';
1052
+ export const RED_200 = '#a32c12';
1053
+ export const RED_300 = '#c02f12';
1054
1054
  export const RED_400 = '#dd2b0e';
1055
1055
  export const RED_500 = '#ec5941';
1056
- export const RED_600 = '#f57f6c';
1056
+ export const RED_600 = '#f6806d';
1057
1057
  export const RED_700 = '#fcb5aa';
1058
1058
  export const RED_800 = '#fdd4cd';
1059
1059
  export const RED_900 = '#fcf1ef';
@@ -43,64 +43,21 @@ export const GL_COLOR_BLUE_700 = '#2f5ca0';
43
43
  export const GL_COLOR_BLUE_800 = '#284779';
44
44
  export const GL_COLOR_BLUE_900 = '#213454';
45
45
  export const GL_COLOR_BLUE_950 = '#1d283e';
46
- export const GL_COLOR_NEUTRAL_0 = '#fff';
47
- export const GL_COLOR_NEUTRAL_10 = '#fbfafd';
48
- export const GL_COLOR_NEUTRAL_50 = '#ececef';
49
- export const GL_COLOR_NEUTRAL_100 = '#dcdcde';
50
- export const GL_COLOR_NEUTRAL_200 = '#bfbfc3';
51
- export const GL_COLOR_NEUTRAL_300 = '#a4a3a8';
52
- export const GL_COLOR_NEUTRAL_400 = '#89888d';
53
- export const GL_COLOR_NEUTRAL_500 = '#737278';
54
- export const GL_COLOR_NEUTRAL_600 = '#626168';
55
- export const GL_COLOR_NEUTRAL_700 = '#4c4b51';
56
- export const GL_COLOR_NEUTRAL_800 = '#3a383f';
57
- export const GL_COLOR_NEUTRAL_900 = '#28272d';
58
- export const GL_COLOR_NEUTRAL_950 = '#18171d';
59
- export const GL_COLOR_NEUTRAL_1000 = '#050506';
60
- export const GL_COLOR_GREEN_50 = '#ecf4ee';
61
- export const GL_COLOR_GREEN_100 = '#c3e6cd';
62
- export const GL_COLOR_GREEN_200 = '#91d4a8';
63
- export const GL_COLOR_GREEN_300 = '#52b87a';
64
- export const GL_COLOR_GREEN_400 = '#2da160';
65
- export const GL_COLOR_GREEN_500 = '#108548';
66
- export const GL_COLOR_GREEN_600 = '#2f7549';
67
- export const GL_COLOR_GREEN_700 = '#306440';
68
- export const GL_COLOR_GREEN_800 = '#225131';
69
- export const GL_COLOR_GREEN_900 = '#1e3e28';
70
- export const GL_COLOR_GREEN_950 = '#17291c';
71
- export const GL_COLOR_ORANGE_50 = '#fdf1dd';
72
- export const GL_COLOR_ORANGE_100 = '#f5d9a8';
73
- export const GL_COLOR_ORANGE_200 = '#e9be74';
74
- export const GL_COLOR_ORANGE_300 = '#d99530';
75
- export const GL_COLOR_ORANGE_400 = '#c17d10';
76
- export const GL_COLOR_ORANGE_500 = '#ab6100';
77
- export const GL_COLOR_ORANGE_600 = '#995715';
78
- export const GL_COLOR_ORANGE_700 = '#894b16';
79
- export const GL_COLOR_ORANGE_800 = '#693c14';
80
- export const GL_COLOR_ORANGE_900 = '#532e16';
81
- export const GL_COLOR_ORANGE_950 = '#382315';
82
- export const GL_COLOR_PURPLE_50 = '#f4f0ff';
83
- export const GL_COLOR_PURPLE_100 = '#e1d8f9';
84
- export const GL_COLOR_PURPLE_200 = '#cbbbf2';
85
- export const GL_COLOR_PURPLE_300 = '#ac93e6';
86
- export const GL_COLOR_PURPLE_400 = '#9475db';
87
- export const GL_COLOR_PURPLE_500 = '#7b58cf';
88
- export const GL_COLOR_PURPLE_600 = '#6a4fb4';
89
- export const GL_COLOR_PURPLE_700 = '#5c47a6';
90
- export const GL_COLOR_PURPLE_800 = '#493c83';
91
- export const GL_COLOR_PURPLE_900 = '#342d59';
92
- export const GL_COLOR_PURPLE_950 = '#27243e';
93
- export const GL_COLOR_RED_50 = '#fcf1ef';
94
- export const GL_COLOR_RED_100 = '#fdd4cd';
95
- export const GL_COLOR_RED_200 = '#fcb5aa';
96
- export const GL_COLOR_RED_300 = '#f6806d';
97
- export const GL_COLOR_RED_400 = '#ec5941';
98
- export const GL_COLOR_RED_500 = '#dd2b0e';
99
- export const GL_COLOR_RED_600 = '#c02f12';
100
- export const GL_COLOR_RED_700 = '#a32c12';
101
- export const GL_COLOR_RED_800 = '#812713';
102
- export const GL_COLOR_RED_900 = '#582014';
103
- export const GL_COLOR_RED_950 = '#3e1a14';
46
+ export const GL_COLOR_BRAND_WHITE = '#fff';
47
+ export const GL_COLOR_BRAND_CHARCOAL = '#171321';
48
+ export const GL_COLOR_BRAND_ORANGE_01G = '#ffd1bf';
49
+ export const GL_COLOR_BRAND_ORANGE_01P = '#fca326';
50
+ export const GL_COLOR_BRAND_ORANGE_02P = '#fc6d26';
51
+ export const GL_COLOR_BRAND_ORANGE_03P = '#e24329';
52
+ export const GL_COLOR_BRAND_PURPLE_01G = '#ceb3ef';
53
+ export const GL_COLOR_BRAND_PURPLE_01P = '#a989f5';
54
+ export const GL_COLOR_BRAND_PURPLE_02P = '#7759c2';
55
+ export const GL_COLOR_BRAND_GRAY_01 = '#d1d0d3';
56
+ export const GL_COLOR_BRAND_GRAY_02 = '#a2a1a6';
57
+ export const GL_COLOR_BRAND_GRAY_03 = '#74717a';
58
+ export const GL_COLOR_BRAND_GRAY_04 = '#45424d';
59
+ export const GL_COLOR_BRAND_GRAY_05 = '#2b2838';
60
+ export const GL_COLOR_BRAND_PINK_01G = '#ffb9c9';
104
61
  export const GL_COLOR_DATA_GREEN_50 = '#ddfab7';
105
62
  export const GL_COLOR_DATA_GREEN_100 = '#c6ed94';
106
63
  export const GL_COLOR_DATA_GREEN_200 = '#b0d97b';
@@ -156,6 +113,64 @@ export const GL_COLOR_DATA_ORANGE_700 = '#92430a';
156
113
  export const GL_COLOR_DATA_ORANGE_800 = '#6f3500';
157
114
  export const GL_COLOR_DATA_ORANGE_900 = '#5e2f05';
158
115
  export const GL_COLOR_DATA_ORANGE_950 = '#4b2707';
116
+ export const GL_COLOR_GREEN_50 = '#ecf4ee';
117
+ export const GL_COLOR_GREEN_100 = '#c3e6cd';
118
+ export const GL_COLOR_GREEN_200 = '#91d4a8';
119
+ export const GL_COLOR_GREEN_300 = '#52b87a';
120
+ export const GL_COLOR_GREEN_400 = '#2da160';
121
+ export const GL_COLOR_GREEN_500 = '#108548';
122
+ export const GL_COLOR_GREEN_600 = '#2f7549';
123
+ export const GL_COLOR_GREEN_700 = '#306440';
124
+ export const GL_COLOR_GREEN_800 = '#225131';
125
+ export const GL_COLOR_GREEN_900 = '#1e3e28';
126
+ export const GL_COLOR_GREEN_950 = '#17291c';
127
+ export const GL_COLOR_NEUTRAL_0 = '#fff';
128
+ export const GL_COLOR_NEUTRAL_10 = '#fbfafd';
129
+ export const GL_COLOR_NEUTRAL_50 = '#ececef';
130
+ export const GL_COLOR_NEUTRAL_100 = '#dcdcde';
131
+ export const GL_COLOR_NEUTRAL_200 = '#bfbfc3';
132
+ export const GL_COLOR_NEUTRAL_300 = '#a4a3a8';
133
+ export const GL_COLOR_NEUTRAL_400 = '#89888d';
134
+ export const GL_COLOR_NEUTRAL_500 = '#737278';
135
+ export const GL_COLOR_NEUTRAL_600 = '#626168';
136
+ export const GL_COLOR_NEUTRAL_700 = '#4c4b51';
137
+ export const GL_COLOR_NEUTRAL_800 = '#3a383f';
138
+ export const GL_COLOR_NEUTRAL_900 = '#28272d';
139
+ export const GL_COLOR_NEUTRAL_950 = '#18171d';
140
+ export const GL_COLOR_NEUTRAL_1000 = '#050506';
141
+ export const GL_COLOR_ORANGE_50 = '#fdf1dd';
142
+ export const GL_COLOR_ORANGE_100 = '#f5d9a8';
143
+ export const GL_COLOR_ORANGE_200 = '#e9be74';
144
+ export const GL_COLOR_ORANGE_300 = '#d99530';
145
+ export const GL_COLOR_ORANGE_400 = '#c17d10';
146
+ export const GL_COLOR_ORANGE_500 = '#ab6100';
147
+ export const GL_COLOR_ORANGE_600 = '#995715';
148
+ export const GL_COLOR_ORANGE_700 = '#894b16';
149
+ export const GL_COLOR_ORANGE_800 = '#693c14';
150
+ export const GL_COLOR_ORANGE_900 = '#532e16';
151
+ export const GL_COLOR_ORANGE_950 = '#382315';
152
+ export const GL_COLOR_PURPLE_50 = '#f4f0ff';
153
+ export const GL_COLOR_PURPLE_100 = '#e1d8f9';
154
+ export const GL_COLOR_PURPLE_200 = '#cbbbf2';
155
+ export const GL_COLOR_PURPLE_300 = '#ac93e6';
156
+ export const GL_COLOR_PURPLE_400 = '#9475db';
157
+ export const GL_COLOR_PURPLE_500 = '#7b58cf';
158
+ export const GL_COLOR_PURPLE_600 = '#6a4fb4';
159
+ export const GL_COLOR_PURPLE_700 = '#5c47a6';
160
+ export const GL_COLOR_PURPLE_800 = '#493c83';
161
+ export const GL_COLOR_PURPLE_900 = '#342d59';
162
+ export const GL_COLOR_PURPLE_950 = '#27243e';
163
+ export const GL_COLOR_RED_50 = '#fcf1ef';
164
+ export const GL_COLOR_RED_100 = '#fdd4cd';
165
+ export const GL_COLOR_RED_200 = '#fcb5aa';
166
+ export const GL_COLOR_RED_300 = '#f6806d';
167
+ export const GL_COLOR_RED_400 = '#ec5941';
168
+ export const GL_COLOR_RED_500 = '#dd2b0e';
169
+ export const GL_COLOR_RED_600 = '#c02f12';
170
+ export const GL_COLOR_RED_700 = '#a32c12';
171
+ export const GL_COLOR_RED_800 = '#812713';
172
+ export const GL_COLOR_RED_900 = '#582014';
173
+ export const GL_COLOR_RED_950 = '#3e1a14';
159
174
  export const GL_COLOR_THEME_INDIGO_10 = '#f8f8ff';
160
175
  export const GL_COLOR_THEME_INDIGO_50 = '#f1f1ff';
161
176
  export const GL_COLOR_THEME_INDIGO_100 = '#dbdbf8';
@@ -228,21 +243,6 @@ export const GL_COLOR_THEME_LIGHT_RED_700 = '#a02e1c';
228
243
  export const GL_COLOR_THEME_LIGHT_RED_800 = '#8b2212';
229
244
  export const GL_COLOR_THEME_LIGHT_RED_900 = '#751709';
230
245
  export const GL_COLOR_THEME_LIGHT_RED_950 = '#5c1105';
231
- export const GL_COLOR_BRAND_WHITE = '#fff';
232
- export const GL_COLOR_BRAND_CHARCOAL = '#171321';
233
- export const GL_COLOR_BRAND_ORANGE_01G = '#ffd1bf';
234
- export const GL_COLOR_BRAND_ORANGE_01P = '#fca326';
235
- export const GL_COLOR_BRAND_ORANGE_02P = '#fc6d26';
236
- export const GL_COLOR_BRAND_ORANGE_03P = '#e24329';
237
- export const GL_COLOR_BRAND_PURPLE_01G = '#ceb3ef';
238
- export const GL_COLOR_BRAND_PURPLE_01P = '#a989f5';
239
- export const GL_COLOR_BRAND_PURPLE_02P = '#7759c2';
240
- export const GL_COLOR_BRAND_GRAY_01 = '#d1d0d3';
241
- export const GL_COLOR_BRAND_GRAY_02 = '#a2a1a6';
242
- export const GL_COLOR_BRAND_GRAY_03 = '#74717a';
243
- export const GL_COLOR_BRAND_GRAY_04 = '#45424d';
244
- export const GL_COLOR_BRAND_GRAY_05 = '#2b2838';
245
- export const GL_COLOR_BRAND_PINK_01G = '#ffb9c9';
246
246
  export const GL_FONT_FAMILY_REGULAR = [
247
247
  "var(--default-regular-font, 'GitLab Sans')",
248
248
  "'GitLab Sans'",
@@ -1050,7 +1050,7 @@ export const PURPLE_950 = '#27243e';
1050
1050
  export const RED_50 = '#fcf1ef';
1051
1051
  export const RED_100 = '#fdd4cd';
1052
1052
  export const RED_200 = '#fcb5aa';
1053
- export const RED_300 = '#f57f6c';
1053
+ export const RED_300 = '#f6806d';
1054
1054
  export const RED_400 = '#ec5941';
1055
1055
  export const RED_500 = '#dd2b0e';
1056
1056
  export const RED_600 = '#c02f12';