@gitlab/ui 132.0.3 → 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.
- package/dist/components/base/accordion/accordion_item.js +1 -3
- package/dist/components/base/avatar/avatar.js +76 -5
- package/dist/components/base/badge/badge.js +5 -7
- package/dist/components/base/button/button.js +1 -3
- package/dist/components/base/collapse/collapse.js +2 -6
- package/dist/components/base/datepicker/datepicker.js +4 -5
- package/dist/components/base/daterange_picker/daterange_picker.js +2 -4
- package/dist/components/base/dropdown/dropdown_item.js +3 -4
- package/dist/components/base/filtered_search/filtered_search.js +55 -7
- package/dist/components/base/filtered_search/filtered_search_token.js +6 -14
- package/dist/components/base/filtered_search/filtered_search_token_segment.js +39 -19
- package/dist/components/base/filtered_search/filtered_search_utils.js +57 -7
- package/dist/components/base/form/form_checkbox/form_checkbox.js +13 -26
- package/dist/components/base/form/form_checkbox/form_checkbox_group.js +1 -3
- package/dist/components/base/form/form_fields/form_fields_loop.js +57 -6
- package/dist/components/base/form/form_group/form_group.js +1 -3
- package/dist/components/base/form/form_input/form_input.js +95 -41
- package/dist/components/base/form/form_input_group/form_input_group.js +2 -4
- package/dist/components/base/form/form_radio/form_radio.js +5 -9
- package/dist/components/base/form/form_radio_group/form_radio_group.js +1 -3
- package/dist/components/base/form/form_select/form_select.js +76 -5
- package/dist/components/base/infinite_scroll/infinite_scroll.js +7 -14
- package/dist/components/base/link/link.js +26 -7
- package/dist/components/base/new_dropdowns/base_dropdown/base_dropdown.js +93 -32
- package/dist/components/base/new_dropdowns/disclosure/disclosure_dropdown.js +2 -6
- package/dist/components/base/new_dropdowns/disclosure/disclosure_dropdown_item.js +2 -6
- package/dist/components/base/new_dropdowns/listbox/listbox.js +5 -13
- package/dist/components/base/new_dropdowns/listbox/listbox_item.js +1 -3
- package/dist/components/base/new_dropdowns/listbox/mock_data.js +2 -6
- package/dist/components/base/new_dropdowns/listbox/utils.js +6 -11
- package/dist/components/base/path/path.js +1 -5
- package/dist/components/base/search_box_by_type/search_box_by_type.js +2 -6
- package/dist/components/base/skeleton_loader/skeleton_loader.js +3 -5
- package/dist/components/base/table/table.js +32 -21
- package/dist/components/base/table_lite/table_lite.js +1 -3
- package/dist/components/base/tabs/tab/tab.js +1 -3
- package/dist/components/base/tabs/tabs/scrollable_tabs.js +1 -5
- package/dist/components/base/token_selector/token_selector.js +2 -6
- package/dist/components/charts/area/area.js +6 -7
- package/dist/components/charts/column/column.js +11 -15
- package/dist/components/charts/discrete_scatter/discrete_scatter.js +57 -5
- package/dist/components/charts/gauge/gauge.js +13 -21
- package/dist/components/charts/heatmap/heatmap.js +66 -18
- package/dist/components/charts/legend/legend.js +59 -13
- package/dist/components/charts/line/line.js +6 -7
- package/dist/components/charts/shared/tooltip/tooltip.js +11 -18
- package/dist/components/charts/sparkline/sparkline.js +72 -19
- package/dist/components/charts/stacked_column/stacked_column.js +18 -31
- package/dist/components/dashboards/dashboard_layout/grid_layout/grid_layout.js +40 -24
- package/dist/components/utilities/friendly_wrap/friendly_wrap.js +3 -7
- package/dist/components/utilities/intersperse/intersperse.js +6 -11
- package/dist/components/utilities/sprintf/sprintf.js +58 -7
- package/dist/components/utilities/truncate/truncate.js +2 -4
- package/dist/components/utilities/truncate_text/truncate_text.js +1 -3
- package/dist/config.js +3 -4
- package/dist/directives/hover_load/hover_load.js +1 -3
- package/dist/directives/outside/outside.js +9 -16
- package/dist/directives/resize_observer/resize_observer.js +6 -8
- package/dist/directives/safe_html/safe_html.js +1 -3
- package/dist/directives/safe_link/safe_link.js +11 -14
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +95 -95
- package/dist/tokens/build/js/tokens.js +74 -74
- package/dist/tokens/common_story_options.js +7 -8
- package/dist/utils/charts/config.js +122 -90
- package/dist/utils/constants.js +26 -1
- package/dist/utils/data_utils.js +28 -1
- package/dist/utils/form_options_utils.js +4 -6
- package/dist/utils/is_slot_empty.js +3 -5
- package/dist/utils/stories_utils.js +8 -8
- package/dist/utils/use_mock_intersection_observer.js +63 -12
- package/dist/utils/utils.js +76 -19
- package/dist/vendor/bootstrap-vue/src/components/button/button-close.js +8 -11
- package/dist/vendor/bootstrap-vue/src/components/button/button.js +12 -17
- package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-divider.js +3 -6
- package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-form.js +6 -9
- package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-group.js +14 -19
- package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-header.js +8 -13
- package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-item-button.js +9 -12
- package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-item.js +8 -11
- package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-text.js +9 -14
- package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown.js +34 -43
- package/dist/vendor/bootstrap-vue/src/components/form/form-invalid-feedback.js +5 -9
- package/dist/vendor/bootstrap-vue/src/components/form/form-text.js +7 -10
- package/dist/vendor/bootstrap-vue/src/components/form/form-valid-feedback.js +5 -9
- package/dist/vendor/bootstrap-vue/src/components/form/form.js +7 -10
- package/dist/vendor/bootstrap-vue/src/components/form-group/form-group.js +77 -33
- package/dist/vendor/bootstrap-vue/src/components/form-select/form-select-option-group.js +6 -11
- package/dist/vendor/bootstrap-vue/src/components/form-select/form-select-option.js +6 -12
- package/dist/vendor/bootstrap-vue/src/components/form-select/form-select.js +28 -29
- package/dist/vendor/bootstrap-vue/src/components/form-textarea/form-textarea.js +7 -10
- package/dist/vendor/bootstrap-vue/src/components/layout/col.js +7 -11
- package/dist/vendor/bootstrap-vue/src/components/layout/form-row.js +3 -5
- package/dist/vendor/bootstrap-vue/src/components/link/link.js +19 -31
- package/dist/vendor/bootstrap-vue/src/components/modal/helpers/modal-manager.js +3 -4
- package/dist/vendor/bootstrap-vue/src/components/modal/modal.js +59 -68
- package/dist/vendor/bootstrap-vue/src/components/popover/helpers/bv-popover-template.js +2 -4
- package/dist/vendor/bootstrap-vue/src/components/popover/popover.js +4 -5
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/default-sort-compare.js +11 -7
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-bottom-row.js +4 -6
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-busy.js +3 -6
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-caption.js +4 -7
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-colgroup.js +1 -3
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-empty.js +16 -20
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-filtering.js +14 -25
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-items.js +23 -35
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-pagination.js +6 -8
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-provider.js +8 -10
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-selectable.js +8 -15
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-sorting.js +33 -41
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-stacked.js +3 -8
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-table-renderer.js +38 -50
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-tbody-row.js +19 -31
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-tbody.js +13 -23
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-tfoot.js +5 -6
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-thead.js +17 -21
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-top-row.js +4 -6
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/sanitize-row.js +1 -3
- package/dist/vendor/bootstrap-vue/src/components/table/tbody.js +3 -6
- package/dist/vendor/bootstrap-vue/src/components/table/td.js +9 -14
- package/dist/vendor/bootstrap-vue/src/components/table/tfoot.js +1 -2
- package/dist/vendor/bootstrap-vue/src/components/table/thead.js +1 -2
- package/dist/vendor/bootstrap-vue/src/components/table/tr.js +2 -5
- package/dist/vendor/bootstrap-vue/src/components/tabs/tab.js +19 -36
- package/dist/vendor/bootstrap-vue/src/components/tabs/tabs.js +66 -81
- package/dist/vendor/bootstrap-vue/src/components/tooltip/helpers/bv-popper.js +2 -6
- package/dist/vendor/bootstrap-vue/src/components/tooltip/helpers/bv-tooltip-template.js +5 -11
- package/dist/vendor/bootstrap-vue/src/components/tooltip/helpers/bv-tooltip.js +8 -14
- package/dist/vendor/bootstrap-vue/src/components/tooltip/tooltip.js +19 -22
- package/dist/vendor/bootstrap-vue/src/components/transition/bv-transition.js +7 -10
- package/dist/vendor/bootstrap-vue/src/components/transporter/transporter.js +7 -14
- package/dist/vendor/bootstrap-vue/src/directives/modal/modal.js +4 -5
- package/dist/vendor/bootstrap-vue/src/directives/visible/visible.js +5 -9
- package/dist/vendor/bootstrap-vue/src/mixins/dropdown.js +17 -29
- package/dist/vendor/bootstrap-vue/src/mixins/form-control.js +6 -7
- package/dist/vendor/bootstrap-vue/src/mixins/form-custom.js +1 -2
- package/dist/vendor/bootstrap-vue/src/mixins/form-options.js +5 -6
- package/dist/vendor/bootstrap-vue/src/mixins/form-size.js +1 -2
- package/dist/vendor/bootstrap-vue/src/mixins/form-state.js +1 -2
- package/dist/vendor/bootstrap-vue/src/mixins/form-text.js +29 -43
- package/dist/vendor/bootstrap-vue/src/mixins/id.js +1 -2
- package/dist/vendor/bootstrap-vue/src/utils/create-new-child-component.js +62 -15
- package/dist/vendor/bootstrap-vue/src/utils/dom.js +3 -9
- package/dist/vendor/bootstrap-vue/src/utils/events.js +7 -5
- package/dist/vendor/bootstrap-vue/src/utils/plugins.js +4 -5
- package/dist/vendor/bootstrap-vue/src/utils/router.js +9 -13
- package/package.json +10 -8
- package/src/components/dashboards/dashboard_layout/grid_layout/grid_layout.vue +21 -19
- package/src/scss/gitlab_ui.scss +3 -0
- package/src/scss/storybook.scss +3 -0
- package/src/scss/themes.scss +84 -0
- package/src/tokens/build/css/tokens.css +142 -142
- package/src/tokens/build/css/tokens.dark.css +138 -138
- package/src/tokens/build/docs/tokens-tailwind-docs.dark.json +580 -580
- package/src/tokens/build/docs/tokens-tailwind-docs.json +495 -495
- package/src/tokens/build/figma/constants.dark.json +799 -799
- package/src/tokens/build/figma/constants.json +799 -799
- package/src/tokens/build/js/tokens.dark.js +95 -95
- package/src/tokens/build/js/tokens.js +74 -74
- package/src/tokens/build/json/tokens.dark.json +1668 -1668
- package/src/tokens/build/json/tokens.json +1647 -1647
- package/src/tokens/build/scss/_tokens.dark.scss +138 -138
- package/src/tokens/build/scss/_tokens.scss +142 -142
- package/src/tokens/build/scss/_tokens_custom_properties.scss +73 -73
- package/src/tokens/constant/color.blue.tokens.json +182 -0
- package/src/tokens/constant/color.brand.tokens.json +252 -0
- package/src/tokens/constant/color.data.tokens.json +894 -0
- package/src/tokens/constant/color.green.tokens.json +182 -0
- package/src/tokens/constant/color.neutral.tokens.json +230 -0
- package/src/tokens/constant/color.orange.tokens.json +182 -0
- package/src/tokens/constant/color.purple.tokens.json +182 -0
- package/src/tokens/constant/color.red.tokens.json +182 -0
- package/src/tokens/constant/color.theme.tokens.json +1168 -0
- package/src/tokens/deprecated/deprecated.color.tokens.json +134 -1340
- package/src/utils/constants.js +9 -0
- package/src/vendor/bootstrap-vue/src/components/button/button-close.js +4 -5
- package/src/vendor/bootstrap-vue/src/components/button/button.js +7 -8
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-divider.js +1 -2
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-form.js +2 -8
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-group.js +6 -7
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-header.js +3 -4
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-item-button.js +6 -12
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-item.js +2 -3
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-text.js +3 -4
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown.js +19 -26
- package/src/vendor/bootstrap-vue/src/components/form/form-text.js +4 -6
- package/src/vendor/bootstrap-vue/src/components/form/form.js +4 -6
- package/src/vendor/bootstrap-vue/src/components/form-group/form-group.js +66 -19
- package/src/vendor/bootstrap-vue/src/components/form-select/form-select-option-group.js +1 -2
- package/src/vendor/bootstrap-vue/src/components/form-select/form-select-option.js +1 -4
- package/src/vendor/bootstrap-vue/src/components/form-select/form-select.js +13 -14
- package/src/vendor/bootstrap-vue/src/components/form-textarea/form-textarea.js +5 -6
- package/src/vendor/bootstrap-vue/src/components/modal/modal.js +53 -62
- package/src/vendor/bootstrap-vue/src/components/popover/popover.js +4 -10
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-busy.js +1 -2
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-caption.js +2 -3
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-empty.js +5 -6
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-filtering.js +5 -13
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-items.js +12 -21
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-pagination.js +2 -3
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-provider.js +5 -11
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-selectable.js +4 -5
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-sorting.js +14 -21
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-stacked.js +1 -2
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-table-renderer.js +14 -20
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-tbody-row.js +3 -9
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-tbody.js +1 -2
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-tfoot.js +5 -11
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-thead.js +4 -5
- package/src/vendor/bootstrap-vue/src/components/table/tbody.js +2 -3
- package/src/vendor/bootstrap-vue/src/components/table/td.js +5 -6
- package/src/vendor/bootstrap-vue/src/components/table/tfoot.js +1 -2
- package/src/vendor/bootstrap-vue/src/components/table/thead.js +1 -2
- package/src/vendor/bootstrap-vue/src/components/table/tr.js +1 -2
- package/src/vendor/bootstrap-vue/src/components/tabs/tab.js +10 -16
- package/src/vendor/bootstrap-vue/src/components/tabs/tabs.js +33 -39
- package/src/vendor/bootstrap-vue/src/components/tooltip/tooltip.js +17 -25
- package/src/vendor/bootstrap-vue/src/components/transition/bv-transition.js +4 -5
- package/src/vendor/bootstrap-vue/src/components/transporter/transporter.js +4 -10
- package/src/vendor/bootstrap-vue/src/mixins/dropdown.js +9 -15
- package/src/vendor/bootstrap-vue/src/mixins/form-control.js +6 -7
- package/src/vendor/bootstrap-vue/src/mixins/form-custom.js +1 -2
- package/src/vendor/bootstrap-vue/src/mixins/form-options.js +5 -6
- package/src/vendor/bootstrap-vue/src/mixins/form-size.js +1 -2
- package/src/vendor/bootstrap-vue/src/mixins/form-state.js +1 -2
- package/src/vendor/bootstrap-vue/src/mixins/form-text.js +21 -33
- package/src/vendor/bootstrap-vue/src/mixins/id.js +1 -2
- package/dist/vendor/bootstrap-vue/src/mixins/model.js +0 -10
- package/dist/vendor/bootstrap-vue/src/utils/model.js +0 -33
- package/src/tokens/constant/color.tokens.json +0 -3422
- package/src/vendor/bootstrap-vue/src/mixins/model.js +0 -5
- 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
|
|
47
|
-
export const
|
|
48
|
-
export const
|
|
49
|
-
export const
|
|
50
|
-
export const
|
|
51
|
-
export const
|
|
52
|
-
export const
|
|
53
|
-
export const
|
|
54
|
-
export const
|
|
55
|
-
export const
|
|
56
|
-
export const
|
|
57
|
-
export const
|
|
58
|
-
export const
|
|
59
|
-
export const
|
|
60
|
-
export const
|
|
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 = '#
|
|
995
|
-
export const BLUE_100 = '#
|
|
996
|
-
export const BLUE_200 = '#
|
|
997
|
-
export const BLUE_300 = '#
|
|
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 = '#
|
|
1018
|
-
export const GREEN_100 = '#
|
|
1019
|
-
export const GREEN_200 = '#
|
|
1020
|
-
export const GREEN_300 = '#
|
|
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 = '#
|
|
1029
|
-
export const ORANGE_100 = '#
|
|
1030
|
-
export const ORANGE_200 = '#
|
|
1031
|
-
export const ORANGE_300 = '#
|
|
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 = '#
|
|
1040
|
-
export const PURPLE_100 = '#
|
|
1041
|
-
export const PURPLE_200 = '#
|
|
1042
|
-
export const PURPLE_300 = '#
|
|
1043
|
-
export const PURPLE_400 = '#
|
|
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 = '#
|
|
1051
|
-
export const RED_100 = '#
|
|
1052
|
-
export const RED_200 = '#
|
|
1053
|
-
export const RED_300 = '#
|
|
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 = '#
|
|
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
|
|
47
|
-
export const
|
|
48
|
-
export const
|
|
49
|
-
export const
|
|
50
|
-
export const
|
|
51
|
-
export const
|
|
52
|
-
export const
|
|
53
|
-
export const
|
|
54
|
-
export const
|
|
55
|
-
export const
|
|
56
|
-
export const
|
|
57
|
-
export const
|
|
58
|
-
export const
|
|
59
|
-
export const
|
|
60
|
-
export const
|
|
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 = '#
|
|
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';
|