@gitlab/duo-ui 0.1.0 → 0.3.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 +8 -0
- package/dist/components/chat/components/duo_chat_context/constants.js +11 -0
- package/dist/components/chat/components/duo_chat_context/duo_chat_context_item_details_modal/duo_chat_context_item_details_modal.js +118 -0
- package/dist/components/chat/components/duo_chat_context/duo_chat_context_item_menu/duo_chat_context_item_menu.js +265 -0
- package/dist/components/chat/components/duo_chat_context/duo_chat_context_item_menu/duo_chat_context_item_menu_category_items.js +68 -0
- package/dist/components/chat/components/duo_chat_context/duo_chat_context_item_menu/duo_chat_context_item_menu_search_item.js +87 -0
- package/dist/components/chat/components/duo_chat_context/duo_chat_context_item_menu/duo_chat_context_item_menu_search_items.js +137 -0
- package/dist/components/chat/components/duo_chat_context/duo_chat_context_item_menu/duo_chat_context_item_menu_search_items_loading.js +53 -0
- package/dist/components/chat/components/duo_chat_context/duo_chat_context_item_popover/duo_chat_context_item_popover.js +121 -0
- package/dist/components/chat/components/duo_chat_context/duo_chat_context_item_selections/duo_chat_context_item_selections.js +153 -0
- package/dist/components/chat/components/duo_chat_context/mock_context_data.js +191 -0
- package/dist/components/chat/components/duo_chat_context/utils.js +106 -0
- package/dist/components/chat/components/duo_chat_conversation/duo_chat_conversation.js +101 -0
- package/dist/components/chat/components/duo_chat_loader/duo_chat_loader.js +101 -0
- package/dist/components/chat/components/duo_chat_message/buttons_utils.js +25 -0
- package/dist/components/chat/components/duo_chat_message/constants.js +5 -0
- package/dist/components/chat/components/duo_chat_message/copy_code_element.js +16 -0
- package/dist/components/chat/components/duo_chat_message/duo_chat_message.js +287 -0
- package/dist/components/chat/components/duo_chat_message/insert_code_snippet_element.js +56 -0
- package/dist/components/chat/components/duo_chat_message/utils.js +8 -0
- package/dist/components/chat/components/duo_chat_message_sources/duo_chat_message_sources.js +106 -0
- package/dist/components/chat/components/duo_chat_predefined_prompts/duo_chat_predefined_prompts.js +64 -0
- package/dist/components/chat/constants.js +30 -0
- package/dist/components/chat/duo_chat.js +524 -0
- package/dist/components/chat/markdown_renderer.js +18 -0
- package/dist/components/chat/mock_data.js +162 -0
- package/dist/components/user_feedback/user_feedback.js +97 -0
- package/dist/components/user_feedback/user_feedback_modal.js +149 -0
- package/dist/components/workflow/components/duo_workflow_panel/duo_workflow_panel.js +95 -0
- package/dist/components/workflow/components/duo_workflow_prompt/duo_workflow_prompt.js +235 -0
- package/dist/components.css +2 -0
- package/dist/components.css.map +1 -0
- package/dist/tailwind.css +2 -0
- package/dist/tailwind.css.map +1 -0
- package/package.json +8 -16
- package/src/components/{experimental/duo/chat → chat}/components/duo_chat_context/duo_chat_context_item_details_modal/duo_chat_context_item_details_modal.vue +1 -1
- package/src/components/{experimental/duo/chat → chat}/components/duo_chat_context/duo_chat_context_item_menu/duo_chat_context_item_menu_search_items_loading.vue +1 -1
- package/src/components/chat/components/duo_chat_message/constants.js +3 -0
- package/src/components/{experimental/duo/chat → chat}/components/duo_chat_message/duo_chat_message.scss +31 -2
- package/src/components/{experimental/duo/chat → chat}/components/duo_chat_message/duo_chat_message.vue +33 -2
- package/src/components/chat/duo_chat.scss +393 -0
- package/src/components/{experimental/duo/chat → chat}/mock_data.js +2 -2
- package/src/config.js +3 -43
- package/src/index.js +3 -130
- package/src/scss/components.scss +6 -83
- package/src/tokens/build/json/tokens.json +13548 -13548
- package/src/vendor/bootstrap/LICENSE +22 -0
- package/src/vendor/bootstrap-vue/LICENSE +21 -0
- package/src/vendor/bootstrap-vue/nuxt/index.js +164 -0
- package/src/vendor/bootstrap-vue/nuxt/plugin.template.js +29 -0
- package/src/vendor/bootstrap-vue/package.json +201 -0
- package/src/vendor/bootstrap-vue/src/bv-config.d.ts +4 -0
- package/src/vendor/bootstrap-vue/src/components/badge/README.md +126 -0
- package/src/vendor/bootstrap-vue/src/components/badge/badge.spec.js +141 -0
- package/src/vendor/bootstrap-vue/src/components/badge/index.d.ts +7 -0
- package/src/vendor/bootstrap-vue/src/components/badge/package.json +29 -0
- package/src/vendor/bootstrap-vue/src/components/breadcrumb/README.md +93 -0
- package/src/vendor/bootstrap-vue/src/components/breadcrumb/breadcrumb-item.spec.js +123 -0
- package/src/vendor/bootstrap-vue/src/components/breadcrumb/breadcrumb-link.spec.js +117 -0
- package/src/vendor/bootstrap-vue/src/components/breadcrumb/breadcrumb.spec.js +183 -0
- package/src/vendor/bootstrap-vue/src/components/breadcrumb/index.d.ts +13 -0
- package/src/vendor/bootstrap-vue/src/components/breadcrumb/package.json +62 -0
- package/src/vendor/bootstrap-vue/src/components/button/README.md +281 -0
- package/src/vendor/bootstrap-vue/src/components/button/button-close.spec.js +210 -0
- package/src/vendor/bootstrap-vue/src/components/button/button.spec.js +385 -0
- package/src/vendor/bootstrap-vue/src/components/button/index.d.ts +10 -0
- package/src/vendor/bootstrap-vue/src/components/button/package.json +105 -0
- package/src/vendor/bootstrap-vue/src/components/button-group/README.md +112 -0
- package/src/vendor/bootstrap-vue/src/components/button-group/button-group.spec.js +98 -0
- package/src/vendor/bootstrap-vue/src/components/button-group/index.d.ts +7 -0
- package/src/vendor/bootstrap-vue/src/components/button-group/package.json +29 -0
- package/src/vendor/bootstrap-vue/src/components/collapse/README.md +321 -0
- package/src/vendor/bootstrap-vue/src/components/collapse/collapse.spec.js +558 -0
- package/src/vendor/bootstrap-vue/src/components/collapse/index.d.ts +9 -0
- package/src/vendor/bootstrap-vue/src/components/collapse/package.json +111 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/README.md +730 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-divider.spec.js +58 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-form.spec.js +110 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-group.spec.js +94 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-header.spec.js +73 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-item-button.spec.js +117 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-item.spec.js +147 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-text.spec.js +59 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown.spec.js +1121 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/index.d.ts +32 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/package.json +368 -0
- package/src/vendor/bootstrap-vue/src/components/form/README.md +370 -0
- package/src/vendor/bootstrap-vue/src/components/form/form-invalid-feedback.spec.js +170 -0
- package/src/vendor/bootstrap-vue/src/components/form/form-text.spec.js +93 -0
- package/src/vendor/bootstrap-vue/src/components/form/form-valid-feedback.spec.js +157 -0
- package/src/vendor/bootstrap-vue/src/components/form/form.spec.js +97 -0
- package/src/vendor/bootstrap-vue/src/components/form/index.d.ts +16 -0
- package/src/vendor/bootstrap-vue/src/components/form/package.json +112 -0
- package/src/vendor/bootstrap-vue/src/components/form-checkbox/README.md +862 -0
- package/src/vendor/bootstrap-vue/src/components/form-checkbox/form-checkbox-group.spec.js +642 -0
- package/src/vendor/bootstrap-vue/src/components/form-checkbox/form-checkbox.spec.js +1331 -0
- package/src/vendor/bootstrap-vue/src/components/form-checkbox/index.d.ts +10 -0
- package/src/vendor/bootstrap-vue/src/components/form-checkbox/package.json +172 -0
- package/src/vendor/bootstrap-vue/src/components/form-group/README.md +337 -0
- package/src/vendor/bootstrap-vue/src/components/form-group/form-group.spec.js +477 -0
- package/src/vendor/bootstrap-vue/src/components/form-group/index.d.ts +7 -0
- package/src/vendor/bootstrap-vue/src/components/form-group/package.json +183 -0
- package/src/vendor/bootstrap-vue/src/components/form-input/README.md +612 -0
- package/src/vendor/bootstrap-vue/src/components/form-input/form-input.spec.js +986 -0
- package/src/vendor/bootstrap-vue/src/components/form-input/index.d.ts +9 -0
- package/src/vendor/bootstrap-vue/src/components/form-input/package.json +135 -0
- package/src/vendor/bootstrap-vue/src/components/form-radio/README.md +566 -0
- package/src/vendor/bootstrap-vue/src/components/form-radio/form-radio-group.spec.js +469 -0
- package/src/vendor/bootstrap-vue/src/components/form-radio/form-radio.spec.js +952 -0
- package/src/vendor/bootstrap-vue/src/components/form-radio/index.d.ts +10 -0
- package/src/vendor/bootstrap-vue/src/components/form-radio/package.json +162 -0
- package/src/vendor/bootstrap-vue/src/components/form-select/README.md +504 -0
- package/src/vendor/bootstrap-vue/src/components/form-select/form-select-option-group.spec.js +138 -0
- package/src/vendor/bootstrap-vue/src/components/form-select/form-select-option.spec.js +75 -0
- package/src/vendor/bootstrap-vue/src/components/form-select/form-select.spec.js +723 -0
- package/src/vendor/bootstrap-vue/src/components/form-select/index.d.ts +13 -0
- package/src/vendor/bootstrap-vue/src/components/form-select/package.json +132 -0
- package/src/vendor/bootstrap-vue/src/components/form-textarea/README.md +453 -0
- package/src/vendor/bootstrap-vue/src/components/form-textarea/form-textarea.spec.js +1000 -0
- package/src/vendor/bootstrap-vue/src/components/form-textarea/index.d.ts +9 -0
- package/src/vendor/bootstrap-vue/src/components/form-textarea/package.json +122 -0
- package/src/vendor/bootstrap-vue/src/components/index.d.ts +31 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/README.md +334 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/index.d.ts +19 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/input-group-append.spec.js +84 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/input-group-prepend.spec.js +84 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/input-group-text.spec.js +45 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/input-group.spec.js +153 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/package.json +109 -0
- package/src/vendor/bootstrap-vue/src/components/layout/README.md +791 -0
- package/src/vendor/bootstrap-vue/src/components/layout/col.spec.js +192 -0
- package/src/vendor/bootstrap-vue/src/components/layout/form-row.spec.js +45 -0
- package/src/vendor/bootstrap-vue/src/components/layout/index.d.ts +10 -0
- package/src/vendor/bootstrap-vue/src/components/layout/package.json +99 -0
- package/src/vendor/bootstrap-vue/src/components/link/README.md +76 -0
- package/src/vendor/bootstrap-vue/src/components/link/index.d.ts +10 -0
- package/src/vendor/bootstrap-vue/src/components/link/link.spec.js +434 -0
- package/src/vendor/bootstrap-vue/src/components/link/package.json +57 -0
- package/src/vendor/bootstrap-vue/src/components/modal/MODIFICATIONS.md +27 -0
- package/src/vendor/bootstrap-vue/src/components/modal/README.md +1068 -0
- package/src/vendor/bootstrap-vue/src/components/modal/helpers/bv-modal-event.class.spec.js +82 -0
- package/src/vendor/bootstrap-vue/src/components/modal/index.d.ts +82 -0
- package/src/vendor/bootstrap-vue/src/components/modal/modal.spec.js +1418 -0
- package/src/vendor/bootstrap-vue/src/components/modal/package.json +548 -0
- package/src/vendor/bootstrap-vue/src/components/nav/README.md +480 -0
- package/src/vendor/bootstrap-vue/src/components/nav/index.d.ts +17 -0
- package/src/vendor/bootstrap-vue/src/components/nav/nav-item-dropdown.spec.js +268 -0
- package/src/vendor/bootstrap-vue/src/components/nav/nav-item.spec.js +127 -0
- package/src/vendor/bootstrap-vue/src/components/nav/nav.spec.js +244 -0
- package/src/vendor/bootstrap-vue/src/components/nav/package.json +190 -0
- package/src/vendor/bootstrap-vue/src/components/navbar/README.md +333 -0
- package/src/vendor/bootstrap-vue/src/components/navbar/index.d.ts +10 -0
- package/src/vendor/bootstrap-vue/src/components/navbar/navbar-brand.spec.js +50 -0
- package/src/vendor/bootstrap-vue/src/components/navbar/navbar.spec.js +130 -0
- package/src/vendor/bootstrap-vue/src/components/navbar/package.json +54 -0
- package/src/vendor/bootstrap-vue/src/components/popover/README.md +919 -0
- package/src/vendor/bootstrap-vue/src/components/popover/index.d.ts +7 -0
- package/src/vendor/bootstrap-vue/src/components/popover/package.json +261 -0
- package/src/vendor/bootstrap-vue/src/components/popover/popover.spec.js +199 -0
- package/src/vendor/bootstrap-vue/src/components/progress/MODIFICATIONS.md +23 -0
- package/src/vendor/bootstrap-vue/src/components/progress/README.md +363 -0
- package/src/vendor/bootstrap-vue/src/components/progress/index.d.ts +10 -0
- package/src/vendor/bootstrap-vue/src/components/progress/package.json +109 -0
- package/src/vendor/bootstrap-vue/src/components/progress/progress-bar.spec.js +270 -0
- package/src/vendor/bootstrap-vue/src/components/progress/progress.spec.js +71 -0
- package/src/vendor/bootstrap-vue/src/components/table/README.md +3157 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/default-sort-compare.spec.js +112 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/normalize-fields.spec.js +93 -0
- package/src/vendor/bootstrap-vue/src/components/table/index.d.ts +237 -0
- package/src/vendor/bootstrap-vue/src/components/table/package.json +1763 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-busy.spec.js +150 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-caption.spec.js +176 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-colgroup.spec.js +81 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-filtering.spec.js +409 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-item-formatter.spec.js +56 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-lite.spec.js +682 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-pagination.spec.js +133 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-primarykey.spec.js +83 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-provider.spec.js +411 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-row-details.spec.js +459 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-selectable.spec.js +1182 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-simple.spec.js +206 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-sorting.spec.js +858 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-sticky-column.spec.js +377 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-tbody-bottom-row.spec.js +94 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-tbody-row-events.spec.js +529 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-tbody-top-row.spec.js +88 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-tbody-transition.spec.js +83 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-tfoot-custom.spec.js +91 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-tfoot-events.spec.js +137 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-thead-events.spec.js +155 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-thead-top.spec.js +96 -0
- package/src/vendor/bootstrap-vue/src/components/table/table.spec.js +692 -0
- package/src/vendor/bootstrap-vue/src/components/tabs/README.md +575 -0
- package/src/vendor/bootstrap-vue/src/components/tabs/index.d.ts +13 -0
- package/src/vendor/bootstrap-vue/src/components/tabs/package.json +205 -0
- package/src/vendor/bootstrap-vue/src/components/tabs/tab.spec.js +330 -0
- package/src/vendor/bootstrap-vue/src/components/tabs/tabs.spec.js +836 -0
- package/src/vendor/bootstrap-vue/src/components/toast/README.md +656 -0
- package/src/vendor/bootstrap-vue/src/components/toast/helpers/bv-toast.spec.js +131 -0
- package/src/vendor/bootstrap-vue/src/components/toast/index.d.ts +70 -0
- package/src/vendor/bootstrap-vue/src/components/toast/package.json +188 -0
- package/src/vendor/bootstrap-vue/src/components/toast/toast.spec.js +346 -0
- package/src/vendor/bootstrap-vue/src/components/toast/toaster.spec.js +77 -0
- package/src/vendor/bootstrap-vue/src/components/tooltip/README.md +559 -0
- package/src/vendor/bootstrap-vue/src/components/tooltip/index.d.ts +7 -0
- package/src/vendor/bootstrap-vue/src/components/tooltip/package.json +258 -0
- package/src/vendor/bootstrap-vue/src/components/tooltip/tooltip.spec.js +1529 -0
- package/src/vendor/bootstrap-vue/src/components/transition/package.json +5 -0
- package/src/vendor/bootstrap-vue/src/components/transporter/package.json +5 -0
- package/src/vendor/bootstrap-vue/src/components/transporter/transporter.spec.js +85 -0
- package/src/vendor/bootstrap-vue/src/directives/modal/index.d.ts +8 -0
- package/src/vendor/bootstrap-vue/src/directives/modal/modal.spec.js +191 -0
- package/src/vendor/bootstrap-vue/src/directives/toggle/README.md +146 -0
- package/src/vendor/bootstrap-vue/src/directives/toggle/index.d.ts +7 -0
- package/src/vendor/bootstrap-vue/src/directives/toggle/package.json +26 -0
- package/src/vendor/bootstrap-vue/src/directives/toggle/toggle.spec.js +452 -0
- package/src/vendor/bootstrap-vue/src/directives/tooltip/README.md +521 -0
- package/src/vendor/bootstrap-vue/src/directives/tooltip/index.d.ts +7 -0
- package/src/vendor/bootstrap-vue/src/directives/tooltip/package.json +131 -0
- package/src/vendor/bootstrap-vue/src/directives/tooltip/tooltip.spec.js +223 -0
- package/src/vendor/bootstrap-vue/src/directives/visible/README.md +244 -0
- package/src/vendor/bootstrap-vue/src/directives/visible/index.d.ts +7 -0
- package/src/vendor/bootstrap-vue/src/directives/visible/package.json +24 -0
- package/src/vendor/bootstrap-vue/src/index.d.ts +61 -0
- package/src/vendor/bootstrap-vue/src/mixins/attrs.spec.js +194 -0
- package/src/vendor/bootstrap-vue/src/mixins/click-out.spec.js +52 -0
- package/src/vendor/bootstrap-vue/src/mixins/focus-in.spec.js +53 -0
- package/src/vendor/bootstrap-vue/src/mixins/listen-on-document.spec.js +117 -0
- package/src/vendor/bootstrap-vue/src/mixins/listen-on-root.spec.js +77 -0
- package/src/vendor/bootstrap-vue/src/mixins/listen-on-window.spec.js +115 -0
- package/src/vendor/bootstrap-vue/src/mixins/listeners.spec.js +245 -0
- package/src/vendor/bootstrap-vue/src/utils/bv-event.class.spec.js +66 -0
- package/src/vendor/bootstrap-vue/src/utils/clone-deep.spec.js +70 -0
- package/src/vendor/bootstrap-vue/src/utils/config.spec.js +169 -0
- package/src/vendor/bootstrap-vue/src/utils/css-escape.spec.js +82 -0
- package/src/vendor/bootstrap-vue/src/utils/dom.spec.js +291 -0
- package/src/vendor/bootstrap-vue/src/utils/events.spec.js +41 -0
- package/src/vendor/bootstrap-vue/src/utils/get.spec.js +109 -0
- package/src/vendor/bootstrap-vue/src/utils/inspect.spec.js +251 -0
- package/src/vendor/bootstrap-vue/src/utils/loose-equal.spec.js +203 -0
- package/src/vendor/bootstrap-vue/src/utils/normalize-slot.spec.js +63 -0
- package/src/vendor/bootstrap-vue/src/utils/number.spec.js +72 -0
- package/src/vendor/bootstrap-vue/src/utils/object.spec.js +61 -0
- package/src/vendor/bootstrap-vue/src/utils/props.spec.js +112 -0
- package/src/vendor/bootstrap-vue/src/utils/router.spec.js +248 -0
- package/src/vendor/bootstrap-vue/src/utils/string.spec.js +65 -0
- package/src/vendor/bootstrap-vue/src/utils/stringify-object-values.spec.js +47 -0
- package/src/vendor/bootstrap-vue/src/utils/warn.spec.js +54 -0
- package/src/vendor/bootstrap-vue/src/vue-injections.d.ts +13 -0
- package/translations.js +0 -26
- package/dist/tokens/css/tokens.css +0 -953
- package/dist/tokens/css/tokens.dark.css +0 -953
- package/dist/tokens/js/tokens.dark.js +0 -951
- package/dist/tokens/js/tokens.js +0 -951
- package/dist/tokens/json/tokens.dark.json +0 -21803
- package/dist/tokens/json/tokens.json +0 -21803
- package/dist/tokens/scss/_tokens.dark.scss +0 -950
- package/dist/tokens/scss/_tokens.scss +0 -950
- package/dist/tokens/scss/_tokens_custom_properties.scss +0 -951
- package/dist/tokens/tailwind/tokens.cjs +0 -336
- package/src/charts.js +0 -14
- package/src/components/base/accordion/accordion.md +0 -3
- package/src/components/base/accordion/accordion.vue +0 -43
- package/src/components/base/accordion/accordion_item.md +0 -3
- package/src/components/base/accordion/accordion_item.scss +0 -16
- package/src/components/base/accordion/accordion_item.vue +0 -122
- package/src/components/base/alert/alert.md +0 -35
- package/src/components/base/alert/alert.scss +0 -179
- package/src/components/base/alert/alert.vue +0 -241
- package/src/components/base/animated_icon/animated_chevron_right_down_icon.vue +0 -28
- package/src/components/base/animated_icon/animated_duo_chat_icon.vue +0 -39
- package/src/components/base/animated_icon/animated_icon.md +0 -4
- package/src/components/base/animated_icon/animated_icon.scss +0 -456
- package/src/components/base/animated_icon/animated_notifications_icon.vue +0 -49
- package/src/components/base/animated_icon/animated_sidebar_icon.vue +0 -35
- package/src/components/base/animated_icon/animated_smile_icon.vue +0 -37
- package/src/components/base/animated_icon/animated_sort_icon.vue +0 -84
- package/src/components/base/animated_icon/animated_star_icon.vue +0 -27
- package/src/components/base/animated_icon/animated_todo_icon.vue +0 -49
- package/src/components/base/animated_icon/animated_upload_icon.vue +0 -41
- package/src/components/base/animated_icon/base_animated_icon.vue +0 -39
- package/src/components/base/avatar/avatar.md +0 -1
- package/src/components/base/avatar/avatar.scss +0 -228
- package/src/components/base/avatar/avatar.vue +0 -151
- package/src/components/base/avatar_labeled/avatar_labeled.md +0 -20
- package/src/components/base/avatar_labeled/avatar_labeled.scss +0 -30
- package/src/components/base/avatar_labeled/avatar_labeled.vue +0 -92
- package/src/components/base/avatar_link/avatar_link.md +0 -33
- package/src/components/base/avatar_link/avatar_link.scss +0 -41
- package/src/components/base/avatar_link/avatar_link.vue +0 -15
- package/src/components/base/avatars_inline/avatars_inline.md +0 -38
- package/src/components/base/avatars_inline/avatars_inline.scss +0 -64
- package/src/components/base/avatars_inline/avatars_inline.vue +0 -110
- package/src/components/base/badge/badge.md +0 -38
- package/src/components/base/badge/badge.scss +0 -251
- package/src/components/base/badge/badge.vue +0 -91
- package/src/components/base/banner/banner.md +0 -35
- package/src/components/base/banner/banner.scss +0 -35
- package/src/components/base/banner/banner.vue +0 -131
- package/src/components/base/breadcrumb/breadcrumb.md +0 -23
- package/src/components/base/breadcrumb/breadcrumb.scss +0 -62
- package/src/components/base/breadcrumb/breadcrumb.vue +0 -229
- package/src/components/base/breadcrumb/breadcrumb_item.vue +0 -44
- package/src/components/base/broadcast_message/broadcast_message.md +0 -25
- package/src/components/base/broadcast_message/broadcast_message.scss +0 -135
- package/src/components/base/broadcast_message/broadcast_message.vue +0 -98
- package/src/components/base/broadcast_message/constants.js +0 -3
- package/src/components/base/button/button.md +0 -61
- package/src/components/base/button/button.scss +0 -699
- package/src/components/base/button/button.vue +0 -143
- package/src/components/base/button_group/button_group.md +0 -28
- package/src/components/base/button_group/button_group.vue +0 -16
- package/src/components/base/card/card.md +0 -4
- package/src/components/base/card/card.scss +0 -46
- package/src/components/base/card/card.vue +0 -49
- package/src/components/base/collapse/collapse.md +0 -26
- package/src/components/base/collapse/collapse.vue +0 -29
- package/src/components/base/datepicker/datepicker.md +0 -8
- package/src/components/base/datepicker/datepicker.scss +0 -228
- package/src/components/base/datepicker/datepicker.vue +0 -454
- package/src/components/base/daterange_picker/daterange_picker.md +0 -32
- package/src/components/base/daterange_picker/daterange_picker.scss +0 -20
- package/src/components/base/daterange_picker/daterange_picker.vue +0 -345
- package/src/components/base/drawer/drawer.md +0 -17
- package/src/components/base/drawer/drawer.scss +0 -153
- package/src/components/base/drawer/drawer.vue +0 -136
- package/src/components/base/dropdown/dropdown.md +0 -72
- package/src/components/base/dropdown/dropdown.scss +0 -210
- package/src/components/base/dropdown/dropdown.vue +0 -323
- package/src/components/base/dropdown/dropdown_divider.scss +0 -20
- package/src/components/base/dropdown/dropdown_divider.vue +0 -15
- package/src/components/base/dropdown/dropdown_form.vue +0 -17
- package/src/components/base/dropdown/dropdown_item.md +0 -2
- package/src/components/base/dropdown/dropdown_item.scss +0 -102
- package/src/components/base/dropdown/dropdown_item.vue +0 -114
- package/src/components/base/dropdown/dropdown_section_header.md +0 -7
- package/src/components/base/dropdown/dropdown_section_header.scss +0 -22
- package/src/components/base/dropdown/dropdown_section_header.vue +0 -17
- package/src/components/base/dropdown/dropdown_text.md +0 -7
- package/src/components/base/dropdown/dropdown_text.scss +0 -6
- package/src/components/base/dropdown/dropdown_text.vue +0 -17
- package/src/components/base/filtered_search/common_story_options.js +0 -12
- package/src/components/base/filtered_search/filtered_search.md +0 -76
- package/src/components/base/filtered_search/filtered_search.scss +0 -51
- package/src/components/base/filtered_search/filtered_search.vue +0 -475
- package/src/components/base/filtered_search/filtered_search_suggestion.md +0 -15
- package/src/components/base/filtered_search/filtered_search_suggestion.scss +0 -11
- package/src/components/base/filtered_search/filtered_search_suggestion.vue +0 -64
- package/src/components/base/filtered_search/filtered_search_suggestion_list.md +0 -13
- package/src/components/base/filtered_search/filtered_search_suggestion_list.scss +0 -36
- package/src/components/base/filtered_search/filtered_search_suggestion_list.vue +0 -122
- package/src/components/base/filtered_search/filtered_search_term.md +0 -7
- package/src/components/base/filtered_search/filtered_search_term.scss +0 -19
- package/src/components/base/filtered_search/filtered_search_term.vue +0 -243
- package/src/components/base/filtered_search/filtered_search_token.md +0 -23
- package/src/components/base/filtered_search/filtered_search_token.scss +0 -63
- package/src/components/base/filtered_search/filtered_search_token.vue +0 -484
- package/src/components/base/filtered_search/filtered_search_token_segment.md +0 -14
- package/src/components/base/filtered_search/filtered_search_token_segment.scss +0 -25
- package/src/components/base/filtered_search/filtered_search_token_segment.vue +0 -468
- package/src/components/base/filtered_search/filtered_search_utils.js +0 -251
- package/src/components/base/form/form.md +0 -2
- package/src/components/base/form/form.vue +0 -17
- package/src/components/base/form/form_character_count/form_character_count.md +0 -53
- package/src/components/base/form/form_character_count/form_character_count.vue +0 -97
- package/src/components/base/form/form_checkbox/form_checkbox.md +0 -6
- package/src/components/base/form/form_checkbox/form_checkbox.scss +0 -221
- package/src/components/base/form/form_checkbox/form_checkbox.vue +0 -58
- package/src/components/base/form/form_checkbox/form_checkbox_group.vue +0 -44
- package/src/components/base/form/form_checkbox_tree/checkbox_tree_node.vue +0 -58
- package/src/components/base/form/form_checkbox_tree/form_checkbox_tree.md +0 -73
- package/src/components/base/form/form_checkbox_tree/form_checkbox_tree.vue +0 -116
- package/src/components/base/form/form_checkbox_tree/models/constants.js +0 -12
- package/src/components/base/form/form_checkbox_tree/models/node.js +0 -48
- package/src/components/base/form/form_checkbox_tree/models/tree.js +0 -186
- package/src/components/base/form/form_combobox/constants.js +0 -50
- package/src/components/base/form/form_combobox/form_combobox.md +0 -52
- package/src/components/base/form/form_combobox/form_combobox.scss +0 -5
- package/src/components/base/form/form_combobox/form_combobox.vue +0 -280
- package/src/components/base/form/form_date/form_date.md +0 -26
- package/src/components/base/form/form_date/form_date.scss +0 -7
- package/src/components/base/form/form_date/form_date.vue +0 -135
- package/src/components/base/form/form_fields/form_field_validator.vue +0 -59
- package/src/components/base/form/form_fields/form_fields.md +0 -41
- package/src/components/base/form/form_fields/form_fields.vue +0 -258
- package/src/components/base/form/form_fields/mappers.js +0 -11
- package/src/components/base/form/form_fields/validators.js +0 -49
- package/src/components/base/form/form_group/form_group.md +0 -1
- package/src/components/base/form/form_group/form_group.scss +0 -59
- package/src/components/base/form/form_group/form_group.vue +0 -76
- package/src/components/base/form/form_input/form_input.md +0 -1
- package/src/components/base/form/form_input/form_input.scss +0 -74
- package/src/components/base/form/form_input/form_input.vue +0 -98
- package/src/components/base/form/form_input_group/form_input_group.md +0 -67
- package/src/components/base/form/form_input_group/form_input_group.vue +0 -103
- package/src/components/base/form/form_input_group/form_input_group_mixin.js +0 -39
- package/src/components/base/form/form_radio/form_radio.md +0 -23
- package/src/components/base/form/form_radio/form_radio.scss +0 -1
- package/src/components/base/form/form_radio/form_radio.vue +0 -51
- package/src/components/base/form/form_radio_group/form_radio_group.md +0 -63
- package/src/components/base/form/form_radio_group/form_radio_group.scss +0 -4
- package/src/components/base/form/form_radio_group/form_radio_group.vue +0 -64
- package/src/components/base/form/form_select/constants.js +0 -5
- package/src/components/base/form/form_select/form_select.md +0 -1
- package/src/components/base/form/form_select/form_select.scss +0 -117
- package/src/components/base/form/form_select/form_select.vue +0 -61
- package/src/components/base/form/form_textarea/form_textarea.md +0 -3
- package/src/components/base/form/form_textarea/form_textarea.vue +0 -141
- package/src/components/base/form/input_group_text/input_group_text.md +0 -4
- package/src/components/base/form/input_group_text/input_group_text.vue +0 -17
- package/src/components/base/icon/icon.md +0 -27
- package/src/components/base/icon/icon.scss +0 -8
- package/src/components/base/icon/icon.vue +0 -98
- package/src/components/base/infinite_scroll/infinite_scroll.md +0 -104
- package/src/components/base/infinite_scroll/infinite_scroll.scss +0 -11
- package/src/components/base/infinite_scroll/infinite_scroll.vue +0 -169
- package/src/components/base/keyset_pagination/keyset_pagination.md +0 -49
- package/src/components/base/keyset_pagination/keyset_pagination.scss +0 -9
- package/src/components/base/keyset_pagination/keyset_pagination.vue +0 -152
- package/src/components/base/label/label.md +0 -15
- package/src/components/base/label/label.scss +0 -156
- package/src/components/base/label/label.vue +0 -160
- package/src/components/base/link/link.md +0 -22
- package/src/components/base/link/link.scss +0 -13
- package/src/components/base/link/link.vue +0 -25
- package/src/components/base/loading_icon/loading_icon.md +0 -3
- package/src/components/base/loading_icon/loading_icon.scss +0 -139
- package/src/components/base/loading_icon/loading_icon.vue +0 -96
- package/src/components/base/markdown/markdown.md +0 -73
- package/src/components/base/markdown/markdown.scss +0 -223
- package/src/components/base/markdown/markdown.vue +0 -18
- package/src/components/base/markdown/markdown_typescale_demo.html +0 -155
- package/src/components/base/modal/modal.md +0 -30
- package/src/components/base/modal/modal.scss +0 -130
- package/src/components/base/modal/modal.vue +0 -269
- package/src/components/base/nav/nav.md +0 -11
- package/src/components/base/nav/nav.scss +0 -7
- package/src/components/base/nav/nav.vue +0 -17
- package/src/components/base/nav/nav_item.vue +0 -17
- package/src/components/base/nav/nav_item_dropdown.vue +0 -40
- package/src/components/base/navbar/navbar.md +0 -4
- package/src/components/base/navbar/navbar.scss +0 -0
- package/src/components/base/navbar/navbar.vue +0 -17
- package/src/components/base/new_dropdowns/base_dropdown/base_dropdown.vue +0 -507
- package/src/components/base/new_dropdowns/base_dropdown/constants.js +0 -2
- package/src/components/base/new_dropdowns/constants.js +0 -20
- package/src/components/base/new_dropdowns/disclosure/constants.js +0 -6
- package/src/components/base/new_dropdowns/disclosure/disclosure_dropdown.md +0 -168
- package/src/components/base/new_dropdowns/disclosure/disclosure_dropdown.scss +0 -17
- package/src/components/base/new_dropdowns/disclosure/disclosure_dropdown.vue +0 -458
- package/src/components/base/new_dropdowns/disclosure/disclosure_dropdown_group.vue +0 -104
- package/src/components/base/new_dropdowns/disclosure/disclosure_dropdown_item.vue +0 -131
- package/src/components/base/new_dropdowns/disclosure/mock_data.js +0 -201
- package/src/components/base/new_dropdowns/disclosure/utils.js +0 -70
- package/src/components/base/new_dropdowns/dropdown.scss +0 -243
- package/src/components/base/new_dropdowns/dropdown_item.scss +0 -134
- package/src/components/base/new_dropdowns/listbox/listbox.md +0 -159
- package/src/components/base/new_dropdowns/listbox/listbox.scss +0 -53
- package/src/components/base/new_dropdowns/listbox/listbox.vue +0 -940
- package/src/components/base/new_dropdowns/listbox/listbox_group.vue +0 -35
- package/src/components/base/new_dropdowns/listbox/listbox_item.vue +0 -77
- package/src/components/base/new_dropdowns/listbox/listbox_search_input.vue +0 -76
- package/src/components/base/new_dropdowns/listbox/mock_data.js +0 -139
- package/src/components/base/new_dropdowns/listbox/utils.js +0 -25
- package/src/components/base/paginated_list/paginated_list.md +0 -1
- package/src/components/base/paginated_list/paginated_list.vue +0 -179
- package/src/components/base/pagination/pagination.md +0 -45
- package/src/components/base/pagination/pagination.scss +0 -57
- package/src/components/base/pagination/pagination.vue +0 -498
- package/src/components/base/path/data.js +0 -43
- package/src/components/base/path/path.md +0 -41
- package/src/components/base/path/path.scss +0 -163
- package/src/components/base/path/path.vue +0 -191
- package/src/components/base/popover/popover.scss +0 -102
- package/src/components/base/popover/popover.vue +0 -111
- package/src/components/base/progress_bar/progress_bar.scss +0 -19
- package/src/components/base/progress_bar/progress_bar.vue +0 -15
- package/src/components/base/search_box_by_click/search_box_by_click.md +0 -1
- package/src/components/base/search_box_by_click/search_box_by_click.scss +0 -49
- package/src/components/base/search_box_by_click/search_box_by_click.vue +0 -296
- package/src/components/base/search_box_by_type/search_box_by_type.md +0 -1
- package/src/components/base/search_box_by_type/search_box_by_type.scss +0 -70
- package/src/components/base/search_box_by_type/search_box_by_type.vue +0 -159
- package/src/components/base/segmented_control/segmented_control.md +0 -1
- package/src/components/base/segmented_control/segmented_control.scss +0 -179
- package/src/components/base/segmented_control/segmented_control.vue +0 -77
- package/src/components/base/skeleton_loader/skeleton_loader.md +0 -46
- package/src/components/base/skeleton_loader/skeleton_loader.scss +0 -17
- package/src/components/base/skeleton_loader/skeleton_loader.vue +0 -249
- package/src/components/base/sorting/sorting.md +0 -80
- package/src/components/base/sorting/sorting.vue +0 -160
- package/src/components/base/table/constants.js +0 -48
- package/src/components/base/table/table.md +0 -72
- package/src/components/base/table/table.scss +0 -145
- package/src/components/base/table/table.vue +0 -144
- package/src/components/base/table_lite/table_lite.md +0 -68
- package/src/components/base/table_lite/table_lite.vue +0 -43
- package/src/components/base/tabs/constants.js +0 -1
- package/src/components/base/tabs/tab/tab.vue +0 -57
- package/src/components/base/tabs/tabs/scrollable_tabs.vue +0 -140
- package/src/components/base/tabs/tabs/tabs.md +0 -76
- package/src/components/base/tabs/tabs/tabs.scss +0 -164
- package/src/components/base/tabs/tabs/tabs.vue +0 -282
- package/src/components/base/toast/toast.js +0 -93
- package/src/components/base/toast/toast.md +0 -48
- package/src/components/base/toast/toast.scss +0 -62
- package/src/components/base/toggle/toggle.md +0 -4
- package/src/components/base/toggle/toggle.scss +0 -177
- package/src/components/base/toggle/toggle.vue +0 -194
- package/src/components/base/token/token.md +0 -12
- package/src/components/base/token/token.scss +0 -44
- package/src/components/base/token/token.vue +0 -67
- package/src/components/base/token_selector/helpers.js +0 -3
- package/src/components/base/token_selector/token_container.vue +0 -184
- package/src/components/base/token_selector/token_selector.md +0 -78
- package/src/components/base/token_selector/token_selector.scss +0 -19
- package/src/components/base/token_selector/token_selector.vue +0 -489
- package/src/components/base/token_selector/token_selector_dropdown.vue +0 -257
- package/src/components/base/tooltip/tooltip.md +0 -52
- package/src/components/base/tooltip/tooltip.scss +0 -52
- package/src/components/base/tooltip/tooltip.vue +0 -31
- package/src/components/charts/area/area.vue +0 -372
- package/src/components/charts/bar/bar.md +0 -3
- package/src/components/charts/bar/bar.vue +0 -237
- package/src/components/charts/chart/chart.md +0 -19
- package/src/components/charts/chart/chart.vue +0 -188
- package/src/components/charts/column/column.vue +0 -204
- package/src/components/charts/discrete_scatter/discrete_scatter.vue +0 -207
- package/src/components/charts/gauge/gauge.md +0 -8
- package/src/components/charts/gauge/gauge.scss +0 -0
- package/src/components/charts/gauge/gauge.vue +0 -178
- package/src/components/charts/heatmap/heatmap.md +0 -7
- package/src/components/charts/heatmap/heatmap.scss +0 -7
- package/src/components/charts/heatmap/heatmap.vue +0 -290
- package/src/components/charts/heatmap/index.js +0 -3
- package/src/components/charts/legend/legend.md +0 -16
- package/src/components/charts/legend/legend.scss +0 -97
- package/src/components/charts/legend/legend.vue +0 -284
- package/src/components/charts/line/line.md +0 -7
- package/src/components/charts/line/line.vue +0 -368
- package/src/components/charts/series_label/series_label.md +0 -1
- package/src/components/charts/series_label/series_label.scss +0 -23
- package/src/components/charts/series_label/series_label.vue +0 -85
- package/src/components/charts/single_stat/single_stat.md +0 -8
- package/src/components/charts/single_stat/single_stat.scss +0 -17
- package/src/components/charts/single_stat/single_stat.vue +0 -158
- package/src/components/charts/sparkline/sparkline.md +0 -8
- package/src/components/charts/sparkline/sparkline.vue +0 -308
- package/src/components/charts/stacked_column/stacked_column.md +0 -10
- package/src/components/charts/stacked_column/stacked_column.vue +0 -330
- package/src/components/charts/tooltip/tooltip.md +0 -3
- package/src/components/charts/tooltip/tooltip.scss +0 -9
- package/src/components/charts/tooltip/tooltip.vue +0 -253
- package/src/components/experimental/duo/chat/duo_chat.scss +0 -168
- package/src/components/experimental/experiment_badge/constants.js +0 -2
- package/src/components/experimental/experiment_badge/experiment_badge.md +0 -9
- package/src/components/experimental/experiment_badge/experiment_badge.vue +0 -113
- package/src/components/mixins/button_mixin.js +0 -9
- package/src/components/mixins/safe_link_mixin.js +0 -28
- package/src/components/mixins/tooltip_mixin.js +0 -21
- package/src/components/regions/dashboard_skeleton/dashboard_skeleton.md +0 -4
- package/src/components/regions/dashboard_skeleton/dashboard_skeleton.vue +0 -40
- package/src/components/regions/empty_state/empty_state.md +0 -4
- package/src/components/regions/empty_state/empty_state.scss +0 -3
- package/src/components/regions/empty_state/empty_state.vue +0 -187
- package/src/components/shared_components/charts/tooltip_default_format.scss +0 -18
- package/src/components/shared_components/charts/tooltip_default_format.vue +0 -32
- package/src/components/shared_components/clear_icon_button/clear_icon_button.scss +0 -10
- package/src/components/shared_components/clear_icon_button/clear_icon_button.vue +0 -43
- package/src/components/shared_components/close_button/close_button.vue +0 -29
- package/src/components/utilities/animated_number/animated_number.md +0 -6
- package/src/components/utilities/animated_number/animated_number.vue +0 -99
- package/src/components/utilities/friendly_wrap/friendly_wrap.md +0 -66
- package/src/components/utilities/friendly_wrap/friendly_wrap.vue +0 -33
- package/src/components/utilities/intersection_observer/intersection_observer.md +0 -16
- package/src/components/utilities/intersection_observer/intersection_observer.vue +0 -67
- package/src/components/utilities/intersperse/intersperse.md +0 -90
- package/src/components/utilities/intersperse/intersperse.vue +0 -60
- package/src/components/utilities/sprintf/sprintf.md +0 -243
- package/src/components/utilities/sprintf/sprintf.vue +0 -142
- package/src/components/utilities/truncate/constants.js +0 -5
- package/src/components/utilities/truncate/truncate.md +0 -14
- package/src/components/utilities/truncate/truncate.scss +0 -21
- package/src/components/utilities/truncate/truncate.vue +0 -109
- package/src/components/utilities/truncate_text/constants.js +0 -5
- package/src/components/utilities/truncate_text/truncate_text.md +0 -26
- package/src/components/utilities/truncate_text/truncate_text.scss +0 -14
- package/src/components/utilities/truncate_text/truncate_text.vue +0 -124
- package/src/directives/collapse_toggle.js +0 -1
- package/src/directives/hover_load/hover_load.js +0 -46
- package/src/directives/hover_load/hover_load.md +0 -22
- package/src/directives/modal.js +0 -1
- package/src/directives/outside/outside.js +0 -151
- package/src/directives/outside/outside.md +0 -140
- package/src/directives/resize_observer/resize_observer.js +0 -45
- package/src/directives/resize_observer/resize_observer.md +0 -54
- package/src/directives/safe_html/constants.js +0 -14
- package/src/directives/safe_html/safe_html.js +0 -35
- package/src/directives/safe_html/safe_html.md +0 -58
- package/src/directives/safe_link/mock_data.js +0 -33
- package/src/directives/safe_link/safe_link.js +0 -56
- package/src/directives/safe_link/safe_link.md +0 -37
- package/src/directives/tooltip.js +0 -1
- package/src/internal/color_contrast/color_contrast.md +0 -8
- package/src/internal/color_contrast/color_contrast.vue +0 -52
- package/src/scss/README.md +0 -1
- package/src/scss/body.scss +0 -4
- package/src/scss/bootstrap.scss +0 -34
- package/src/scss/bootstrap_vue.scss +0 -25
- package/src/scss/fonts.scss +0 -67
- package/src/scss/functions.scss +0 -63
- package/src/scss/gitlab_ui.scss +0 -19
- package/src/scss/mixins.scss +0 -262
- package/src/scss/storybook.scss +0 -43
- package/src/scss/storybook_dark_mode.scss +0 -21
- package/src/scss/tokens.scss +0 -2
- package/src/scss/typescale/_index.scss +0 -103
- package/src/scss/typescale/typeface_demo.html +0 -70
- package/src/scss/typescale/typescale.md +0 -82
- package/src/scss/typescale/typescale_demo.html +0 -78
- package/src/scss/typescale/typescale_demo.scss +0 -8
- package/src/scss/utilities.scss +0 -9196
- package/src/scss/utility-mixins/accessibility.scss +0 -19
- package/src/scss/utility-mixins/animation.scss +0 -90
- package/src/scss/utility-mixins/background.scss +0 -421
- package/src/scss/utility-mixins/border.scss +0 -498
- package/src/scss/utility-mixins/box-shadow.scss +0 -220
- package/src/scss/utility-mixins/clearfix.scss +0 -9
- package/src/scss/utility-mixins/color.scss +0 -228
- package/src/scss/utility-mixins/composite.scss +0 -24
- package/src/scss/utility-mixins/cursor.scss +0 -36
- package/src/scss/utility-mixins/deprecated.scss +0 -20
- package/src/scss/utility-mixins/display.scss +0 -192
- package/src/scss/utility-mixins/flex.scss +0 -360
- package/src/scss/utility-mixins/grid.scss +0 -50
- package/src/scss/utility-mixins/image.scss +0 -8
- package/src/scss/utility-mixins/index.scss +0 -47
- package/src/scss/utility-mixins/list-style.scss +0 -12
- package/src/scss/utility-mixins/opacity.scss +0 -32
- package/src/scss/utility-mixins/outline.scss +0 -12
- package/src/scss/utility-mixins/overflow.scss +0 -45
- package/src/scss/utility-mixins/pointer-events.scss +0 -12
- package/src/scss/utility-mixins/sizing.scss +0 -582
- package/src/scss/utility-mixins/spacing.scss +0 -1564
- package/src/scss/utility-mixins/svg.scss +0 -79
- package/src/scss/utility-mixins/text.scss +0 -183
- package/src/scss/utility-mixins/transform.scss +0 -58
- package/src/scss/utility-mixins/transition.scss +0 -44
- package/src/scss/utility-mixins/typography.scss +0 -381
- package/src/scss/utility-mixins/vertical-align.scss +0 -22
- package/src/scss/utility-mixins/visibility.scss +0 -12
- package/src/scss/utility-mixins/z-index.scss +0 -37
- package/src/scss/variables.scss +0 -337
- package/src/tokens/action.tokens.json +0 -566
- package/src/tokens/background.tokens.json +0 -62
- package/src/tokens/border.tokens.json +0 -43
- package/src/tokens/build/css/tokens.css +0 -953
- package/src/tokens/build/css/tokens.dark.css +0 -953
- package/src/tokens/build/js/tokens.dark.js +0 -951
- package/src/tokens/build/js/tokens.js +0 -951
- package/src/tokens/build/json/tokens.dark.json +0 -21803
- package/src/tokens/build/scss/_tokens.dark.scss +0 -950
- package/src/tokens/build/scss/_tokens.scss +0 -950
- package/src/tokens/build/scss/_tokens_custom_properties.scss +0 -951
- package/src/tokens/build/tailwind/tokens.cjs +0 -336
- package/src/tokens/color.alpha.tokens.json +0 -70
- package/src/tokens/color.constant.tokens.json +0 -660
- package/src/tokens/color.data_viz.tokens.json +0 -509
- package/src/tokens/common_story_options.js +0 -25
- package/src/tokens/contextual/alert.tokens.json +0 -209
- package/src/tokens/contextual/avatar.tokens.json +0 -112
- package/src/tokens/contextual/badge.tokens.json +0 -879
- package/src/tokens/contextual/banner.tokens.json +0 -38
- package/src/tokens/contextual/breadcrumb.tokens.json +0 -11
- package/src/tokens/contextual/broadcast.tokens.json +0 -222
- package/src/tokens/contextual/button.tokens.json +0 -874
- package/src/tokens/contextual/datepicker.tokens.json +0 -25
- package/src/tokens/contextual/dropdown.tokens.json +0 -148
- package/src/tokens/contextual/filtered-search.tokens.json +0 -72
- package/src/tokens/contextual/label.tokens.json +0 -118
- package/src/tokens/contextual/link.tokens.json +0 -46
- package/src/tokens/contextual/progress-bar.tokens.json +0 -38
- package/src/tokens/contextual/skeleton-loader.tokens.json +0 -24
- package/src/tokens/contextual/spinner.tokens.json +0 -38
- package/src/tokens/contextual/table.tokens.json +0 -24
- package/src/tokens/contextual/tabs.tokens.json +0 -18
- package/src/tokens/contextual/toggle.tokens.json +0 -59
- package/src/tokens/contextual/token.tokens.json +0 -21
- package/src/tokens/control.tokens.json +0 -177
- package/src/tokens/deprecated.color.theme.tokens.json +0 -736
- package/src/tokens/deprecated.color.tokens.json +0 -800
- package/src/tokens/deprecated.color.transparency.tokens.json +0 -110
- package/src/tokens/feedback.tokens.json +0 -200
- package/src/tokens/focus-ring.tokens.json +0 -21
- package/src/tokens/icon.tokens.json +0 -78
- package/src/tokens/line_height.tokens.json +0 -74
- package/src/tokens/shadow.tokens.json +0 -14
- package/src/tokens/status.tokens.json +0 -196
- package/src/tokens/text.tokens.json +0 -105
- package/src/tokens/tokens_story.vue +0 -84
- package/src/tokens/tokens_table.vue +0 -248
- package/src/utils/breakpoints.js +0 -21
- package/src/utils/charts/config.js +0 -514
- package/src/utils/charts/constants.js +0 -61
- package/src/utils/charts/mock_data.js +0 -259
- package/src/utils/charts/story_config.js +0 -21
- package/src/utils/charts/theme.js +0 -344
- package/src/utils/charts/utils.js +0 -49
- package/src/utils/constants.js +0 -347
- package/src/utils/data_utils.js +0 -28
- package/src/utils/datetime_utility.js +0 -63
- package/src/utils/i18n.js +0 -62
- package/src/utils/is_slot_empty.js +0 -40
- package/src/utils/number_utils.js +0 -120
- package/src/utils/play_utils.js +0 -9
- package/src/utils/set_utils.js +0 -24
- package/src/utils/stories_constants.js +0 -30
- package/src/utils/stories_utils.js +0 -5
- package/src/utils/story_decorators/container.js +0 -14
- package/src/utils/string_utils.js +0 -79
- package/src/utils/svgs/svg_paths.js +0 -10
- package/src/utils/use_fake_date.js +0 -27
- package/src/utils/use_mock_intersection_observer.js +0 -96
- package/src/utils/utils.js +0 -206
- package/src/utils.js +0 -4
- package/tailwind.defaults.js +0 -543
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_context/constants.js +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_context/duo_chat_context_item_menu/duo_chat_context_item_menu.vue +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_context/duo_chat_context_item_menu/duo_chat_context_item_menu_category_items.vue +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_context/duo_chat_context_item_menu/duo_chat_context_item_menu_search_item.vue +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_context/duo_chat_context_item_menu/duo_chat_context_item_menu_search_items.vue +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_context/duo_chat_context_item_popover/duo_chat_context_item_popover.vue +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_context/duo_chat_context_item_selections/duo_chat_context_item_selections.vue +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_context/mock_context_data.js +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_context/utils.js +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_conversation/duo_chat_conversation.md +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_conversation/duo_chat_conversation.vue +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_loader/duo_chat_loader.md +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_loader/duo_chat_loader.scss +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_loader/duo_chat_loader.vue +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_message/buttons_utils.js +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_message/copy_code_element.js +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_message/duo_chat_message.md +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_message/insert_code_snippet_element.js +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_message/utils.js +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_message_sources/duo_chat_message_sources.md +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_message_sources/duo_chat_message_sources.vue +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_predefined_prompts/duo_chat_predefined_prompts.md +0 -0
- /package/src/components/{experimental/duo/chat → chat}/components/duo_chat_predefined_prompts/duo_chat_predefined_prompts.vue +0 -0
- /package/src/components/{experimental/duo/chat → chat}/constants.js +0 -0
- /package/src/components/{experimental/duo/chat → chat}/duo_chat.md +0 -0
- /package/src/components/{experimental/duo/chat → chat}/duo_chat.vue +0 -0
- /package/src/components/{experimental/duo/chat → chat}/markdown_renderer.js +0 -0
- /package/src/components/{experimental/duo/user_feedback → user_feedback}/user_feedback.md +0 -0
- /package/src/components/{experimental/duo/user_feedback → user_feedback}/user_feedback.vue +0 -0
- /package/src/components/{experimental/duo/user_feedback → user_feedback}/user_feedback_modal.vue +0 -0
- /package/src/components/{experimental/duo/workflow → workflow}/components/duo_workflow_panel/duo_workflow_panel.md +0 -0
- /package/src/components/{experimental/duo/workflow → workflow}/components/duo_workflow_panel/duo_workflow_panel.vue +0 -0
- /package/src/components/{experimental/duo/workflow → workflow}/components/duo_workflow_prompt/duo_workflow_prompt.md +0 -0
- /package/src/components/{experimental/duo/workflow → workflow}/components/duo_workflow_prompt/duo_workflow_prompt.vue +0 -0
|
@@ -1,951 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Automatically generated
|
|
3
|
-
* Do not edit directly
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
export const GL_ACTION_DISABLED_FOREGROUND_COLOR = '#89888d'; // Used for the foreground of a disabled action.
|
|
7
|
-
export const GL_ACTION_DISABLED_BACKGROUND_COLOR = '#ececef'; // Used for the background of a disabled action.
|
|
8
|
-
export const GL_ACTION_DISABLED_BORDER_COLOR = '#dcdcde'; // Used for the border of a disabled action.
|
|
9
|
-
export const GL_ACTION_SELECTED_FOREGROUND_COLOR_DEFAULT = '#fff'; // Used for the foreground of a selected action in the default state.
|
|
10
|
-
export const GL_ACTION_SELECTED_FOREGROUND_COLOR_HOVER = '#fff'; // Used for the foreground of a selected action in the hover state.
|
|
11
|
-
export const GL_ACTION_SELECTED_FOREGROUND_COLOR_FOCUS = '#fff'; // Used for the foreground of a selected action in the focus state.
|
|
12
|
-
export const GL_ACTION_SELECTED_FOREGROUND_COLOR_ACTIVE = '#fff'; // Used for the foreground of a selected action in the active state.
|
|
13
|
-
export const GL_ACTION_SELECTED_BACKGROUND_COLOR_DEFAULT = '#1f75cb'; // Used for the background of a selected action in the default state.
|
|
14
|
-
export const GL_ACTION_SELECTED_BACKGROUND_COLOR_HOVER = '#0b5cad'; // Used for the background of a selected action in the hover state.
|
|
15
|
-
export const GL_ACTION_SELECTED_BACKGROUND_COLOR_FOCUS = '#0b5cad'; // Used for the background of a selected action in the focus state.
|
|
16
|
-
export const GL_ACTION_SELECTED_BACKGROUND_COLOR_ACTIVE = '#064787'; // Used for the background of a selected action in the active state.
|
|
17
|
-
export const GL_ACTION_SELECTED_BORDER_COLOR_DEFAULT = '#1f75cb'; // Used for the border of a selected action in the default state.
|
|
18
|
-
export const GL_ACTION_SELECTED_BORDER_COLOR_HOVER = '#0b5cad'; // Used for the border of a selected action in the hover state.
|
|
19
|
-
export const GL_ACTION_SELECTED_BORDER_COLOR_FOCUS = '#0b5cad'; // Used for the border of a selected action in the focus state.
|
|
20
|
-
export const GL_ACTION_SELECTED_BORDER_COLOR_ACTIVE = '#064787'; // Used for the border of a selected action in the active state.
|
|
21
|
-
export const GL_ACTION_NEUTRAL_FOREGROUND_COLOR_DEFAULT = '#28272d'; // Used for the foreground of a neutral action in the default state.
|
|
22
|
-
export const GL_ACTION_NEUTRAL_FOREGROUND_COLOR_HOVER = '#28272d'; // Used for the foreground of a neutral action in the hover state.
|
|
23
|
-
export const GL_ACTION_NEUTRAL_FOREGROUND_COLOR_FOCUS = '#28272d'; // Used for the foreground of a neutral action in the focus state.
|
|
24
|
-
export const GL_ACTION_NEUTRAL_FOREGROUND_COLOR_ACTIVE = '#28272d'; // Used for the foreground of a neutral action in the active state.
|
|
25
|
-
export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_DEFAULT = 'rgba(164, 163, 168, 0.0)'; // Used for the background of a neutral action in the default state.
|
|
26
|
-
export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_HOVER = 'rgba(164, 163, 168, 0.16)'; // Used for the background of a neutral action in the hover state.
|
|
27
|
-
export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_FOCUS = 'rgba(164, 163, 168, 0.16)'; // Used for the background of a neutral action in the focus state.
|
|
28
|
-
export const GL_ACTION_NEUTRAL_BACKGROUND_COLOR_ACTIVE = 'rgba(83, 81, 88, 0.24)'; // Used for the background of a neutral action in the active state.
|
|
29
|
-
export const GL_ACTION_NEUTRAL_BORDER_COLOR_DEFAULT = 'transparent'; // Used for the border of a neutral action in the default state.
|
|
30
|
-
export const GL_ACTION_NEUTRAL_BORDER_COLOR_HOVER = 'transparent'; // Used for the border of a neutral action in the hover state.
|
|
31
|
-
export const GL_ACTION_NEUTRAL_BORDER_COLOR_FOCUS = 'transparent'; // Used for the border of a neutral action in the focus state.
|
|
32
|
-
export const GL_ACTION_NEUTRAL_BORDER_COLOR_ACTIVE = 'transparent'; // Used for the border of a neutral action in the active state.
|
|
33
|
-
export const GL_ACTION_CONFIRM_FOREGROUND_COLOR_DEFAULT = '#1f75cb'; // Used for the foreground of a confirm (positive) action in the default state.
|
|
34
|
-
export const GL_ACTION_CONFIRM_FOREGROUND_COLOR_HOVER = '#0b5cad'; // Used for the foreground of a confirm (positive) action in the hover state.
|
|
35
|
-
export const GL_ACTION_CONFIRM_FOREGROUND_COLOR_FOCUS = '#0b5cad'; // Used for the foreground of a confirm (positive) action in the focus state.
|
|
36
|
-
export const GL_ACTION_CONFIRM_FOREGROUND_COLOR_ACTIVE = '#033464'; // Used for the foreground of a confirm (positive) action in the active state.
|
|
37
|
-
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_DEFAULT = 'rgba(99, 166, 233, 0.0)'; // Used for the background of a confirm (positive) action in the default state.
|
|
38
|
-
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_HOVER = 'rgba(99, 166, 233, 0.16)'; // Used for the background of a confirm (positive) action in the hover state.
|
|
39
|
-
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_FOCUS = 'rgba(99, 166, 233, 0.16)'; // Used for the background of a confirm (positive) action in the focus state.
|
|
40
|
-
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_ACTIVE = 'rgba(11, 92, 173, 0.24)'; // Used for the background of a confirm (positive) action in the active state.
|
|
41
|
-
export const GL_ACTION_CONFIRM_BORDER_COLOR_DEFAULT = 'transparent'; // Used for the border of a confirm action in the default state.
|
|
42
|
-
export const GL_ACTION_CONFIRM_BORDER_COLOR_HOVER = 'transparent'; // Used for the border of a confirm action in the hover state.
|
|
43
|
-
export const GL_ACTION_CONFIRM_BORDER_COLOR_FOCUS = 'transparent'; // Used for the border of a confirm action in the focus state.
|
|
44
|
-
export const GL_ACTION_CONFIRM_BORDER_COLOR_ACTIVE = 'transparent'; // Used for the border of a confirm action in the active state.
|
|
45
|
-
export const GL_ACTION_DANGER_FOREGROUND_COLOR_DEFAULT = '#dd2b0e'; // Used for the foreground of a danger (destructive) action in the default state.
|
|
46
|
-
export const GL_ACTION_DANGER_FOREGROUND_COLOR_HOVER = '#ae1800'; // Used for the foreground of a danger (destructive) action in the hover state.
|
|
47
|
-
export const GL_ACTION_DANGER_FOREGROUND_COLOR_FOCUS = '#ae1800'; // Used for the foreground of a danger (destructive) action in the focus state.
|
|
48
|
-
export const GL_ACTION_DANGER_FOREGROUND_COLOR_ACTIVE = '#660e00'; // Used for the foreground of a danger (destructive) action in the active state.
|
|
49
|
-
export const GL_ACTION_DANGER_BACKGROUND_COLOR_DEFAULT = 'rgba(245, 127, 108, 0.0)'; // Used for the background of a danger (destructive) action in the default state.
|
|
50
|
-
export const GL_ACTION_DANGER_BACKGROUND_COLOR_HOVER = 'rgba(245, 127, 108, 0.16)'; // Used for the background of a danger (destructive) action in the hover state.
|
|
51
|
-
export const GL_ACTION_DANGER_BACKGROUND_COLOR_FOCUS = 'rgba(245, 127, 108, 0.16)'; // Used for the background of a danger (destructive) action in the focus state.
|
|
52
|
-
export const GL_ACTION_DANGER_BACKGROUND_COLOR_ACTIVE = 'rgba(174, 24, 0, 0.24)'; // Used for the background of a danger (destructive) action in the active state.
|
|
53
|
-
export const GL_ACTION_DANGER_BORDER_COLOR_DEFAULT = 'transparent'; // Used for the border of a danger action in the default state.
|
|
54
|
-
export const GL_ACTION_DANGER_BORDER_COLOR_HOVER = 'transparent'; // Used for the border of a danger action in the hover state.
|
|
55
|
-
export const GL_ACTION_DANGER_BORDER_COLOR_FOCUS = 'transparent'; // Used for the border of a danger action in the focus state.
|
|
56
|
-
export const GL_ACTION_DANGER_BORDER_COLOR_ACTIVE = 'transparent'; // Used for the border of a danger action in the active state.
|
|
57
|
-
export const GL_ACTION_STRONG_CONFIRM_BACKGROUND_COLOR_DEFAULT = '#1f75cb'; // Used for the background of a strong confirm action in the default state.
|
|
58
|
-
export const GL_ACTION_STRONG_CONFIRM_BACKGROUND_COLOR_HOVER = '#1068bf'; // Used for the background of a strong confirm action in the hover state.
|
|
59
|
-
export const GL_ACTION_STRONG_CONFIRM_BACKGROUND_COLOR_FOCUS = '#1068bf'; // Used for the background of a strong confirm action in the focus state.
|
|
60
|
-
export const GL_ACTION_STRONG_CONFIRM_BACKGROUND_COLOR_ACTIVE = '#0b5cad'; // Used for the background of a strong confirm action in the active state.
|
|
61
|
-
export const GL_ACTION_STRONG_CONFIRM_FOREGROUND_COLOR_DEFAULT = '#fff'; // Used for the foreground of a strong confirm action in the default state.
|
|
62
|
-
export const GL_ACTION_STRONG_CONFIRM_FOREGROUND_COLOR_HOVER = '#fff'; // Used for the foreground of a strong confirm action in the hover state.
|
|
63
|
-
export const GL_ACTION_STRONG_CONFIRM_FOREGROUND_COLOR_FOCUS = '#fff'; // Used for the foreground of a strong confirm action in the focus state.
|
|
64
|
-
export const GL_ACTION_STRONG_CONFIRM_FOREGROUND_COLOR_ACTIVE = '#fff'; // Used for the foreground of a strong confirm action in the active state.
|
|
65
|
-
export const GL_ACTION_STRONG_CONFIRM_BORDER_COLOR_DEFAULT = 'transparent'; // Used for the border of a strong confirm action in the default state.
|
|
66
|
-
export const GL_ACTION_STRONG_CONFIRM_BORDER_COLOR_HOVER = 'transparent'; // Used for the border of a strong confirm action in the hover state.
|
|
67
|
-
export const GL_ACTION_STRONG_CONFIRM_BORDER_COLOR_FOCUS = 'transparent'; // Used for the border of a strong confirm action in the focus state.
|
|
68
|
-
export const GL_ACTION_STRONG_CONFIRM_BORDER_COLOR_ACTIVE = 'transparent'; // Used for the border of a strong confirm action in the active state.
|
|
69
|
-
export const GL_ACTION_STRONG_NEUTRAL_BACKGROUND_COLOR_DEFAULT = '#626168'; // Used for the background of a strong neutral action in the default state.
|
|
70
|
-
export const GL_ACTION_STRONG_NEUTRAL_BACKGROUND_COLOR_HOVER = '#4c4b51'; // Used for the background of a strong neutral action in the hover state.
|
|
71
|
-
export const GL_ACTION_STRONG_NEUTRAL_BACKGROUND_COLOR_FOCUS = '#4c4b51'; // Used for the background of a strong neutral action in the focus state.
|
|
72
|
-
export const GL_ACTION_STRONG_NEUTRAL_BACKGROUND_COLOR_ACTIVE = '#3a383f'; // Used for the background of a strong neutral action in the active state.
|
|
73
|
-
export const GL_ACTION_STRONG_NEUTRAL_FOREGROUND_COLOR_DEFAULT = '#fff'; // Used for the foreground of a strong neutral action in the default state.
|
|
74
|
-
export const GL_ACTION_STRONG_NEUTRAL_FOREGROUND_COLOR_HOVER = '#fff'; // Used for the foreground of a strong neutral action in the hover state.
|
|
75
|
-
export const GL_ACTION_STRONG_NEUTRAL_FOREGROUND_COLOR_FOCUS = '#fff'; // Used for the foreground of a strong neutral action in the focus state.
|
|
76
|
-
export const GL_ACTION_STRONG_NEUTRAL_FOREGROUND_COLOR_ACTIVE = '#fff'; // Used for the foreground of a strong neutral action in the active state.
|
|
77
|
-
export const GL_ACTION_STRONG_NEUTRAL_BORDER_COLOR_DEFAULT = 'transparent'; // Used for the border of a strong neutral action in the default state.
|
|
78
|
-
export const GL_ACTION_STRONG_NEUTRAL_BORDER_COLOR_HOVER = 'transparent'; // Used for the border of a strong neutral action in the hover state.
|
|
79
|
-
export const GL_ACTION_STRONG_NEUTRAL_BORDER_COLOR_FOCUS = 'transparent'; // Used for the border of a strong neutral action in the focus state.
|
|
80
|
-
export const GL_ACTION_STRONG_NEUTRAL_BORDER_COLOR_ACTIVE = 'transparent'; // Used for the border of a strong neutral action in the active state.
|
|
81
|
-
export const GL_BACKGROUND_COLOR_DEFAULT = '#fff'; // Used for the default background color.
|
|
82
|
-
export const GL_BACKGROUND_COLOR_SUBTLE = '#fbfafd'; // Used to slightly differentiate the background from the default.
|
|
83
|
-
export const GL_BACKGROUND_COLOR_STRONG = '#ececef'; // Used to make the background easily stand out from the default.
|
|
84
|
-
export const GL_BACKGROUND_COLOR_DISABLED = '#fbfafd'; // Used to identify a disabled section.
|
|
85
|
-
export const GL_BACKGROUND_COLOR_OVERLAP = '#fff'; // Used for components, like tooltips and drawers, and content, like a sticky header, that overlap other content.
|
|
86
|
-
export const GL_BACKGROUND_COLOR_SECTION = '#fff'; // Used for containers, like a card header, that are visually distinct from the default page background only when necessary to maintain affordance and hierarchy in different modes.
|
|
87
|
-
export const GL_BACKGROUND_COLOR_OVERLAY = 'rgba(05, 05, 06, 0.24)'; // Used for an overlay that covers other content.
|
|
88
|
-
export const GL_BORDER_COLOR_DEFAULT = '#dcdcde'; // Used for the default border color.
|
|
89
|
-
export const GL_BORDER_COLOR_SUBTLE = '#ececef'; // Used for a subtle border in combination with the default background.
|
|
90
|
-
export const GL_BORDER_COLOR_STRONG = '#89888d'; // Used for a distinct border that emphasizes an edge or boundaries.
|
|
91
|
-
export const GL_BORDER_COLOR_SECTION = '#dcdcde'; // Used for the border color that surrounds content or elements when they appear as a closed container or closed section of the page.
|
|
92
|
-
export const GL_BORDER_COLOR_TRANSPARENT = 'transparent'; // Used when a border needs to be present, but not visibly perceived.
|
|
93
|
-
export const GL_COLOR_ALPHA_0 = 'transparent';
|
|
94
|
-
export const GL_COLOR_ALPHA_DARK_2 = 'rgba(05, 05, 06, 0.02)';
|
|
95
|
-
export const GL_COLOR_ALPHA_DARK_4 = 'rgba(05, 05, 06, 0.04)';
|
|
96
|
-
export const GL_COLOR_ALPHA_DARK_6 = 'rgba(05, 05, 06, 0.06)';
|
|
97
|
-
export const GL_COLOR_ALPHA_DARK_8 = 'rgba(05, 05, 06, 0.08)';
|
|
98
|
-
export const GL_COLOR_ALPHA_DARK_16 = 'rgba(05, 05, 06, 0.16)';
|
|
99
|
-
export const GL_COLOR_ALPHA_DARK_24 = 'rgba(05, 05, 06, 0.24)';
|
|
100
|
-
export const GL_COLOR_ALPHA_DARK_40 = 'rgba(05, 05, 06, 0.4)';
|
|
101
|
-
export const GL_COLOR_ALPHA_LIGHT_2 = 'rgba(255, 255, 255, 0.02)';
|
|
102
|
-
export const GL_COLOR_ALPHA_LIGHT_4 = 'rgba(255, 255, 255, 0.04)';
|
|
103
|
-
export const GL_COLOR_ALPHA_LIGHT_6 = 'rgba(255, 255, 255, 0.06)';
|
|
104
|
-
export const GL_COLOR_ALPHA_LIGHT_8 = 'rgba(255, 255, 255, 0.08)';
|
|
105
|
-
export const GL_COLOR_ALPHA_LIGHT_16 = 'rgba(255, 255, 255, 0.16)';
|
|
106
|
-
export const GL_COLOR_ALPHA_LIGHT_24 = 'rgba(255, 255, 255, 0.24)';
|
|
107
|
-
export const GL_COLOR_ALPHA_LIGHT_36 = 'rgba(255, 255, 255, 0.36)';
|
|
108
|
-
export const GL_COLOR_BLUE_50 = '#e9f3fc';
|
|
109
|
-
export const GL_COLOR_BLUE_100 = '#cbe2f9';
|
|
110
|
-
export const GL_COLOR_BLUE_200 = '#9dc7f1';
|
|
111
|
-
export const GL_COLOR_BLUE_300 = '#63a6e9';
|
|
112
|
-
export const GL_COLOR_BLUE_400 = '#428fdc';
|
|
113
|
-
export const GL_COLOR_BLUE_500 = '#1f75cb';
|
|
114
|
-
export const GL_COLOR_BLUE_600 = '#1068bf';
|
|
115
|
-
export const GL_COLOR_BLUE_700 = '#0b5cad';
|
|
116
|
-
export const GL_COLOR_BLUE_800 = '#064787';
|
|
117
|
-
export const GL_COLOR_BLUE_900 = '#033464';
|
|
118
|
-
export const GL_COLOR_BLUE_950 = '#002850';
|
|
119
|
-
export const GL_COLOR_NEUTRAL_0 = '#fff';
|
|
120
|
-
export const GL_COLOR_NEUTRAL_10 = '#fbfafd';
|
|
121
|
-
export const GL_COLOR_NEUTRAL_50 = '#ececef';
|
|
122
|
-
export const GL_COLOR_NEUTRAL_100 = '#dcdcde';
|
|
123
|
-
export const GL_COLOR_NEUTRAL_200 = '#bfbfc3';
|
|
124
|
-
export const GL_COLOR_NEUTRAL_300 = '#a4a3a8';
|
|
125
|
-
export const GL_COLOR_NEUTRAL_400 = '#89888d';
|
|
126
|
-
export const GL_COLOR_NEUTRAL_500 = '#737278';
|
|
127
|
-
export const GL_COLOR_NEUTRAL_600 = '#626168';
|
|
128
|
-
export const GL_COLOR_NEUTRAL_700 = '#4c4b51';
|
|
129
|
-
export const GL_COLOR_NEUTRAL_800 = '#3a383f';
|
|
130
|
-
export const GL_COLOR_NEUTRAL_900 = '#28272d';
|
|
131
|
-
export const GL_COLOR_NEUTRAL_950 = '#18171d';
|
|
132
|
-
export const GL_COLOR_NEUTRAL_1000 = '#050506';
|
|
133
|
-
export const GL_COLOR_GREEN_50 = '#ecf4ee';
|
|
134
|
-
export const GL_COLOR_GREEN_100 = '#c3e6cd';
|
|
135
|
-
export const GL_COLOR_GREEN_200 = '#91d4a8';
|
|
136
|
-
export const GL_COLOR_GREEN_300 = '#52b87a';
|
|
137
|
-
export const GL_COLOR_GREEN_400 = '#2da160';
|
|
138
|
-
export const GL_COLOR_GREEN_500 = '#108548';
|
|
139
|
-
export const GL_COLOR_GREEN_600 = '#217645';
|
|
140
|
-
export const GL_COLOR_GREEN_700 = '#24663b';
|
|
141
|
-
export const GL_COLOR_GREEN_800 = '#0d532a';
|
|
142
|
-
export const GL_COLOR_GREEN_900 = '#0a4020';
|
|
143
|
-
export const GL_COLOR_GREEN_950 = '#072b15';
|
|
144
|
-
export const GL_COLOR_ORANGE_50 = '#fdf1dd';
|
|
145
|
-
export const GL_COLOR_ORANGE_100 = '#f5d9a8';
|
|
146
|
-
export const GL_COLOR_ORANGE_200 = '#e9be74';
|
|
147
|
-
export const GL_COLOR_ORANGE_300 = '#d99530';
|
|
148
|
-
export const GL_COLOR_ORANGE_400 = '#c17d10';
|
|
149
|
-
export const GL_COLOR_ORANGE_500 = '#ab6100';
|
|
150
|
-
export const GL_COLOR_ORANGE_600 = '#9e5400';
|
|
151
|
-
export const GL_COLOR_ORANGE_700 = '#8f4700';
|
|
152
|
-
export const GL_COLOR_ORANGE_800 = '#703800';
|
|
153
|
-
export const GL_COLOR_ORANGE_900 = '#5c2900';
|
|
154
|
-
export const GL_COLOR_ORANGE_950 = '#421f00';
|
|
155
|
-
export const GL_COLOR_PURPLE_50 = '#f4f0ff';
|
|
156
|
-
export const GL_COLOR_PURPLE_100 = '#e1d8f9';
|
|
157
|
-
export const GL_COLOR_PURPLE_200 = '#cbbbf2';
|
|
158
|
-
export const GL_COLOR_PURPLE_300 = '#ac93e6';
|
|
159
|
-
export const GL_COLOR_PURPLE_400 = '#9475db';
|
|
160
|
-
export const GL_COLOR_PURPLE_500 = '#7b58cf';
|
|
161
|
-
export const GL_COLOR_PURPLE_600 = '#694cc0';
|
|
162
|
-
export const GL_COLOR_PURPLE_700 = '#5943b6';
|
|
163
|
-
export const GL_COLOR_PURPLE_800 = '#453894';
|
|
164
|
-
export const GL_COLOR_PURPLE_900 = '#2f2a6b';
|
|
165
|
-
export const GL_COLOR_PURPLE_950 = '#232150';
|
|
166
|
-
export const GL_COLOR_RED_50 = '#fcf1ef';
|
|
167
|
-
export const GL_COLOR_RED_100 = '#fdd4cd';
|
|
168
|
-
export const GL_COLOR_RED_200 = '#fcb5aa';
|
|
169
|
-
export const GL_COLOR_RED_300 = '#f57f6c';
|
|
170
|
-
export const GL_COLOR_RED_400 = '#ec5941';
|
|
171
|
-
export const GL_COLOR_RED_500 = '#dd2b0e';
|
|
172
|
-
export const GL_COLOR_RED_600 = '#c91c00';
|
|
173
|
-
export const GL_COLOR_RED_700 = '#ae1800';
|
|
174
|
-
export const GL_COLOR_RED_800 = '#8d1300';
|
|
175
|
-
export const GL_COLOR_RED_900 = '#660e00';
|
|
176
|
-
export const GL_COLOR_RED_950 = '#4d0a00';
|
|
177
|
-
export const GL_COLOR_THEME_INDIGO_10 = '#f8f8ff';
|
|
178
|
-
export const GL_COLOR_THEME_INDIGO_50 = '#f1f1ff';
|
|
179
|
-
export const GL_COLOR_THEME_INDIGO_100 = '#dbdbf8';
|
|
180
|
-
export const GL_COLOR_THEME_INDIGO_200 = '#c7c7f2';
|
|
181
|
-
export const GL_COLOR_THEME_INDIGO_300 = '#a2a2e6';
|
|
182
|
-
export const GL_COLOR_THEME_INDIGO_400 = '#8181d7';
|
|
183
|
-
export const GL_COLOR_THEME_INDIGO_500 = '#6666c4';
|
|
184
|
-
export const GL_COLOR_THEME_INDIGO_600 = '#5252b5';
|
|
185
|
-
export const GL_COLOR_THEME_INDIGO_700 = '#41419f';
|
|
186
|
-
export const GL_COLOR_THEME_INDIGO_800 = '#303083';
|
|
187
|
-
export const GL_COLOR_THEME_INDIGO_900 = '#222261';
|
|
188
|
-
export const GL_COLOR_THEME_INDIGO_950 = '#14143d';
|
|
189
|
-
export const GL_COLOR_THEME_BLUE_10 = '#e6ecf0';
|
|
190
|
-
export const GL_COLOR_THEME_BLUE_50 = '#cdd8e3';
|
|
191
|
-
export const GL_COLOR_THEME_BLUE_100 = '#b9cadc';
|
|
192
|
-
export const GL_COLOR_THEME_BLUE_200 = '#a6bdd5';
|
|
193
|
-
export const GL_COLOR_THEME_BLUE_300 = '#81a5c9';
|
|
194
|
-
export const GL_COLOR_THEME_BLUE_400 = '#628eb9';
|
|
195
|
-
export const GL_COLOR_THEME_BLUE_500 = '#4977a5';
|
|
196
|
-
export const GL_COLOR_THEME_BLUE_600 = '#346596';
|
|
197
|
-
export const GL_COLOR_THEME_BLUE_700 = '#235180';
|
|
198
|
-
export const GL_COLOR_THEME_BLUE_800 = '#153c63';
|
|
199
|
-
export const GL_COLOR_THEME_BLUE_900 = '#0b2640';
|
|
200
|
-
export const GL_COLOR_THEME_BLUE_950 = '#04101c';
|
|
201
|
-
export const GL_COLOR_THEME_LIGHT_BLUE_10 = '#eef3f7';
|
|
202
|
-
export const GL_COLOR_THEME_LIGHT_BLUE_50 = '#dde6ee';
|
|
203
|
-
export const GL_COLOR_THEME_LIGHT_BLUE_100 = '#c1d4e6';
|
|
204
|
-
export const GL_COLOR_THEME_LIGHT_BLUE_200 = '#a0bedc';
|
|
205
|
-
export const GL_COLOR_THEME_LIGHT_BLUE_300 = '#74a3d3';
|
|
206
|
-
export const GL_COLOR_THEME_LIGHT_BLUE_400 = '#4f8bc7';
|
|
207
|
-
export const GL_COLOR_THEME_LIGHT_BLUE_500 = '#3476b9';
|
|
208
|
-
export const GL_COLOR_THEME_LIGHT_BLUE_600 = '#2268ae';
|
|
209
|
-
export const GL_COLOR_THEME_LIGHT_BLUE_700 = '#145aa1';
|
|
210
|
-
export const GL_COLOR_THEME_LIGHT_BLUE_800 = '#0e4d8d';
|
|
211
|
-
export const GL_COLOR_THEME_LIGHT_BLUE_900 = '#0c4277';
|
|
212
|
-
export const GL_COLOR_THEME_LIGHT_BLUE_950 = '#0a3764';
|
|
213
|
-
export const GL_COLOR_THEME_GREEN_10 = '#eef4ef';
|
|
214
|
-
export const GL_COLOR_THEME_GREEN_50 = '#dde9de';
|
|
215
|
-
export const GL_COLOR_THEME_GREEN_100 = '#b1d6b5';
|
|
216
|
-
export const GL_COLOR_THEME_GREEN_200 = '#8cc497';
|
|
217
|
-
export const GL_COLOR_THEME_GREEN_300 = '#69af7d';
|
|
218
|
-
export const GL_COLOR_THEME_GREEN_400 = '#499767';
|
|
219
|
-
export const GL_COLOR_THEME_GREEN_500 = '#308258';
|
|
220
|
-
export const GL_COLOR_THEME_GREEN_600 = '#25744c';
|
|
221
|
-
export const GL_COLOR_THEME_GREEN_700 = '#1b653f';
|
|
222
|
-
export const GL_COLOR_THEME_GREEN_800 = '#155635';
|
|
223
|
-
export const GL_COLOR_THEME_GREEN_900 = '#0e4328';
|
|
224
|
-
export const GL_COLOR_THEME_GREEN_950 = '#052e19';
|
|
225
|
-
export const GL_COLOR_THEME_RED_10 = '#faf4f3';
|
|
226
|
-
export const GL_COLOR_THEME_RED_50 = '#f4e9e7';
|
|
227
|
-
export const GL_COLOR_THEME_RED_100 = '#ecd3d0';
|
|
228
|
-
export const GL_COLOR_THEME_RED_200 = '#e3bab5';
|
|
229
|
-
export const GL_COLOR_THEME_RED_300 = '#d59086';
|
|
230
|
-
export const GL_COLOR_THEME_RED_400 = '#c66e60';
|
|
231
|
-
export const GL_COLOR_THEME_RED_500 = '#ad4a3b';
|
|
232
|
-
export const GL_COLOR_THEME_RED_600 = '#a13322';
|
|
233
|
-
export const GL_COLOR_THEME_RED_700 = '#8f2110';
|
|
234
|
-
export const GL_COLOR_THEME_RED_800 = '#761405';
|
|
235
|
-
export const GL_COLOR_THEME_RED_900 = '#580d02';
|
|
236
|
-
export const GL_COLOR_THEME_RED_950 = '#380700';
|
|
237
|
-
export const GL_COLOR_THEME_LIGHT_RED_10 = '#fdf9f8';
|
|
238
|
-
export const GL_COLOR_THEME_LIGHT_RED_50 = '#faf2f1';
|
|
239
|
-
export const GL_COLOR_THEME_LIGHT_RED_100 = '#f6d9d5';
|
|
240
|
-
export const GL_COLOR_THEME_LIGHT_RED_200 = '#ebada2';
|
|
241
|
-
export const GL_COLOR_THEME_LIGHT_RED_300 = '#e07f6f';
|
|
242
|
-
export const GL_COLOR_THEME_LIGHT_RED_400 = '#d36250';
|
|
243
|
-
export const GL_COLOR_THEME_LIGHT_RED_500 = '#c24b38';
|
|
244
|
-
export const GL_COLOR_THEME_LIGHT_RED_600 = '#b53a26';
|
|
245
|
-
export const GL_COLOR_THEME_LIGHT_RED_700 = '#a02e1c';
|
|
246
|
-
export const GL_COLOR_THEME_LIGHT_RED_800 = '#8b2212';
|
|
247
|
-
export const GL_COLOR_THEME_LIGHT_RED_900 = '#751709';
|
|
248
|
-
export const GL_COLOR_THEME_LIGHT_RED_950 = '#5c1105';
|
|
249
|
-
export const GL_COLOR_BRAND_WHITE = '#fff';
|
|
250
|
-
export const GL_COLOR_BRAND_CHARCOAL = '#171321';
|
|
251
|
-
export const GL_COLOR_BRAND_ORANGE_01G = '#ffd1bf';
|
|
252
|
-
export const GL_COLOR_BRAND_ORANGE_01P = '#fca326';
|
|
253
|
-
export const GL_COLOR_BRAND_ORANGE_02P = '#fc6d26';
|
|
254
|
-
export const GL_COLOR_BRAND_ORANGE_03P = '#e24329';
|
|
255
|
-
export const GL_COLOR_BRAND_PURPLE_01G = '#ceb3ef';
|
|
256
|
-
export const GL_COLOR_BRAND_PURPLE_01P = '#a989f5';
|
|
257
|
-
export const GL_COLOR_BRAND_PURPLE_02P = '#7759c2';
|
|
258
|
-
export const GL_COLOR_BRAND_GRAY_01 = '#d1d0d3';
|
|
259
|
-
export const GL_COLOR_BRAND_GRAY_02 = '#a2a1a6';
|
|
260
|
-
export const GL_COLOR_BRAND_GRAY_03 = '#74717a';
|
|
261
|
-
export const GL_COLOR_BRAND_GRAY_04 = '#45424d';
|
|
262
|
-
export const GL_COLOR_BRAND_GRAY_05 = '#2b2838';
|
|
263
|
-
export const GL_COLOR_BRAND_PINK_01G = '#ffb9c9';
|
|
264
|
-
export const DATA_VIZ_GREEN_50 = '#ddfab7';
|
|
265
|
-
export const DATA_VIZ_GREEN_100 = '#c6ed94';
|
|
266
|
-
export const DATA_VIZ_GREEN_200 = '#b0d97b';
|
|
267
|
-
export const DATA_VIZ_GREEN_300 = '#94c25e';
|
|
268
|
-
export const DATA_VIZ_GREEN_400 = '#81ac41';
|
|
269
|
-
export const DATA_VIZ_GREEN_500 = '#619025';
|
|
270
|
-
export const DATA_VIZ_GREEN_600 = '#4e7f0e';
|
|
271
|
-
export const DATA_VIZ_GREEN_700 = '#366800';
|
|
272
|
-
export const DATA_VIZ_GREEN_800 = '#275600';
|
|
273
|
-
export const DATA_VIZ_GREEN_900 = '#1a4500';
|
|
274
|
-
export const DATA_VIZ_GREEN_950 = '#133a03';
|
|
275
|
-
export const DATA_VIZ_AQUA_50 = '#b5fefd';
|
|
276
|
-
export const DATA_VIZ_AQUA_100 = '#93f2ef';
|
|
277
|
-
export const DATA_VIZ_AQUA_200 = '#5edee3';
|
|
278
|
-
export const DATA_VIZ_AQUA_300 = '#32c5d2';
|
|
279
|
-
export const DATA_VIZ_AQUA_400 = '#00acc4';
|
|
280
|
-
export const DATA_VIZ_AQUA_500 = '#0090b1';
|
|
281
|
-
export const DATA_VIZ_AQUA_600 = '#007b9b';
|
|
282
|
-
export const DATA_VIZ_AQUA_700 = '#006381';
|
|
283
|
-
export const DATA_VIZ_AQUA_800 = '#00516c';
|
|
284
|
-
export const DATA_VIZ_AQUA_900 = '#004059';
|
|
285
|
-
export const DATA_VIZ_AQUA_950 = '#00344b';
|
|
286
|
-
export const DATA_VIZ_BLUE_50 = '#e9ebff';
|
|
287
|
-
export const DATA_VIZ_BLUE_100 = '#d2dcff';
|
|
288
|
-
export const DATA_VIZ_BLUE_200 = '#b7c6ff';
|
|
289
|
-
export const DATA_VIZ_BLUE_300 = '#97acff';
|
|
290
|
-
export const DATA_VIZ_BLUE_400 = '#7992f5';
|
|
291
|
-
export const DATA_VIZ_BLUE_500 = '#617ae2';
|
|
292
|
-
export const DATA_VIZ_BLUE_600 = '#4e65cd';
|
|
293
|
-
export const DATA_VIZ_BLUE_700 = '#3f51ae';
|
|
294
|
-
export const DATA_VIZ_BLUE_800 = '#374291';
|
|
295
|
-
export const DATA_VIZ_BLUE_900 = '#303470';
|
|
296
|
-
export const DATA_VIZ_BLUE_950 = '#2a2b59';
|
|
297
|
-
export const DATA_VIZ_MAGENTA_50 = '#ffe3eb';
|
|
298
|
-
export const DATA_VIZ_MAGENTA_100 = '#ffccdb';
|
|
299
|
-
export const DATA_VIZ_MAGENTA_200 = '#fcacc5';
|
|
300
|
-
export const DATA_VIZ_MAGENTA_300 = '#f88aaf';
|
|
301
|
-
export const DATA_VIZ_MAGENTA_400 = '#e86e9a';
|
|
302
|
-
export const DATA_VIZ_MAGENTA_500 = '#cf4d81';
|
|
303
|
-
export const DATA_VIZ_MAGENTA_600 = '#b93d71';
|
|
304
|
-
export const DATA_VIZ_MAGENTA_700 = '#9a2e5d';
|
|
305
|
-
export const DATA_VIZ_MAGENTA_800 = '#7c214f';
|
|
306
|
-
export const DATA_VIZ_MAGENTA_900 = '#661e3a';
|
|
307
|
-
export const DATA_VIZ_MAGENTA_950 = '#541d31';
|
|
308
|
-
export const DATA_VIZ_ORANGE_50 = '#fae8d1';
|
|
309
|
-
export const DATA_VIZ_ORANGE_100 = '#f5d6b3';
|
|
310
|
-
export const DATA_VIZ_ORANGE_200 = '#eebd8c';
|
|
311
|
-
export const DATA_VIZ_ORANGE_300 = '#e99b60';
|
|
312
|
-
export const DATA_VIZ_ORANGE_400 = '#e07e41';
|
|
313
|
-
export const DATA_VIZ_ORANGE_500 = '#c95d2e';
|
|
314
|
-
export const DATA_VIZ_ORANGE_600 = '#b14f18';
|
|
315
|
-
export const DATA_VIZ_ORANGE_700 = '#92430a';
|
|
316
|
-
export const DATA_VIZ_ORANGE_800 = '#6f3500';
|
|
317
|
-
export const DATA_VIZ_ORANGE_900 = '#5e2f05';
|
|
318
|
-
export const DATA_VIZ_ORANGE_950 = '#4b2707';
|
|
319
|
-
export const GL_ALERT_NEUTRAL_TITLE_COLOR = '#18171d'; // Used for the title color of a neutral alert.
|
|
320
|
-
export const GL_ALERT_NEUTRAL_BACKGROUND_COLOR = '#ececef'; // Used for the background color of a neutral alert.
|
|
321
|
-
export const GL_ALERT_NEUTRAL_BORDER_TOP_COLOR = 'transparent'; // Used for the border center color of a neutral alert.
|
|
322
|
-
export const GL_ALERT_NEUTRAL_BORDER_BOTTOM_COLOR = 'transparent'; // Used for the border bottom color of a neutral alert.
|
|
323
|
-
export const GL_ALERT_INFO_TITLE_COLOR = '#18171d'; // Used for the title color of an info alert.
|
|
324
|
-
export const GL_ALERT_INFO_BACKGROUND_COLOR = '#e9f3fc'; // Used for the background color of an info alert.
|
|
325
|
-
export const GL_ALERT_INFO_BORDER_TOP_COLOR = 'transparent'; // Used for the border color of an info alert.
|
|
326
|
-
export const GL_ALERT_INFO_BORDER_BOTTOM_COLOR = 'transparent'; // Used for the border bottom color of an info alert.
|
|
327
|
-
export const GL_ALERT_SUCCESS_TITLE_COLOR = '#18171d'; // Used for the title color of a success alert.
|
|
328
|
-
export const GL_ALERT_SUCCESS_BACKGROUND_COLOR = '#ecf4ee'; // Used for the background color of a success alert.
|
|
329
|
-
export const GL_ALERT_SUCCESS_BORDER_TOP_COLOR = 'transparent'; // Used for the border color of a success alert.
|
|
330
|
-
export const GL_ALERT_SUCCESS_BORDER_BOTTOM_COLOR = 'transparent'; // Used for the border bottom color of a success alert.
|
|
331
|
-
export const GL_ALERT_WARNING_TITLE_COLOR = '#18171d'; // Used for the title color of a warning alert.
|
|
332
|
-
export const GL_ALERT_WARNING_BACKGROUND_COLOR = '#fdf1dd'; // Used for the background color of a warning alert.
|
|
333
|
-
export const GL_ALERT_WARNING_BORDER_TOP_COLOR = 'transparent'; // Used for the border color of a warning alert.
|
|
334
|
-
export const GL_ALERT_WARNING_BORDER_BOTTOM_COLOR = 'transparent'; // Used for the border bottom color of a warning alert.
|
|
335
|
-
export const GL_ALERT_DANGER_TITLE_COLOR = '#18171d'; // Used for the title color of a danger alert.
|
|
336
|
-
export const GL_ALERT_DANGER_BACKGROUND_COLOR = '#fcf1ef'; // Used for the background color of a danger alert.
|
|
337
|
-
export const GL_ALERT_DANGER_BORDER_TOP_COLOR = 'transparent'; // Used for the border color of a danger alert.
|
|
338
|
-
export const GL_ALERT_DANGER_BORDER_BOTTOM_COLOR = 'transparent'; // Used for the border bottom color of a danger alert.
|
|
339
|
-
export const GL_AVATAR_BORDER_COLOR_DEFAULT = 'rgba(05, 05, 06, 0.08)'; // Used to define the edge of an avatar.
|
|
340
|
-
export const GL_AVATAR_BORDER_COLOR_HOVER = 'rgba(05, 05, 06, 0.24)'; // Used to increase the edge definition of an avatar in the hover state.
|
|
341
|
-
export const GL_AVATAR_FALLBACK_TEXT_COLOR_RED = '#8d1300'; // Red text color for avatar fallback with no particular meaning.
|
|
342
|
-
export const GL_AVATAR_FALLBACK_TEXT_COLOR_PURPLE = '#453894'; // Purple text color for avatar fallback with no particular meaning.
|
|
343
|
-
export const GL_AVATAR_FALLBACK_TEXT_COLOR_BLUE = '#064787'; // Blue text color for avatar fallback with no particular meaning.
|
|
344
|
-
export const GL_AVATAR_FALLBACK_TEXT_COLOR_GREEN = '#0d532a'; // Green text color for avatar fallback with no particular meaning.
|
|
345
|
-
export const GL_AVATAR_FALLBACK_TEXT_COLOR_ORANGE = '#703800'; // Orange text color for avatar fallback with no particular meaning.
|
|
346
|
-
export const GL_AVATAR_FALLBACK_TEXT_COLOR_NEUTRAL = '#3a383f'; // Neutral text color for avatar fallback with no particular meaning.
|
|
347
|
-
export const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_RED = '#fcb5aa3d'; // Red background for avatar fallback with no particular meaning.
|
|
348
|
-
export const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_PURPLE = '#cbbbf23d'; // Purple background for avatar fallback with no particular meaning.
|
|
349
|
-
export const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_BLUE = '#9dc7f13d'; // Blue background for avatar fallback with no particular meaning.
|
|
350
|
-
export const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_GREEN = '#91d4a83d'; // Green background for avatar fallback with no particular meaning.
|
|
351
|
-
export const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_ORANGE = '#e9be743d'; // Orange background for avatar fallback with no particular meaning.
|
|
352
|
-
export const GL_AVATAR_FALLBACK_BACKGROUND_COLOR_NEUTRAL = '#bfbfc33d'; // Neutral background for avatar fallback with no particular meaning.
|
|
353
|
-
export const GL_BADGE_MUTED_BACKGROUND_COLOR_DEFAULT = '#ececef'; // Used for the background of a muted badge when static or the default state when linked.
|
|
354
|
-
export const GL_BADGE_MUTED_BACKGROUND_COLOR_HOVER = '#ececef'; // Used for the background of a muted badge in the hover state.
|
|
355
|
-
export const GL_BADGE_MUTED_BACKGROUND_COLOR_FOCUS = '#ececef'; // Used for the background of a muted badge in the focus state.
|
|
356
|
-
export const GL_BADGE_MUTED_BACKGROUND_COLOR_ACTIVE = '#dcdcde'; // Used for the background of a muted badge in the active state.
|
|
357
|
-
export const GL_BADGE_MUTED_BORDER_COLOR_DEFAULT = 'transparent'; // Used for the border of a muted badge when static or the default state when linked.
|
|
358
|
-
export const GL_BADGE_MUTED_BORDER_COLOR_HOVER = '#bfbfc3'; // Used for the border of a muted badge in the hover state.
|
|
359
|
-
export const GL_BADGE_MUTED_BORDER_COLOR_FOCUS = 'transparent'; // Used for the border of a muted badge in the focus state.
|
|
360
|
-
export const GL_BADGE_MUTED_BORDER_COLOR_ACTIVE = 'transparent'; // Used for the border of a muted badge in the active state.
|
|
361
|
-
export const GL_BADGE_MUTED_TEXT_COLOR_DEFAULT = '#626168'; // Used for the text of a muted badge when static or the default state when linked.
|
|
362
|
-
export const GL_BADGE_MUTED_TEXT_COLOR_HOVER = '#4c4b51'; // Used for the text of a muted badge in the hover state.
|
|
363
|
-
export const GL_BADGE_MUTED_TEXT_COLOR_FOCUS = '#4c4b51'; // Used for the text of a muted badge in the focus state.
|
|
364
|
-
export const GL_BADGE_MUTED_TEXT_COLOR_ACTIVE = '#3a383f'; // Used for the text of a muted badge in the active state.
|
|
365
|
-
export const GL_BADGE_MUTED_ICON_COLOR_DEFAULT = '#737278'; // Used for the icon of a muted badge when static or the default state when linked.
|
|
366
|
-
export const GL_BADGE_MUTED_ICON_COLOR_HOVER = '#626168'; // Used for the icon of a muted badge in the hover state.
|
|
367
|
-
export const GL_BADGE_MUTED_ICON_COLOR_FOCUS = '#626168'; // Used for the icon of a muted badge in the focus state.
|
|
368
|
-
export const GL_BADGE_MUTED_ICON_COLOR_ACTIVE = '#4c4b51'; // Used for the icon of a muted badge in the active state.
|
|
369
|
-
export const GL_BADGE_NEUTRAL_BACKGROUND_COLOR_DEFAULT = '#dcdcde'; // Used for the background of a neutral badge when static or the default state when linked.
|
|
370
|
-
export const GL_BADGE_NEUTRAL_BACKGROUND_COLOR_HOVER = '#dcdcde'; // Used for the background of a neutral badge in the hover state.
|
|
371
|
-
export const GL_BADGE_NEUTRAL_BACKGROUND_COLOR_FOCUS = '#dcdcde'; // Used for the background of a neutral badge in the focus state.
|
|
372
|
-
export const GL_BADGE_NEUTRAL_BACKGROUND_COLOR_ACTIVE = '#bfbfc3'; // Used for the background of a neutral badge in the active state.
|
|
373
|
-
export const GL_BADGE_NEUTRAL_BORDER_COLOR_DEFAULT = 'transparent'; // Used for the border of a neutral badge when static or the default state when linked.
|
|
374
|
-
export const GL_BADGE_NEUTRAL_BORDER_COLOR_HOVER = '#bfbfc3'; // Used for the border of a neutral badge in the hover state.
|
|
375
|
-
export const GL_BADGE_NEUTRAL_BORDER_COLOR_FOCUS = 'transparent'; // Used for the border of a neutral badge in the focus state.
|
|
376
|
-
export const GL_BADGE_NEUTRAL_BORDER_COLOR_ACTIVE = 'transparent'; // Used for the border of a neutral badge in the active state.
|
|
377
|
-
export const GL_BADGE_NEUTRAL_TEXT_COLOR_DEFAULT = '#4c4b51'; // Used for the text of a neutral badge when static or the default state when linked.
|
|
378
|
-
export const GL_BADGE_NEUTRAL_TEXT_COLOR_HOVER = '#3a383f'; // Used for the text of a neutral badge in the hover state.
|
|
379
|
-
export const GL_BADGE_NEUTRAL_TEXT_COLOR_FOCUS = '#3a383f'; // Used for the text of a neutral badge in the focus state.
|
|
380
|
-
export const GL_BADGE_NEUTRAL_TEXT_COLOR_ACTIVE = '#28272d'; // Used for the text of a neutral badge in the active state.
|
|
381
|
-
export const GL_BADGE_NEUTRAL_ICON_COLOR_DEFAULT = '#737278'; // Used for the icon of a neutral badge when static or the default state when linked.
|
|
382
|
-
export const GL_BADGE_NEUTRAL_ICON_COLOR_HOVER = '#626168'; // Used for the icon of a neutral badge in the hover state.
|
|
383
|
-
export const GL_BADGE_NEUTRAL_ICON_COLOR_FOCUS = '#626168'; // Used for the icon of a neutral badge in the focus state.
|
|
384
|
-
export const GL_BADGE_NEUTRAL_ICON_COLOR_ACTIVE = '#4c4b51'; // Used for the icon of a neutral badge in the active state.
|
|
385
|
-
export const GL_BADGE_INFO_BACKGROUND_COLOR_DEFAULT = '#cbe2f9'; // Used for the background of an informational badge when static or the default state when linked.
|
|
386
|
-
export const GL_BADGE_INFO_BACKGROUND_COLOR_HOVER = '#cbe2f9'; // Used for the background of an informational badge in the hover state.
|
|
387
|
-
export const GL_BADGE_INFO_BACKGROUND_COLOR_FOCUS = '#cbe2f9'; // Used for the background of an informational badge in the focus state.
|
|
388
|
-
export const GL_BADGE_INFO_BACKGROUND_COLOR_ACTIVE = '#9dc7f1'; // Used for the background of an informational badge in the active state.
|
|
389
|
-
export const GL_BADGE_INFO_BORDER_COLOR_DEFAULT = 'transparent'; // Used for the border of an informational badge when static or the default state when linked.
|
|
390
|
-
export const GL_BADGE_INFO_BORDER_COLOR_HOVER = '#9dc7f1'; // Used for the border of an informational badge in the hover state.
|
|
391
|
-
export const GL_BADGE_INFO_BORDER_COLOR_FOCUS = 'transparent'; // Used for the border of an informational badge in the focus state.
|
|
392
|
-
export const GL_BADGE_INFO_BORDER_COLOR_ACTIVE = 'transparent'; // Used for the border of an informational badge in the active state.
|
|
393
|
-
export const GL_BADGE_INFO_TEXT_COLOR_DEFAULT = '#0b5cad'; // Used for the text of an informational badge when static or the default state when linked.
|
|
394
|
-
export const GL_BADGE_INFO_TEXT_COLOR_HOVER = '#064787'; // Used for the text of an informational badge in the hover state.
|
|
395
|
-
export const GL_BADGE_INFO_TEXT_COLOR_FOCUS = '#064787'; // Used for the text of an informational badge in the focus state.
|
|
396
|
-
export const GL_BADGE_INFO_TEXT_COLOR_ACTIVE = '#033464'; // Used for the text of an informational badge in the active state.
|
|
397
|
-
export const GL_BADGE_INFO_ICON_COLOR_DEFAULT = '#1f75cb'; // Used for the icon of an informational badge when static or the default state when linked.
|
|
398
|
-
export const GL_BADGE_INFO_ICON_COLOR_HOVER = '#1068bf'; // Used for the icon of an informational badge in the hover state.
|
|
399
|
-
export const GL_BADGE_INFO_ICON_COLOR_FOCUS = '#1068bf'; // Used for the icon of an informational badge in the focus state.
|
|
400
|
-
export const GL_BADGE_INFO_ICON_COLOR_ACTIVE = '#0b5cad'; // Used for the icon of an informational badge in the active state.
|
|
401
|
-
export const GL_BADGE_SUCCESS_BACKGROUND_COLOR_DEFAULT = '#c3e6cd'; // Used for the background of a success badge when static or the default state when linked.
|
|
402
|
-
export const GL_BADGE_SUCCESS_BACKGROUND_COLOR_HOVER = '#c3e6cd'; // Used for the background of a success badge in the hover state.
|
|
403
|
-
export const GL_BADGE_SUCCESS_BACKGROUND_COLOR_FOCUS = '#c3e6cd'; // Used for the background of a success badge in the focus state.
|
|
404
|
-
export const GL_BADGE_SUCCESS_BACKGROUND_COLOR_ACTIVE = '#91d4a8'; // Used for the background of a success badge in the active state.
|
|
405
|
-
export const GL_BADGE_SUCCESS_BORDER_COLOR_DEFAULT = 'transparent'; // Used for the border of a success badge when static or the default state when linked.
|
|
406
|
-
export const GL_BADGE_SUCCESS_BORDER_COLOR_HOVER = '#91d4a8'; // Used for the border of a success badge in the hover state.
|
|
407
|
-
export const GL_BADGE_SUCCESS_BORDER_COLOR_FOCUS = 'transparent'; // Used for the border of a success badge in the focus state.
|
|
408
|
-
export const GL_BADGE_SUCCESS_BORDER_COLOR_ACTIVE = 'transparent'; // Used for the border of a success badge in the active state.
|
|
409
|
-
export const GL_BADGE_SUCCESS_TEXT_COLOR_DEFAULT = '#24663b'; // Used for the text of a success badge when static or the default state when linked.
|
|
410
|
-
export const GL_BADGE_SUCCESS_TEXT_COLOR_HOVER = '#0d532a'; // Used for the text of a success badge in the hover state.
|
|
411
|
-
export const GL_BADGE_SUCCESS_TEXT_COLOR_FOCUS = '#0d532a'; // Used for the text of a success badge in the focus state.
|
|
412
|
-
export const GL_BADGE_SUCCESS_TEXT_COLOR_ACTIVE = '#0a4020'; // Used for the text of a success badge in the active state.
|
|
413
|
-
export const GL_BADGE_SUCCESS_ICON_COLOR_DEFAULT = '#108548'; // Used for the icon of a success badge when static or the default state when linked.
|
|
414
|
-
export const GL_BADGE_SUCCESS_ICON_COLOR_HOVER = '#217645'; // Used for the icon of a success badge in the hover state.
|
|
415
|
-
export const GL_BADGE_SUCCESS_ICON_COLOR_FOCUS = '#217645'; // Used for the icon of a success badge in the focus state.
|
|
416
|
-
export const GL_BADGE_SUCCESS_ICON_COLOR_ACTIVE = '#24663b'; // Used for the icon of a success badge in the active state.
|
|
417
|
-
export const GL_BADGE_WARNING_BACKGROUND_COLOR_DEFAULT = '#f5d9a8'; // Used for the background of a warning badge when static or the default state when linked.
|
|
418
|
-
export const GL_BADGE_WARNING_BACKGROUND_COLOR_HOVER = '#f5d9a8'; // Used for the background of a warning badge in the hover state.
|
|
419
|
-
export const GL_BADGE_WARNING_BACKGROUND_COLOR_FOCUS = '#f5d9a8'; // Used for the background of a warning badge in the focus state.
|
|
420
|
-
export const GL_BADGE_WARNING_BACKGROUND_COLOR_ACTIVE = '#e9be74'; // Used for the background of a warning badge in the active state.
|
|
421
|
-
export const GL_BADGE_WARNING_BORDER_COLOR_DEFAULT = 'transparent'; // Used for the border of a warning badge when static or the default state when linked.
|
|
422
|
-
export const GL_BADGE_WARNING_BORDER_COLOR_HOVER = '#e9be74'; // Used for the border of a warning badge in the hover state.
|
|
423
|
-
export const GL_BADGE_WARNING_BORDER_COLOR_FOCUS = 'transparent'; // Used for the border of a warning badge in the focus state.
|
|
424
|
-
export const GL_BADGE_WARNING_BORDER_COLOR_ACTIVE = 'transparent'; // Used for the border of a warning badge in the active state.
|
|
425
|
-
export const GL_BADGE_WARNING_TEXT_COLOR_DEFAULT = '#8f4700'; // Used for the text of a warning badge when static or the default state when linked.
|
|
426
|
-
export const GL_BADGE_WARNING_TEXT_COLOR_HOVER = '#703800'; // Used for the text of a warning badge in the hover state.
|
|
427
|
-
export const GL_BADGE_WARNING_TEXT_COLOR_FOCUS = '#703800'; // Used for the text of a warning badge in the focus state.
|
|
428
|
-
export const GL_BADGE_WARNING_TEXT_COLOR_ACTIVE = '#5c2900'; // Used for the text of a warning badge in the active state.
|
|
429
|
-
export const GL_BADGE_WARNING_ICON_COLOR_DEFAULT = '#ab6100'; // Used for the icon of a warning badge when static or the default state when linked.
|
|
430
|
-
export const GL_BADGE_WARNING_ICON_COLOR_HOVER = '#9e5400'; // Used for the icon of a warning badge in the hover state.
|
|
431
|
-
export const GL_BADGE_WARNING_ICON_COLOR_FOCUS = '#9e5400'; // Used for the icon of a warning badge in the focus state.
|
|
432
|
-
export const GL_BADGE_WARNING_ICON_COLOR_ACTIVE = '#8f4700'; // Used for the icon of a warning badge in the active state.
|
|
433
|
-
export const GL_BADGE_DANGER_BACKGROUND_COLOR_DEFAULT = '#fdd4cd'; // Used for the background of a danger badge when static or the default state when linked.
|
|
434
|
-
export const GL_BADGE_DANGER_BACKGROUND_COLOR_HOVER = '#fdd4cd'; // Used for the background of a danger badge in the hover state.
|
|
435
|
-
export const GL_BADGE_DANGER_BACKGROUND_COLOR_FOCUS = '#fdd4cd'; // Used for the background of a danger badge in the focus state.
|
|
436
|
-
export const GL_BADGE_DANGER_BACKGROUND_COLOR_ACTIVE = '#fcb5aa'; // Used for the background of a danger badge in the active state.
|
|
437
|
-
export const GL_BADGE_DANGER_BORDER_COLOR_DEFAULT = 'transparent'; // Used for the border of a danger badge when static or the default state when linked.
|
|
438
|
-
export const GL_BADGE_DANGER_BORDER_COLOR_HOVER = '#fcb5aa'; // Used for the border of a danger badge in the hover state.
|
|
439
|
-
export const GL_BADGE_DANGER_BORDER_COLOR_FOCUS = 'transparent'; // Used for the border of a danger badge in the focus state.
|
|
440
|
-
export const GL_BADGE_DANGER_BORDER_COLOR_ACTIVE = 'transparent'; // Used for the border of a danger badge in the active state.
|
|
441
|
-
export const GL_BADGE_DANGER_TEXT_COLOR_DEFAULT = '#ae1800'; // Used for the text of a danger badge when static or the default state when linked.
|
|
442
|
-
export const GL_BADGE_DANGER_TEXT_COLOR_HOVER = '#8d1300'; // Used for the text of a danger badge in the hover state.
|
|
443
|
-
export const GL_BADGE_DANGER_TEXT_COLOR_FOCUS = '#8d1300'; // Used for the text of a danger badge in the focus state.
|
|
444
|
-
export const GL_BADGE_DANGER_TEXT_COLOR_ACTIVE = '#660e00'; // Used for the text of a danger badge in the active state.
|
|
445
|
-
export const GL_BADGE_DANGER_ICON_COLOR_DEFAULT = '#ae1800'; // Used for the icon of a danger badge when static or the default state when linked.
|
|
446
|
-
export const GL_BADGE_DANGER_ICON_COLOR_HOVER = '#8d1300'; // Used for the icon of a danger badge in the hover state.
|
|
447
|
-
export const GL_BADGE_DANGER_ICON_COLOR_FOCUS = '#8d1300'; // Used for the icon of a danger badge in the focus state.
|
|
448
|
-
export const GL_BADGE_DANGER_ICON_COLOR_ACTIVE = '#660e00'; // Used for the icon of a danger badge in the active state.
|
|
449
|
-
export const GL_BADGE_TIER_BACKGROUND_COLOR_DEFAULT = '#e1d8f9'; // Used for the background of a tier related badge when static or the default state when linked.
|
|
450
|
-
export const GL_BADGE_TIER_BACKGROUND_COLOR_HOVER = '#e1d8f9'; // Used for the background of a tier related badge in the hover state.
|
|
451
|
-
export const GL_BADGE_TIER_BACKGROUND_COLOR_FOCUS = '#e1d8f9'; // Used for the background of a tier related badge in the focus state.
|
|
452
|
-
export const GL_BADGE_TIER_BACKGROUND_COLOR_ACTIVE = '#cbbbf2'; // Used for the background of a tier related badge in the active state.
|
|
453
|
-
export const GL_BADGE_TIER_BORDER_COLOR_DEFAULT = 'transparent'; // Used for the border of a tier related badge when static or the default state when linked.
|
|
454
|
-
export const GL_BADGE_TIER_BORDER_COLOR_HOVER = '#cbbbf2'; // Used for the border of a tier related badge in the hover state.
|
|
455
|
-
export const GL_BADGE_TIER_BORDER_COLOR_FOCUS = 'transparent'; // Used for the border of a tier related badge in the focus state.
|
|
456
|
-
export const GL_BADGE_TIER_BORDER_COLOR_ACTIVE = 'transparent'; // Used for the border of a tier related badge in the active state.
|
|
457
|
-
export const GL_BADGE_TIER_TEXT_COLOR_DEFAULT = '#5943b6'; // Used for the text of a tier related badge when static or the default state when linked.
|
|
458
|
-
export const GL_BADGE_TIER_TEXT_COLOR_HOVER = '#453894'; // Used for the text of a tier related badge in the hover state.
|
|
459
|
-
export const GL_BADGE_TIER_TEXT_COLOR_FOCUS = '#453894'; // Used for the text of a tier related badge in the focus state.
|
|
460
|
-
export const GL_BADGE_TIER_TEXT_COLOR_ACTIVE = '#2f2a6b'; // Used for the text of a tier related badge in the active state.
|
|
461
|
-
export const GL_BADGE_TIER_ICON_COLOR_DEFAULT = '#5943b6'; // Used for the icon of a tier related badge when static or the default state when linked.
|
|
462
|
-
export const GL_BADGE_TIER_ICON_COLOR_HOVER = '#453894'; // Used for the icon of a tier related badge in the hover state.
|
|
463
|
-
export const GL_BADGE_TIER_ICON_COLOR_FOCUS = '#453894'; // Used for the icon of a tier related badge in the focus state.
|
|
464
|
-
export const GL_BADGE_TIER_ICON_COLOR_ACTIVE = '#2f2a6b'; // Used for the icon of a tier related badge in the active state.
|
|
465
|
-
export const GL_BANNER_INTRO_BORDER_COLOR = '#cbe2f9'; // Used for the border of an info banner.
|
|
466
|
-
export const GL_BANNER_PROMO_BACKGROUND_COLOR = '#f4f0ff'; // Used for the background of a promo banner.
|
|
467
|
-
export const GL_BANNER_PROMO_BORDER_COLOR = '#e1d8f9'; // Used for the border of a promo banner.
|
|
468
|
-
export const GL_BREADCRUMB_SEPARATOR_COLOR = '#89888d'; // Used for the breadcrumb level separator.
|
|
469
|
-
export const GL_BROADCAST_BANNER_BACKGROUND_COLOR_BLUE = '#235180'; // Used for the background for the blue banner type.
|
|
470
|
-
export const GL_BROADCAST_BANNER_BACKGROUND_COLOR_DARK = '#737278'; // Used for the background for the dark banner type.
|
|
471
|
-
export const GL_BROADCAST_BANNER_BACKGROUND_COLOR_GREEN = '#1b653f'; // Used for the background for the green banner type.
|
|
472
|
-
export const GL_BROADCAST_BANNER_BACKGROUND_COLOR_INDIGO = '#41419f'; // Used for the background for the indigo banner type.
|
|
473
|
-
export const GL_BROADCAST_BANNER_BACKGROUND_COLOR_LIGHT = '#ececef'; // Used for the background for the light banner type.
|
|
474
|
-
export const GL_BROADCAST_BANNER_BACKGROUND_COLOR_LIGHTBLUE = '#4977a5'; // Used for the background for the lightblue banner type.
|
|
475
|
-
export const GL_BROADCAST_BANNER_BACKGROUND_COLOR_LIGHTGREEN = '#308258'; // Used for the background for the lightgreen banner type.
|
|
476
|
-
export const GL_BROADCAST_BANNER_BACKGROUND_COLOR_LIGHTINDIGO = '#6666c4'; // Used for the background for the lightindigo banner type.
|
|
477
|
-
export const GL_BROADCAST_BANNER_BACKGROUND_COLOR_LIGHTRED = '#ad4a3b'; // Used for the background for the lightred banner type.
|
|
478
|
-
export const GL_BROADCAST_BANNER_BACKGROUND_COLOR_RED = '#8f2110'; // Used for the background for the red banner type.
|
|
479
|
-
export const GL_BROADCAST_BANNER_BORDER_COLOR_BLUE = '#0b2640'; // Used for the border for the blue banner type.
|
|
480
|
-
export const GL_BROADCAST_BANNER_BORDER_COLOR_DARK = '#4c4b51'; // Used for the border for the dark banner type.
|
|
481
|
-
export const GL_BROADCAST_BANNER_BORDER_COLOR_GREEN = '#0e4328'; // Used for the border for the green banner type.
|
|
482
|
-
export const GL_BROADCAST_BANNER_BORDER_COLOR_INDIGO = '#222261'; // Used for the border for the indigo banner type.
|
|
483
|
-
export const GL_BROADCAST_BANNER_BORDER_COLOR_LIGHT = '#dcdcde'; // Used for the border for the light banner type.
|
|
484
|
-
export const GL_BROADCAST_BANNER_BORDER_COLOR_LIGHTBLUE = '#235180'; // Used for the border for the lightblue banner type.
|
|
485
|
-
export const GL_BROADCAST_BANNER_BORDER_COLOR_LIGHTGREEN = '#1b653f'; // Used for the border for the lightgreen banner type.
|
|
486
|
-
export const GL_BROADCAST_BANNER_BORDER_COLOR_LIGHTINDIGO = '#41419f'; // Used for the border for the lightindigo banner type.
|
|
487
|
-
export const GL_BROADCAST_BANNER_BORDER_COLOR_LIGHTRED = '#8f2110'; // Used for the border for the lightred banner type.
|
|
488
|
-
export const GL_BROADCAST_BANNER_BORDER_COLOR_RED = '#580d02'; // Used for the border for the red banner type.
|
|
489
|
-
export const GL_BROADCAST_BANNER_ICON_COLOR_BLUE = '#fff'; // Used for the icon for the blue banner type.
|
|
490
|
-
export const GL_BROADCAST_BANNER_ICON_COLOR_DARK = '#fff'; // Used for the icon for the dark banner type.
|
|
491
|
-
export const GL_BROADCAST_BANNER_ICON_COLOR_GREEN = '#fff'; // Used for the icon for the green banner type.
|
|
492
|
-
export const GL_BROADCAST_BANNER_ICON_COLOR_INDIGO = '#fff'; // Used for the icon for the indigo banner type.
|
|
493
|
-
export const GL_BROADCAST_BANNER_ICON_COLOR_LIGHT = '#28272d'; // Used for the icon for the light banner type.
|
|
494
|
-
export const GL_BROADCAST_BANNER_ICON_COLOR_LIGHTBLUE = '#fff'; // Used for the icon for the lightblue banner type.
|
|
495
|
-
export const GL_BROADCAST_BANNER_ICON_COLOR_LIGHTGREEN = '#fff'; // Used for the icon for the lightgreen banner type.
|
|
496
|
-
export const GL_BROADCAST_BANNER_ICON_COLOR_LIGHTINDIGO = '#fff'; // Used for the icon for the lightindigo banner type.
|
|
497
|
-
export const GL_BROADCAST_BANNER_ICON_COLOR_LIGHTRED = '#fff'; // Used for the icon for the lightred banner type.
|
|
498
|
-
export const GL_BROADCAST_BANNER_ICON_COLOR_RED = '#fff'; // Used for the icon for the red banner type.
|
|
499
|
-
export const GL_BROADCAST_BANNER_TEXT_COLOR_BLUE = '#fff'; // Used for the text for the blue banner type.
|
|
500
|
-
export const GL_BROADCAST_BANNER_TEXT_COLOR_DARK = '#fff'; // Used for the text for the dark banner type.
|
|
501
|
-
export const GL_BROADCAST_BANNER_TEXT_COLOR_GREEN = '#fff'; // Used for the text for the green banner type.
|
|
502
|
-
export const GL_BROADCAST_BANNER_TEXT_COLOR_INDIGO = '#fff'; // Used for the text for the indigo banner type.
|
|
503
|
-
export const GL_BROADCAST_BANNER_TEXT_COLOR_LIGHT = '#28272d'; // Used for the text for the light banner type.
|
|
504
|
-
export const GL_BROADCAST_BANNER_TEXT_COLOR_LIGHTBLUE = '#fff'; // Used for the text for the lightblue banner type.
|
|
505
|
-
export const GL_BROADCAST_BANNER_TEXT_COLOR_LIGHTGREEN = '#fff'; // Used for the text for the lightgreen banner type.
|
|
506
|
-
export const GL_BROADCAST_BANNER_TEXT_COLOR_LIGHTINDIGO = '#fff'; // Used for the text for the lightindigo banner type.
|
|
507
|
-
export const GL_BROADCAST_BANNER_TEXT_COLOR_LIGHTRED = '#fff'; // Used for the text for the lightred banner type.
|
|
508
|
-
export const GL_BROADCAST_BANNER_TEXT_COLOR_RED = '#fff'; // Used for the text for the red banner type.
|
|
509
|
-
export const GL_BUTTON_DEFAULT_PRIMARY_FOREGROUND_COLOR_DEFAULT = '#3a383f'; // Used for the foreground of a default primary button in the default state.
|
|
510
|
-
export const GL_BUTTON_DEFAULT_PRIMARY_FOREGROUND_COLOR_HOVER = '#3a383f'; // Used for the foreground of a default primary button in the hover state.
|
|
511
|
-
export const GL_BUTTON_DEFAULT_PRIMARY_FOREGROUND_COLOR_FOCUS = '#3a383f'; // Used for the foreground of a default primary button in the focus state.
|
|
512
|
-
export const GL_BUTTON_DEFAULT_PRIMARY_FOREGROUND_COLOR_ACTIVE = '#3a383f'; // Used for the foreground of a default primary button in the active state.
|
|
513
|
-
export const GL_BUTTON_DEFAULT_PRIMARY_BACKGROUND_COLOR_DEFAULT = '#fff'; // Used for the background of an default primary button in the default state.
|
|
514
|
-
export const GL_BUTTON_DEFAULT_PRIMARY_BACKGROUND_COLOR_HOVER = '#ececef'; // Used for the background of an default primary button in the hover state.
|
|
515
|
-
export const GL_BUTTON_DEFAULT_PRIMARY_BACKGROUND_COLOR_FOCUS = '#ececef'; // Used for the background of an default primary button in the focus state.
|
|
516
|
-
export const GL_BUTTON_DEFAULT_PRIMARY_BACKGROUND_COLOR_ACTIVE = '#dcdcde'; // Used for the background of an default primary button in the active state.
|
|
517
|
-
export const GL_BUTTON_DEFAULT_PRIMARY_BORDER_COLOR_DEFAULT = '#bfbfc3'; // Used for the border of an default primary button in the default state.
|
|
518
|
-
export const GL_BUTTON_DEFAULT_PRIMARY_BORDER_COLOR_HOVER = '#89888d'; // Used for the border of an default primary button in the hover state.
|
|
519
|
-
export const GL_BUTTON_DEFAULT_PRIMARY_BORDER_COLOR_FOCUS = '#89888d'; // Used for the border of an default primary button in the focus state.
|
|
520
|
-
export const GL_BUTTON_DEFAULT_PRIMARY_BORDER_COLOR_ACTIVE = '#626168'; // Used for the border of an default primary button in the active state.
|
|
521
|
-
export const GL_BUTTON_DEFAULT_TERTIARY_FOREGROUND_COLOR_DEFAULT = '#28272d'; // Used for the foreground of a default borderless, tertiary button in the default state.
|
|
522
|
-
export const GL_BUTTON_DEFAULT_TERTIARY_FOREGROUND_COLOR_HOVER = '#28272d'; // Used for the foreground of a default borderless, tertiary button in the hover state.
|
|
523
|
-
export const GL_BUTTON_DEFAULT_TERTIARY_FOREGROUND_COLOR_FOCUS = '#28272d'; // Used for the foreground of a default borderless, tertiary button in the focus state.
|
|
524
|
-
export const GL_BUTTON_DEFAULT_TERTIARY_FOREGROUND_COLOR_ACTIVE = '#28272d'; // Used for the foreground of a default borderless, tertiary button in the active state.
|
|
525
|
-
export const GL_BUTTON_DEFAULT_TERTIARY_BACKGROUND_COLOR_DEFAULT = 'rgba(164, 163, 168, 0.0)'; // Used for the background of a default borderless, tertiary button in the default state.
|
|
526
|
-
export const GL_BUTTON_DEFAULT_TERTIARY_BACKGROUND_COLOR_HOVER = 'rgba(164, 163, 168, 0.16)'; // Used for the background of a default borderless, tertiary button in the hover state.
|
|
527
|
-
export const GL_BUTTON_DEFAULT_TERTIARY_BACKGROUND_COLOR_FOCUS = 'rgba(164, 163, 168, 0.16)'; // Used for the background of a default borderless, tertiary button in the focus state.
|
|
528
|
-
export const GL_BUTTON_DEFAULT_TERTIARY_BACKGROUND_COLOR_ACTIVE = 'rgba(83, 81, 88, 0.24)'; // Used for the background of a default borderless, tertiary button in the active state.
|
|
529
|
-
export const GL_BUTTON_DEFAULT_TERTIARY_BORDER_COLOR_DEFAULT = 'transparent'; // Used for the border of a default borderless, tertiary button in the default state.
|
|
530
|
-
export const GL_BUTTON_DEFAULT_TERTIARY_BORDER_COLOR_HOVER = 'transparent'; // Used for the border of a default borderless, tertiary button in the hover state.
|
|
531
|
-
export const GL_BUTTON_DEFAULT_TERTIARY_BORDER_COLOR_FOCUS = 'transparent'; // Used for the border of a default borderless, tertiary button in the focus state.
|
|
532
|
-
export const GL_BUTTON_DEFAULT_TERTIARY_BORDER_COLOR_ACTIVE = 'transparent'; // Used for the border of a default borderless, tertiary button in the active state.
|
|
533
|
-
export const GL_BUTTON_CONFIRM_PRIMARY_FOREGROUND_COLOR_DEFAULT = '#fff'; // Used for the foreground of a confirm (positive) primary button in the default state.
|
|
534
|
-
export const GL_BUTTON_CONFIRM_PRIMARY_FOREGROUND_COLOR_HOVER = '#fff'; // Used for the foreground of a confirm (positive) primary button in the hover state.
|
|
535
|
-
export const GL_BUTTON_CONFIRM_PRIMARY_FOREGROUND_COLOR_FOCUS = '#fff'; // Used for the foreground of a confirm (positive) primary button in the focus state.
|
|
536
|
-
export const GL_BUTTON_CONFIRM_PRIMARY_FOREGROUND_COLOR_ACTIVE = '#fff'; // Used for the foreground of a confirm (positive) primary button in the active state.
|
|
537
|
-
export const GL_BUTTON_CONFIRM_PRIMARY_BACKGROUND_COLOR_DEFAULT = '#1f75cb'; // Used for the background of a confirm (positive) primary button in the default state.
|
|
538
|
-
export const GL_BUTTON_CONFIRM_PRIMARY_BACKGROUND_COLOR_HOVER = '#1068bf'; // Used for the background of a confirm (positive) primary button in the hover state.
|
|
539
|
-
export const GL_BUTTON_CONFIRM_PRIMARY_BACKGROUND_COLOR_FOCUS = '#1068bf'; // Used for the background of a confirm (positive) primary button in the focus state.
|
|
540
|
-
export const GL_BUTTON_CONFIRM_PRIMARY_BACKGROUND_COLOR_ACTIVE = '#0b5cad'; // Used for the background of a confirm (positive) primary button in the active state.
|
|
541
|
-
export const GL_BUTTON_CONFIRM_PRIMARY_BORDER_COLOR_DEFAULT = '#1068bf'; // Used for the border of a confirm (positive) primary button in the default state.
|
|
542
|
-
export const GL_BUTTON_CONFIRM_PRIMARY_BORDER_COLOR_HOVER = '#064787'; // Used for the border of a confirm (positive) primary button in the hover state.
|
|
543
|
-
export const GL_BUTTON_CONFIRM_PRIMARY_BORDER_COLOR_FOCUS = '#064787'; // Used for the border of a confirm (positive) primary button in the focus state.
|
|
544
|
-
export const GL_BUTTON_CONFIRM_PRIMARY_BORDER_COLOR_ACTIVE = '#033464'; // Used for the border of a confirm (positive) primary button in the active state.
|
|
545
|
-
export const GL_BUTTON_CONFIRM_SECONDARY_FOREGROUND_COLOR_DEFAULT = '#1f75cb'; // Used for the foreground of a confirm (positive) button in the default state.
|
|
546
|
-
export const GL_BUTTON_CONFIRM_SECONDARY_FOREGROUND_COLOR_HOVER = '#0b5cad'; // Used for the foreground of a confirm (positive) button in the hover state.
|
|
547
|
-
export const GL_BUTTON_CONFIRM_SECONDARY_FOREGROUND_COLOR_FOCUS = '#0b5cad'; // Used for the foreground of a confirm (positive) button in the focus state.
|
|
548
|
-
export const GL_BUTTON_CONFIRM_SECONDARY_FOREGROUND_COLOR_ACTIVE = '#033464'; // Used for the foreground of a confirm (positive) button in the active state.
|
|
549
|
-
export const GL_BUTTON_CONFIRM_SECONDARY_BACKGROUND_COLOR_DEFAULT = '#fff'; // Used for the background of an outlined confirm (positive) button in the default state.
|
|
550
|
-
export const GL_BUTTON_CONFIRM_SECONDARY_BACKGROUND_COLOR_HOVER = '#e9f3fc'; // Used for the background of an outlined confirm (positive) button in the hover state.
|
|
551
|
-
export const GL_BUTTON_CONFIRM_SECONDARY_BACKGROUND_COLOR_FOCUS = '#e9f3fc'; // Used for the background of an outlined confirm (positive) button in the focus state.
|
|
552
|
-
export const GL_BUTTON_CONFIRM_SECONDARY_BACKGROUND_COLOR_ACTIVE = '#cbe2f9'; // Used for the background of an outlined confirm (positive) button in the active state.
|
|
553
|
-
export const GL_BUTTON_CONFIRM_SECONDARY_BORDER_COLOR_DEFAULT = '#1f75cb'; // Used for the border of an outlined confirm (positive) button in the default state.
|
|
554
|
-
export const GL_BUTTON_CONFIRM_SECONDARY_BORDER_COLOR_HOVER = '#0b5cad'; // Used for the border of an outlined confirm (positive) button in the hover state.
|
|
555
|
-
export const GL_BUTTON_CONFIRM_SECONDARY_BORDER_COLOR_FOCUS = '#0b5cad'; // Used for the border of an outlined confirm (positive) button in the focus state.
|
|
556
|
-
export const GL_BUTTON_CONFIRM_SECONDARY_BORDER_COLOR_ACTIVE = '#033464'; // Used for the border of an outlined confirm (positive) button in the active state.
|
|
557
|
-
export const GL_BUTTON_CONFIRM_TERTIARY_FOREGROUND_COLOR_DEFAULT = '#1f75cb'; // Used for the foreground of a borderless, tertiary confirm (positive) button in the default state.
|
|
558
|
-
export const GL_BUTTON_CONFIRM_TERTIARY_FOREGROUND_COLOR_HOVER = '#0b5cad'; // Used for the foreground of a borderless, tertiary confirm (positive) button in the hover state.
|
|
559
|
-
export const GL_BUTTON_CONFIRM_TERTIARY_FOREGROUND_COLOR_FOCUS = '#0b5cad'; // Used for the foreground of a borderless, tertiary confirm (positive) button in the focus state.
|
|
560
|
-
export const GL_BUTTON_CONFIRM_TERTIARY_FOREGROUND_COLOR_ACTIVE = '#033464'; // Used for the foreground of a borderless, tertiary confirm (positive) button in the active state.
|
|
561
|
-
export const GL_BUTTON_CONFIRM_TERTIARY_BACKGROUND_COLOR_DEFAULT = 'rgba(99, 166, 233, 0.0)'; // Used for the background of a borderless, tertiary confirm (positive) button in the default state.
|
|
562
|
-
export const GL_BUTTON_CONFIRM_TERTIARY_BACKGROUND_COLOR_HOVER = 'rgba(99, 166, 233, 0.16)'; // Used for the background of a borderless, tertiary confirm (positive) button in the hover state.
|
|
563
|
-
export const GL_BUTTON_CONFIRM_TERTIARY_BACKGROUND_COLOR_FOCUS = 'rgba(99, 166, 233, 0.16)'; // Used for the background of a borderless, tertiary confirm (positive) button in the focus state.
|
|
564
|
-
export const GL_BUTTON_CONFIRM_TERTIARY_BACKGROUND_COLOR_ACTIVE = 'rgba(11, 92, 173, 0.24)'; // Used for the background of a borderless, tertiary confirm (positive) button in the active state.
|
|
565
|
-
export const GL_BUTTON_CONFIRM_TERTIARY_BORDER_COLOR_DEFAULT = 'transparent'; // Used for the border of a borderless, tertiary confirm (positive) button in the default state.
|
|
566
|
-
export const GL_BUTTON_CONFIRM_TERTIARY_BORDER_COLOR_HOVER = 'transparent'; // Used for the border of a borderless, tertiary confirm (positive) button in the hover state.
|
|
567
|
-
export const GL_BUTTON_CONFIRM_TERTIARY_BORDER_COLOR_FOCUS = 'transparent'; // Used for the border of a borderless, tertiary confirm (positive) button in the focus state.
|
|
568
|
-
export const GL_BUTTON_CONFIRM_TERTIARY_BORDER_COLOR_ACTIVE = 'transparent'; // Used for the border of a borderless, tertiary confirm (positive) button in the active state.
|
|
569
|
-
export const GL_BUTTON_DANGER_PRIMARY_FOREGROUND_COLOR_DEFAULT = '#fff'; // Used for the foreground of a danger (destructive) primary button in the default state.
|
|
570
|
-
export const GL_BUTTON_DANGER_PRIMARY_FOREGROUND_COLOR_HOVER = '#fff'; // Used for the foreground of a danger (destructive) primary button in the hover state.
|
|
571
|
-
export const GL_BUTTON_DANGER_PRIMARY_FOREGROUND_COLOR_FOCUS = '#fff'; // Used for the foreground of a danger (destructive) primary button in the focus state.
|
|
572
|
-
export const GL_BUTTON_DANGER_PRIMARY_FOREGROUND_COLOR_ACTIVE = '#fff'; // Used for the foreground of a danger (destructive) primary button in the active state.
|
|
573
|
-
export const GL_BUTTON_DANGER_PRIMARY_BACKGROUND_COLOR_DEFAULT = '#dd2b0e'; // Used for the background of a danger (destructive) primary button in the default state.
|
|
574
|
-
export const GL_BUTTON_DANGER_PRIMARY_BACKGROUND_COLOR_HOVER = '#c91c00'; // Used for the background of a danger (destructive) primary button in the hover state.
|
|
575
|
-
export const GL_BUTTON_DANGER_PRIMARY_BACKGROUND_COLOR_FOCUS = '#c91c00'; // Used for the background of a danger (destructive) primary button in the focus state.
|
|
576
|
-
export const GL_BUTTON_DANGER_PRIMARY_BACKGROUND_COLOR_ACTIVE = '#8d1300'; // Used for the background of a danger (destructive) primary button in the active state.
|
|
577
|
-
export const GL_BUTTON_DANGER_PRIMARY_BORDER_COLOR_DEFAULT = '#c91c00'; // Used for the border of a danger (destructive) primary button in the default state.
|
|
578
|
-
export const GL_BUTTON_DANGER_PRIMARY_BORDER_COLOR_HOVER = '#8d1300'; // Used for the border of a danger (destructive) primary button in the hover state.
|
|
579
|
-
export const GL_BUTTON_DANGER_PRIMARY_BORDER_COLOR_FOCUS = '#8d1300'; // Used for the border of a danger (destructive) primary button in the focus state.
|
|
580
|
-
export const GL_BUTTON_DANGER_PRIMARY_BORDER_COLOR_ACTIVE = '#660e00'; // Used for the border of a danger (destructive) primary button in the active state.
|
|
581
|
-
export const GL_BUTTON_DANGER_SECONDARY_FOREGROUND_COLOR_DEFAULT = '#dd2b0e'; // Used for the foreground of a danger (destructive) button in the default state.
|
|
582
|
-
export const GL_BUTTON_DANGER_SECONDARY_FOREGROUND_COLOR_HOVER = '#ae1800'; // Used for the foreground of a danger (destructive) button in the hover state.
|
|
583
|
-
export const GL_BUTTON_DANGER_SECONDARY_FOREGROUND_COLOR_FOCUS = '#ae1800'; // Used for the foreground of a danger (destructive) button in the focus state.
|
|
584
|
-
export const GL_BUTTON_DANGER_SECONDARY_FOREGROUND_COLOR_ACTIVE = '#660e00'; // Used for the foreground of a danger (destructive) button in the active state.
|
|
585
|
-
export const GL_BUTTON_DANGER_SECONDARY_BACKGROUND_COLOR_DEFAULT = '#fff'; // Used for the background of an outlined danger (destructive) button in the default state.
|
|
586
|
-
export const GL_BUTTON_DANGER_SECONDARY_BACKGROUND_COLOR_HOVER = '#fcf1ef'; // Used for the background of an outlined danger (destructive) button in the hover state.
|
|
587
|
-
export const GL_BUTTON_DANGER_SECONDARY_BACKGROUND_COLOR_FOCUS = '#fcf1ef'; // Used for the background of an outlined danger (destructive) button in the focus state.
|
|
588
|
-
export const GL_BUTTON_DANGER_SECONDARY_BACKGROUND_COLOR_ACTIVE = '#fdd4cd'; // Used for the background of an outlined danger (destructive) button in the active state.
|
|
589
|
-
export const GL_BUTTON_DANGER_SECONDARY_BORDER_COLOR_DEFAULT = '#dd2b0e'; // Used for the border of an outlined danger (destructive) button in the default state.
|
|
590
|
-
export const GL_BUTTON_DANGER_SECONDARY_BORDER_COLOR_HOVER = '#ae1800'; // Used for the border of an outlined danger (destructive) button in the hover state.
|
|
591
|
-
export const GL_BUTTON_DANGER_SECONDARY_BORDER_COLOR_FOCUS = '#ae1800'; // Used for the border of an outlined danger (destructive) button in the focus state.
|
|
592
|
-
export const GL_BUTTON_DANGER_SECONDARY_BORDER_COLOR_ACTIVE = '#660e00'; // Used for the border of an outlined danger (destructive) button in the active state.
|
|
593
|
-
export const GL_BUTTON_DANGER_TERTIARY_FOREGROUND_COLOR_DEFAULT = '#dd2b0e'; // Used for the foreground of a borderless, tertiary danger (destructive) button in the default state.
|
|
594
|
-
export const GL_BUTTON_DANGER_TERTIARY_FOREGROUND_COLOR_HOVER = '#ae1800'; // Used for the foreground of a borderless, tertiary danger (destructive) button in the hover state.
|
|
595
|
-
export const GL_BUTTON_DANGER_TERTIARY_FOREGROUND_COLOR_FOCUS = '#ae1800'; // Used for the foreground of a borderless, tertiary danger (destructive) button in the focus state.
|
|
596
|
-
export const GL_BUTTON_DANGER_TERTIARY_FOREGROUND_COLOR_ACTIVE = '#660e00'; // Used for the foreground of a borderless, tertiary danger (destructive) button in the active state.
|
|
597
|
-
export const GL_BUTTON_DANGER_TERTIARY_BACKGROUND_COLOR_DEFAULT = 'rgba(245, 127, 108, 0.0)'; // Used for the background of a borderless, tertiary danger (destructive) button in the default state.
|
|
598
|
-
export const GL_BUTTON_DANGER_TERTIARY_BACKGROUND_COLOR_HOVER = 'rgba(245, 127, 108, 0.16)'; // Used for the background of a borderless, tertiary danger (destructive) button in the hover state.
|
|
599
|
-
export const GL_BUTTON_DANGER_TERTIARY_BACKGROUND_COLOR_FOCUS = 'rgba(245, 127, 108, 0.16)'; // Used for the background of a borderless, tertiary danger (destructive) button in the focus state.
|
|
600
|
-
export const GL_BUTTON_DANGER_TERTIARY_BACKGROUND_COLOR_ACTIVE = 'rgba(174, 24, 0, 0.24)'; // Used for the background of a borderless, tertiary danger (destructive) button in the active state.
|
|
601
|
-
export const GL_BUTTON_DANGER_TERTIARY_BORDER_COLOR_DEFAULT = 'transparent'; // Used for the border of a borderless, tertiary danger (destructive) button in the default state.
|
|
602
|
-
export const GL_BUTTON_DANGER_TERTIARY_BORDER_COLOR_HOVER = 'transparent'; // Used for the border of a borderless, tertiary danger (destructive) button in the hover state.
|
|
603
|
-
export const GL_BUTTON_DANGER_TERTIARY_BORDER_COLOR_FOCUS = 'transparent'; // Used for the border of a borderless, tertiary danger (destructive) button in the focus state.
|
|
604
|
-
export const GL_BUTTON_DANGER_TERTIARY_BORDER_COLOR_ACTIVE = 'transparent'; // Used for the border of a borderless, tertiary danger (destructive) button in the active state.
|
|
605
|
-
export const GL_BUTTON_DASHED_BORDER_COLOR_DEFAULT = '#89888d'; // Used for the border of a dashed button in the default state.
|
|
606
|
-
export const GL_BUTTON_DASHED_BORDER_COLOR_HOVER = '#89888d'; // Used for the border of a dashed button in the hover state.
|
|
607
|
-
export const GL_BUTTON_DASHED_BORDER_COLOR_FOCUS = '#89888d'; // Used for the border of a dashed button in the focus state.
|
|
608
|
-
export const GL_BUTTON_DASHED_BORDER_COLOR_ACTIVE = '#626168'; // Used for the border of a dashed button in the active state.
|
|
609
|
-
export const GL_BUTTON_LINK_TEXT_COLOR_DEFAULT = '#0b5cad'; // Used for the text of a link button in the default state.
|
|
610
|
-
export const GL_BUTTON_LINK_TEXT_COLOR_HOVER = '#0b5cad'; // Used for the text of a link button in the hover state.
|
|
611
|
-
export const GL_BUTTON_LINK_TEXT_COLOR_FOCUS = '#0b5cad'; // Used for the text of a link button in the focus state.
|
|
612
|
-
export const GL_BUTTON_LINK_TEXT_COLOR_ACTIVE = '#0b5cad'; // Used for the text of a link button in the active state.
|
|
613
|
-
export const GL_BUTTON_SELECTED_FOREGROUND_COLOR_DEFAULT = '#3a383f'; // Used for the foreground of a selected button in the default state.
|
|
614
|
-
export const GL_BUTTON_SELECTED_FOREGROUND_COLOR_HOVER = '#3a383f'; // Used for the foreground of a selected button in the hover state.
|
|
615
|
-
export const GL_BUTTON_SELECTED_FOREGROUND_COLOR_FOCUS = '#3a383f'; // Used for the foreground of a selected button in the focus state.
|
|
616
|
-
export const GL_BUTTON_SELECTED_FOREGROUND_COLOR_ACTIVE = '#3a383f'; // Used for the foreground of a selected button in the active state.
|
|
617
|
-
export const GL_BUTTON_SELECTED_BACKGROUND_COLOR_DEFAULT = '#fff'; // Used for the background of a selected button in the default state.
|
|
618
|
-
export const GL_BUTTON_SELECTED_BACKGROUND_COLOR_HOVER = '#ececef'; // Used for the background of a selected button in the hover state.
|
|
619
|
-
export const GL_BUTTON_SELECTED_BACKGROUND_COLOR_FOCUS = '#ececef'; // Used for the background of a selected button in the focus state.
|
|
620
|
-
export const GL_BUTTON_SELECTED_BACKGROUND_COLOR_ACTIVE = '#dcdcde'; // Used for the background of a selected button in the active state.
|
|
621
|
-
export const GL_BUTTON_SELECTED_BORDER_COLOR_DEFAULT = '#a4a3a8'; // Used for the border of a selected button in the default state.
|
|
622
|
-
export const GL_BUTTON_SELECTED_BORDER_COLOR_HOVER = '#89888d'; // Used for the border of a selected button in the hover state.
|
|
623
|
-
export const GL_BUTTON_SELECTED_BORDER_COLOR_FOCUS = '#89888d'; // Used for the border of a selected button in the focus state.
|
|
624
|
-
export const GL_BUTTON_SELECTED_BORDER_COLOR_ACTIVE = '#626168'; // Used for the border of a selected button in the active state.
|
|
625
|
-
export const GL_BUTTON_DISABLED_FOREGROUND_COLOR = '#737278'; // Used for the foreground of a disabled button.
|
|
626
|
-
export const GL_BUTTON_DISABLED_BACKGROUND_COLOR = '#fbfafd'; // Used for the background of a disabled button.
|
|
627
|
-
export const GL_BUTTON_DISABLED_BORDER_COLOR = '#dcdcde'; // Used for the border of a disabled button.
|
|
628
|
-
export const GL_DATEPICKER_BACKGROUND_COLOR = '#fff'; // Used for the background color of datepicker.
|
|
629
|
-
export const GL_DATEPICKER_DATE_TEXT_COLOR_SELECTED = '#fff'; // Used for the datepicker date text color state indicators.
|
|
630
|
-
export const GL_DROPDOWN_BACKGROUND_COLOR = '#fff'; // Used for the background of a dropdown.
|
|
631
|
-
export const GL_DROPDOWN_BORDER_COLOR = '#bfbfc3'; // Used for the border of a dropdown.
|
|
632
|
-
export const GL_DROPDOWN_OPTION_TEXT_COLOR_DEFAULT = '#28272d'; // Used for the text of a dropdown option in the default state.
|
|
633
|
-
export const GL_DROPDOWN_OPTION_TEXT_COLOR_HOVER = '#28272d'; // Used for the text of a dropdown option in the hover state.
|
|
634
|
-
export const GL_DROPDOWN_OPTION_TEXT_COLOR_FOCUS = '#28272d'; // Used for the text of a dropdown option in the focus state.
|
|
635
|
-
export const GL_DROPDOWN_OPTION_TEXT_COLOR_ACTIVE = '#28272d'; // Used for the text of a dropdown option in the active state.
|
|
636
|
-
export const GL_DROPDOWN_OPTION_TEXT_COLOR_DISABLED = '#89888d'; // Used for the text of a dropdown option in the disabled state.
|
|
637
|
-
export const GL_DROPDOWN_OPTION_INDICATOR_COLOR_SELECTED_DEFAULT = '#1f75cb'; // Used for the dropdown selected option indicator in the default state.
|
|
638
|
-
export const GL_DROPDOWN_OPTION_INDICATOR_COLOR_SELECTED_HOVER = '#0b5cad'; // Used for the dropdown selected option indicator in the hover state.
|
|
639
|
-
export const GL_DROPDOWN_OPTION_INDICATOR_COLOR_SELECTED_FOCUS = '#0b5cad'; // Used for the dropdown selected option indicator in the focus state.
|
|
640
|
-
export const GL_DROPDOWN_OPTION_INDICATOR_COLOR_SELECTED_ACTIVE = '#0b5cad'; // Used for the dropdown selected option indicator in the active state.
|
|
641
|
-
export const GL_DROPDOWN_OPTION_BACKGROUND_COLOR_UNSELECTED_DEFAULT = 'rgba(164, 163, 168, 0.0)'; // Used for the background of an unselected dropdown option in the default state.
|
|
642
|
-
export const GL_DROPDOWN_OPTION_BACKGROUND_COLOR_UNSELECTED_HOVER = 'rgba(164, 163, 168, 0.16)'; // Used for the background of an unselected dropdown option in the hover state.
|
|
643
|
-
export const GL_DROPDOWN_OPTION_BACKGROUND_COLOR_UNSELECTED_FOCUS = 'rgba(164, 163, 168, 0.16)'; // Used for the background of an unselected dropdown option in the focus state.
|
|
644
|
-
export const GL_DROPDOWN_OPTION_BACKGROUND_COLOR_UNSELECTED_ACTIVE = 'rgba(83, 81, 88, 0.24)'; // Used for the background of an unselected dropdown option in the active state.
|
|
645
|
-
export const GL_DROPDOWN_OPTION_BACKGROUND_COLOR_SELECTED_DEFAULT = '#ececef'; // Used for the background of a selected dropdown option in the default state.
|
|
646
|
-
export const GL_DROPDOWN_OPTION_BACKGROUND_COLOR_SELECTED_HOVER = '#dcdcde'; // Used for the background of a selected dropdown option in the hover state.
|
|
647
|
-
export const GL_DROPDOWN_OPTION_BACKGROUND_COLOR_SELECTED_FOCUS = '#dcdcde'; // Used for the background of a selected dropdown option in the focus state.
|
|
648
|
-
export const GL_DROPDOWN_OPTION_BACKGROUND_COLOR_SELECTED_ACTIVE = '#bfbfc3'; // Used for the background of a selected dropdown option in the active state.
|
|
649
|
-
export const GL_FILTERED_SEARCH_TOKEN_TYPE_BACKGROUND_COLOR_DEFAULT = '#ececef'; // Used for the filtered search type token background color in the default state.
|
|
650
|
-
export const GL_FILTERED_SEARCH_TOKEN_TYPE_BACKGROUND_COLOR_HOVER = '#dcdcde'; // Used for the filtered search type token background color in the hover state.
|
|
651
|
-
export const GL_FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_DEFAULT = '#dcdcde'; // Used for the filtered search data background color in the default state.
|
|
652
|
-
export const GL_FILTERED_SEARCH_TOKEN_DATA_BACKGROUND_COLOR_HOVER = '#bfbfc3'; // Used for the filtered search data token background color in the hover state.
|
|
653
|
-
export const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_DEFAULT = '#ececef'; // Used for the filtered search operator background color in the default state.
|
|
654
|
-
export const GL_FILTERED_SEARCH_TOKEN_OPERATOR_BACKGROUND_COLOR_HOVER = '#bfbfc3'; // Used for the filtered search operator token background color in the hover state.
|
|
655
|
-
export const GL_LABEL_LIGHT_TEXT_COLOR = '#18171d'; // Used for the label text color on a light background color.
|
|
656
|
-
export const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_DEFAULT = 'transparent'; // Used for the label remove button background on a light background color in the default state.
|
|
657
|
-
export const GL_LABEL_LIGHT_BUTTON_BACKGROUND_COLOR_HOVER = '#18171d'; // Used for the label remove button background on a light background color in the hover state.
|
|
658
|
-
export const GL_LABEL_LIGHT_BUTTON_ICON_COLOR_DEFAULT = '#18171d'; // Used for the label remove button icon on a light background color in the default state.
|
|
659
|
-
export const GL_LABEL_DARK_TEXT_COLOR = '#fff'; // Used for the label text color on a dark background color.
|
|
660
|
-
export const GL_LABEL_DARK_BUTTON_BACKGROUND_COLOR_DEFAULT = 'transparent'; // Used for the label remove button background on a dark background color in the default state.
|
|
661
|
-
export const GL_LABEL_DARK_BUTTON_BACKGROUND_COLOR_HOVER = '#fff'; // Used for the label remove button background on a dark background color in the hover state.
|
|
662
|
-
export const GL_LABEL_DARK_BUTTON_ICON_COLOR_DEFAULT = '#fff'; // Used for the label remove button icon on a dark background color in the default state.
|
|
663
|
-
export const GL_LABEL_SCOPED_TEXT_COLOR = '#18171d'; // Used for the scoped label text color.
|
|
664
|
-
export const GL_LABEL_SCOPED_BUTTON_BACKGROUND_COLOR_HOVER = '#18171d'; // Used for the scoped label remove button background in the hover state.
|
|
665
|
-
export const GL_LABEL_SCOPED_BUTTON_ICON_COLOR_DEFAULT = '#18171d'; // Used for the scoped label remove button icon in the default state.
|
|
666
|
-
export const GL_LABEL_SCOPED_BUTTON_ICON_COLOR_HOVER = '#fff'; // Used for the scoped label remove button icon in the hover state.
|
|
667
|
-
export const GL_LINK_MENTION_TEXT_COLOR_DEFAULT = '#0b5cad'; // Used for the mention link text color.
|
|
668
|
-
export const GL_LINK_MENTION_TEXT_COLOR_CURRENT = '#703800'; // Used for the mention link text color when referencing the current user.
|
|
669
|
-
export const GL_LINK_MENTION_BACKGROUND_COLOR_DEFAULT = '#cbe2f9'; // Used for the mention link default background.
|
|
670
|
-
export const GL_LINK_MENTION_BACKGROUND_COLOR_CURRENT = '#f5d9a8'; // Used for the mention link background when referencing the current user.
|
|
671
|
-
export const GL_PROGRESS_BAR_INDICATOR_COLOR_DEFAULT = '#1f75cb'; // Used for the indicator color for the primary progress-bar variant.
|
|
672
|
-
export const GL_PROGRESS_BAR_INDICATOR_COLOR_SUCCESS = '#108548'; // Used for the indicator color for the success progress-bar variant.
|
|
673
|
-
export const GL_PROGRESS_BAR_INDICATOR_COLOR_WARNING = '#ab6100'; // Used for the indicator color for the warning progress-bar variant.
|
|
674
|
-
export const GL_PROGRESS_BAR_INDICATOR_COLOR_DANGER = '#dd2b0e'; // Used for the indicator color for the danger progress-bar variant.
|
|
675
|
-
export const GL_PROGRESS_BAR_TRACK_COLOR = '#bfbfc3'; // Used for the track color for all progress-bar variants.
|
|
676
|
-
export const GL_SKELETON_LOADER_BACKGROUND_COLOR = '#dcdcde'; // Used for the skeleton loader background color.
|
|
677
|
-
export const GL_SKELETON_LOADER_SHIMMER_COLOR = '#ececef'; // Used for the animated shimmer effect in a skeleton loader.
|
|
678
|
-
export const GL_SPINNER_TRACK_COLOR_DEFAULT = '#dcdcde'; // Used for the static track (background) of a loading spinner.
|
|
679
|
-
export const GL_SPINNER_TRACK_COLOR_LIGHT = '#3a383f'; // Used for the static track (background) of a loading spinner on a dark background.
|
|
680
|
-
export const GL_SPINNER_SEGMENT_COLOR_DEFAULT = '#4c4b51'; // Used for the animated segment of a loading spinner.
|
|
681
|
-
export const GL_SPINNER_SEGMENT_COLOR_LIGHT = '#bfbfc3'; // Used for the animated segment of a loading spinner on a dark background.
|
|
682
|
-
export const GL_TABLE_ROW_BACKGROUND_COLOR_HOVER = '#fbfafd'; // Used for the background of a table row in hover state.
|
|
683
|
-
export const GL_TABLE_SORTING_ICON_COLOR = '#18171d'; // Used for the color of the sorting icons in the column headers.
|
|
684
|
-
export const GL_TAB_SELECTED_INDICATOR_COLOR_DEFAULT = '#1f75cb'; // Used for the selected indicator of a tab.
|
|
685
|
-
export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_DEFAULT = '#626168'; // Used for the icon color of an unchecked toggle switch in the default state.
|
|
686
|
-
export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_HOVER = '#4c4b51'; // Used for the icon color of an unchecked toggle switch in the hover state.
|
|
687
|
-
export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_FOCUS = '#4c4b51'; // Used for the icon color of an unchecked toggle switch in the focus state.
|
|
688
|
-
export const GL_TOGGLE_SWITCH_ICON_COLOR_UNCHECKED_ACTIVE = '#3a383f'; // Used for the icon color of an unchecked toggle switch in the active state.
|
|
689
|
-
export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_DEFAULT = '#1f75cb'; // Used for the icon color of a checked toggle switch in the default state.
|
|
690
|
-
export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_HOVER = '#1068bf'; // Used for the icon color of a checked toggle switch in the hover state.
|
|
691
|
-
export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_FOCUS = '#1068bf'; // Used for the icon color of a checked toggle switch in the focus state.
|
|
692
|
-
export const GL_TOGGLE_SWITCH_ICON_COLOR_CHECKED_ACTIVE = '#0b5cad'; // Used for the icon color of a checked toggle switch in the active state.
|
|
693
|
-
export const GL_TOGGLE_SWITCH_ICON_COLOR_DISABLED = '#ececef'; // Used for the icon color of a disabled toggle switch.
|
|
694
|
-
export const GL_TOKEN_FOREGROUND_COLOR = '#3a383f'; // Used for the token foreground color.
|
|
695
|
-
export const GL_TOKEN_BACKGROUND_COLOR = '#dcdcde'; // Used for the token background color.
|
|
696
|
-
export const GL_CONTROL_BACKGROUND_COLOR_DEFAULT = '#fff'; // Used for form control (input, radio button, checkbox, textarea) default background.
|
|
697
|
-
export const GL_CONTROL_BACKGROUND_COLOR_DISABLED = '#fbfafd'; // Used for disabled form control (checkbox, input, radio button, textarea) background.
|
|
698
|
-
export const GL_CONTROL_BACKGROUND_COLOR_CONCATENATION = '#fbfafd'; // Used for the background of static content that prepends or appends a text input.
|
|
699
|
-
export const GL_CONTROL_BACKGROUND_COLOR_READONLY = 'rgba(05, 05, 06, 0.02)'; // Used for the background of static content that prepends or appends a text input.
|
|
700
|
-
export const GL_CONTROL_BACKGROUND_COLOR_SELECTED_DEFAULT = '#1f75cb'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background.
|
|
701
|
-
export const GL_CONTROL_BACKGROUND_COLOR_SELECTED_HOVER = '#0b5cad'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background on hover.
|
|
702
|
-
export const GL_CONTROL_BACKGROUND_COLOR_SELECTED_FOCUS = '#0b5cad'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background on hover.
|
|
703
|
-
export const GL_CONTROL_BORDER_COLOR_DEFAULT = '#89888d'; // Used for form control (input, radio button, checkbox, textarea) default border.
|
|
704
|
-
export const GL_CONTROL_BORDER_COLOR_HOVER = '#626168'; // Used for form control (input, radio button, checkbox, textarea) border on hover.
|
|
705
|
-
export const GL_CONTROL_BORDER_COLOR_FOCUS = '#28272d'; // Used for form control (input, radio button, checkbox, textarea) border on focus.
|
|
706
|
-
export const GL_CONTROL_BORDER_COLOR_DISABLED = '#dcdcde'; // Used for disabled form control (input, radio button, checkbox, textarea) border.
|
|
707
|
-
export const GL_CONTROL_BORDER_COLOR_ERROR = '#dd2b0e'; // Used for invalid form control (input, textarea) border.
|
|
708
|
-
export const GL_CONTROL_BORDER_COLOR_SELECTED_DEFAULT = '#1f75cb'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border.
|
|
709
|
-
export const GL_CONTROL_BORDER_COLOR_SELECTED_HOVER = '#0b5cad'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border on hover.
|
|
710
|
-
export const GL_CONTROL_BORDER_COLOR_SELECTED_FOCUS = '#0b5cad'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) border on focus.
|
|
711
|
-
export const GL_CONTROL_TEXT_COLOR_ERROR = '#c91c00'; // Used for the helper text when the input is invalid.
|
|
712
|
-
export const GL_CONTROL_TEXT_COLOR_VALID = '#217645'; // Used for the helper text when the input is valid.
|
|
713
|
-
export const GL_CONTROL_PLACEHOLDER_COLOR = '#89888d'; // Used for placeholder text within inputs.
|
|
714
|
-
export const GL_CONTROL_INDICATOR_COLOR_SELECTED = '#fff'; // Used for checkbox and radio button state indicators.
|
|
715
|
-
export const GL_CONTROL_INDICATOR_COLOR_DISABLED = '#737278'; // Used for disabled checkbox and radio button state indicators.
|
|
716
|
-
export const THEME_INDIGO_10 = '#f8f8ff';
|
|
717
|
-
export const THEME_INDIGO_50 = '#f1f1ff';
|
|
718
|
-
export const THEME_INDIGO_100 = '#dbdbf8';
|
|
719
|
-
export const THEME_INDIGO_200 = '#c7c7f2';
|
|
720
|
-
export const THEME_INDIGO_300 = '#a2a2e6';
|
|
721
|
-
export const THEME_INDIGO_400 = '#8181d7';
|
|
722
|
-
export const THEME_INDIGO_500 = '#6666c4';
|
|
723
|
-
export const THEME_INDIGO_600 = '#5252b5';
|
|
724
|
-
export const THEME_INDIGO_700 = '#41419f';
|
|
725
|
-
export const THEME_INDIGO_800 = '#303083';
|
|
726
|
-
export const THEME_INDIGO_900 = '#222261';
|
|
727
|
-
export const THEME_INDIGO_950 = '#14143d';
|
|
728
|
-
export const THEME_BLUE_10 = '#e6ecf0';
|
|
729
|
-
export const THEME_BLUE_50 = '#cdd8e3';
|
|
730
|
-
export const THEME_BLUE_100 = '#b9cadc';
|
|
731
|
-
export const THEME_BLUE_200 = '#a6bdd5';
|
|
732
|
-
export const THEME_BLUE_300 = '#81a5c9';
|
|
733
|
-
export const THEME_BLUE_400 = '#628eb9';
|
|
734
|
-
export const THEME_BLUE_500 = '#4977a5';
|
|
735
|
-
export const THEME_BLUE_600 = '#346596';
|
|
736
|
-
export const THEME_BLUE_700 = '#235180';
|
|
737
|
-
export const THEME_BLUE_800 = '#153c63';
|
|
738
|
-
export const THEME_BLUE_900 = '#0b2640';
|
|
739
|
-
export const THEME_BLUE_950 = '#04101c';
|
|
740
|
-
export const THEME_LIGHT_BLUE_10 = '#eef3f7';
|
|
741
|
-
export const THEME_LIGHT_BLUE_50 = '#dde6ee';
|
|
742
|
-
export const THEME_LIGHT_BLUE_100 = '#c1d4e6';
|
|
743
|
-
export const THEME_LIGHT_BLUE_200 = '#a0bedc';
|
|
744
|
-
export const THEME_LIGHT_BLUE_300 = '#74a3d3';
|
|
745
|
-
export const THEME_LIGHT_BLUE_400 = '#4f8bc7';
|
|
746
|
-
export const THEME_LIGHT_BLUE_500 = '#3476b9';
|
|
747
|
-
export const THEME_LIGHT_BLUE_600 = '#2268ae';
|
|
748
|
-
export const THEME_LIGHT_BLUE_700 = '#145aa1';
|
|
749
|
-
export const THEME_LIGHT_BLUE_800 = '#0e4d8d';
|
|
750
|
-
export const THEME_LIGHT_BLUE_900 = '#0c4277';
|
|
751
|
-
export const THEME_LIGHT_BLUE_950 = '#0a3764';
|
|
752
|
-
export const THEME_GREEN_10 = '#eef4ef';
|
|
753
|
-
export const THEME_GREEN_50 = '#dde9de';
|
|
754
|
-
export const THEME_GREEN_100 = '#b1d6b5';
|
|
755
|
-
export const THEME_GREEN_200 = '#8cc497';
|
|
756
|
-
export const THEME_GREEN_300 = '#69af7d';
|
|
757
|
-
export const THEME_GREEN_400 = '#499767';
|
|
758
|
-
export const THEME_GREEN_500 = '#308258';
|
|
759
|
-
export const THEME_GREEN_600 = '#25744c';
|
|
760
|
-
export const THEME_GREEN_700 = '#1b653f';
|
|
761
|
-
export const THEME_GREEN_800 = '#155635';
|
|
762
|
-
export const THEME_GREEN_900 = '#0e4328';
|
|
763
|
-
export const THEME_GREEN_950 = '#052e19';
|
|
764
|
-
export const THEME_RED_10 = '#faf4f3';
|
|
765
|
-
export const THEME_RED_50 = '#f4e9e7';
|
|
766
|
-
export const THEME_RED_100 = '#ecd3d0';
|
|
767
|
-
export const THEME_RED_200 = '#e3bab5';
|
|
768
|
-
export const THEME_RED_300 = '#d59086';
|
|
769
|
-
export const THEME_RED_400 = '#c66e60';
|
|
770
|
-
export const THEME_RED_500 = '#ad4a3b';
|
|
771
|
-
export const THEME_RED_600 = '#a13322';
|
|
772
|
-
export const THEME_RED_700 = '#8f2110';
|
|
773
|
-
export const THEME_RED_800 = '#761405';
|
|
774
|
-
export const THEME_RED_900 = '#580d02';
|
|
775
|
-
export const THEME_RED_950 = '#380700';
|
|
776
|
-
export const THEME_LIGHT_RED_10 = '#fdf9f8';
|
|
777
|
-
export const THEME_LIGHT_RED_50 = '#faf2f1';
|
|
778
|
-
export const THEME_LIGHT_RED_100 = '#f6d9d5';
|
|
779
|
-
export const THEME_LIGHT_RED_200 = '#ebada2';
|
|
780
|
-
export const THEME_LIGHT_RED_300 = '#e07f6f';
|
|
781
|
-
export const THEME_LIGHT_RED_400 = '#d36250';
|
|
782
|
-
export const THEME_LIGHT_RED_500 = '#c24b38';
|
|
783
|
-
export const THEME_LIGHT_RED_600 = '#b53a26';
|
|
784
|
-
export const THEME_LIGHT_RED_700 = '#a02e1c';
|
|
785
|
-
export const THEME_LIGHT_RED_800 = '#8b2212';
|
|
786
|
-
export const THEME_LIGHT_RED_900 = '#751709';
|
|
787
|
-
export const THEME_LIGHT_RED_950 = '#5c1105';
|
|
788
|
-
export const BLACK = '#050506';
|
|
789
|
-
export const WHITE = '#fff';
|
|
790
|
-
export const BLUE_50 = '#e9f3fc';
|
|
791
|
-
export const BLUE_100 = '#cbe2f9';
|
|
792
|
-
export const BLUE_200 = '#9dc7f1';
|
|
793
|
-
export const BLUE_300 = '#63a6e9';
|
|
794
|
-
export const BLUE_400 = '#428fdc';
|
|
795
|
-
export const BLUE_500 = '#1f75cb';
|
|
796
|
-
export const BLUE_600 = '#1068bf';
|
|
797
|
-
export const BLUE_700 = '#0b5cad';
|
|
798
|
-
export const BLUE_800 = '#064787';
|
|
799
|
-
export const BLUE_900 = '#033464';
|
|
800
|
-
export const BLUE_950 = '#002850';
|
|
801
|
-
export const GRAY_10 = '#fbfafd';
|
|
802
|
-
export const GRAY_50 = '#ececef';
|
|
803
|
-
export const GRAY_100 = '#dcdcde';
|
|
804
|
-
export const GRAY_200 = '#bfbfc3';
|
|
805
|
-
export const GRAY_300 = '#a4a3a8';
|
|
806
|
-
export const GRAY_400 = '#89888d';
|
|
807
|
-
export const GRAY_500 = '#737278';
|
|
808
|
-
export const GRAY_600 = '#626168';
|
|
809
|
-
export const GRAY_700 = '#4c4b51';
|
|
810
|
-
export const GRAY_800 = '#3a383f';
|
|
811
|
-
export const GRAY_900 = '#28272d';
|
|
812
|
-
export const GRAY_950 = '#18171d';
|
|
813
|
-
export const GREEN_50 = '#ecf4ee';
|
|
814
|
-
export const GREEN_100 = '#c3e6cd';
|
|
815
|
-
export const GREEN_200 = '#91d4a8';
|
|
816
|
-
export const GREEN_300 = '#52b87a';
|
|
817
|
-
export const GREEN_400 = '#2da160';
|
|
818
|
-
export const GREEN_500 = '#108548';
|
|
819
|
-
export const GREEN_600 = '#217645';
|
|
820
|
-
export const GREEN_700 = '#24663b';
|
|
821
|
-
export const GREEN_800 = '#0d532a';
|
|
822
|
-
export const GREEN_900 = '#0a4020';
|
|
823
|
-
export const GREEN_950 = '#072b15';
|
|
824
|
-
export const ORANGE_50 = '#fdf1dd';
|
|
825
|
-
export const ORANGE_100 = '#f5d9a8';
|
|
826
|
-
export const ORANGE_200 = '#e9be74';
|
|
827
|
-
export const ORANGE_300 = '#d99530';
|
|
828
|
-
export const ORANGE_400 = '#c17d10';
|
|
829
|
-
export const ORANGE_500 = '#ab6100';
|
|
830
|
-
export const ORANGE_600 = '#9e5400';
|
|
831
|
-
export const ORANGE_700 = '#8f4700';
|
|
832
|
-
export const ORANGE_800 = '#703800';
|
|
833
|
-
export const ORANGE_900 = '#5c2900';
|
|
834
|
-
export const ORANGE_950 = '#421f00';
|
|
835
|
-
export const PURPLE_50 = '#f4f0ff';
|
|
836
|
-
export const PURPLE_100 = '#e1d8f9';
|
|
837
|
-
export const PURPLE_200 = '#cbbbf2';
|
|
838
|
-
export const PURPLE_300 = '#ac93e6';
|
|
839
|
-
export const PURPLE_400 = '#9475db';
|
|
840
|
-
export const PURPLE_500 = '#7b58cf';
|
|
841
|
-
export const PURPLE_600 = '#694cc0';
|
|
842
|
-
export const PURPLE_700 = '#5943b6';
|
|
843
|
-
export const PURPLE_800 = '#453894';
|
|
844
|
-
export const PURPLE_900 = '#2f2a6b';
|
|
845
|
-
export const PURPLE_950 = '#232150';
|
|
846
|
-
export const RED_50 = '#fcf1ef';
|
|
847
|
-
export const RED_100 = '#fdd4cd';
|
|
848
|
-
export const RED_200 = '#fcb5aa';
|
|
849
|
-
export const RED_300 = '#f57f6c';
|
|
850
|
-
export const RED_400 = '#ec5941';
|
|
851
|
-
export const RED_500 = '#dd2b0e';
|
|
852
|
-
export const RED_600 = '#c91c00';
|
|
853
|
-
export const RED_700 = '#ae1800';
|
|
854
|
-
export const RED_800 = '#8d1300';
|
|
855
|
-
export const RED_900 = '#660e00';
|
|
856
|
-
export const RED_950 = '#4d0a00';
|
|
857
|
-
export const BRAND_CHARCOAL = '#171321'; // Use color.brand-charcoal instead.
|
|
858
|
-
export const BRAND_ORANGE_01 = '#fca326'; // Use color.brand-orange.01p instead.
|
|
859
|
-
export const BRAND_ORANGE_02 = '#fc6d26'; // Use color.brand-orange.02p instead.
|
|
860
|
-
export const BRAND_ORANGE_03 = '#e24329'; // Use color.brand-orange.03p instead.
|
|
861
|
-
export const BRAND_PURPLE_01 = '#a989f5'; // Use color.purple.01p instead.
|
|
862
|
-
export const BRAND_PURPLE_02 = '#7759c2'; // Use color.purple.02p instead.
|
|
863
|
-
export const BRAND_GRAY_01 = '#d1d0d3'; // Use color.brand-gray.01 instead.
|
|
864
|
-
export const BRAND_GRAY_02 = '#a2a1a6'; // Use color.brand-gray.02 instead.
|
|
865
|
-
export const BRAND_GRAY_03 = '#74717a'; // Use color.brand-gray.03 instead.
|
|
866
|
-
export const BRAND_GRAY_04 = '#45424d'; // Use color.brand-gray.04 instead.
|
|
867
|
-
export const BRAND_GRAY_05 = '#2b2838'; // Use color.brand-gray.05 instead.
|
|
868
|
-
export const T_GRAY_A_16 = 'rgba(05, 05, 06, 0.16)'; // Use color.alpha.dark.16 instead.
|
|
869
|
-
export const T_GRAY_A_24 = 'rgba(05, 05, 06, 0.24)'; // Use color.alpha.dark.24 instead.
|
|
870
|
-
export const T_GRAY_A_02 = 'rgba(05, 05, 06, 0.02)'; // Use color.alpha.dark.2 instead.
|
|
871
|
-
export const T_GRAY_A_04 = 'rgba(05, 05, 06, 0.04)'; // Use color.alpha.dark.4 instead.
|
|
872
|
-
export const T_GRAY_A_06 = 'rgba(05, 05, 06, 0.06)'; // Use color.alpha.dark.6 instead.
|
|
873
|
-
export const T_GRAY_A_08 = 'rgba(05, 05, 06, 0.08)'; // Use color.alpha.dark.8 instead.
|
|
874
|
-
export const T_WHITE_A_16 = 'rgba(255, 255, 255, 0.16)'; // Use color.alpha.light.16 instead.
|
|
875
|
-
export const T_WHITE_A_24 = 'rgba(255, 255, 255, 0.24)'; // Use color.alpha.light.24 instead.
|
|
876
|
-
export const T_WHITE_A_36 = 'rgba(255, 255, 255, 0.36)'; // Use color.alpha.light.36 instead.
|
|
877
|
-
export const T_WHITE_A_02 = 'rgba(255, 255, 255, 0.02)'; // Use color.alpha.light.2 instead.
|
|
878
|
-
export const T_WHITE_A_04 = 'rgba(255, 255, 255, 0.04)'; // Use color.alpha.light.4 instead.
|
|
879
|
-
export const T_WHITE_A_06 = 'rgba(255, 255, 255, 0.06)'; // Use color.alpha.light.6 instead.
|
|
880
|
-
export const T_WHITE_A_08 = 'rgba(255, 255, 255, 0.08)'; // Use color.alpha.light.8 instead.
|
|
881
|
-
export const GL_FEEDBACK_STRONG_BACKGROUND_COLOR = '#3a383f'; // Used for a background associated with strong feedback like a tooltip or toast message.
|
|
882
|
-
export const GL_FEEDBACK_STRONG_TEXT_COLOR = '#fff'; // Used for text on a strong feedback background.
|
|
883
|
-
export const GL_FEEDBACK_STRONG_ICON_COLOR = '#fff'; // Used for an icon on a strong feedback background.
|
|
884
|
-
export const GL_FEEDBACK_STRONG_LINK_COLOR = '#63a6e9'; // Used for a link on a strong feedback background.
|
|
885
|
-
export const GL_FEEDBACK_NEUTRAL_BACKGROUND_COLOR = '#ececef'; // Used for the background of a neutral feedback item when there isn't a specific meaning or urgency.
|
|
886
|
-
export const GL_FEEDBACK_NEUTRAL_TEXT_COLOR = '#4c4b51'; // Used for the text of a neutral feedback item when there isn't a specific meaning or urgency.
|
|
887
|
-
export const GL_FEEDBACK_NEUTRAL_ICON_COLOR = '#626168'; // Used for the icon of a neutral feedback item when there isn't a specific meaning or urgency.
|
|
888
|
-
export const GL_FEEDBACK_INFO_BACKGROUND_COLOR = '#e9f3fc'; // Used for the background of an informational feedback item when highlighting new information or a change that doesn't require immediate action.
|
|
889
|
-
export const GL_FEEDBACK_INFO_TEXT_COLOR = '#0b5cad'; // Used for the text of an informational feedback item when highlighting new information or a change that doesn't require immediate action.
|
|
890
|
-
export const GL_FEEDBACK_INFO_ICON_COLOR = '#1068bf'; // Used for the icon of an informational feedback item when highlighting new information or a change that doesn't require immediate action.
|
|
891
|
-
export const GL_FEEDBACK_SUCCESS_BACKGROUND_COLOR = '#ecf4ee'; // Used for the background of a success feedback item when confirming the successful completion of a user-initiated action.
|
|
892
|
-
export const GL_FEEDBACK_SUCCESS_TEXT_COLOR = '#24663b'; // Used for the text of a success feedback item when confirming the successful completion of a user-initiated action.
|
|
893
|
-
export const GL_FEEDBACK_SUCCESS_ICON_COLOR = '#217645'; // Used for the icon of a success feedback item when confirming the successful completion of a user-initiated action.
|
|
894
|
-
export const GL_FEEDBACK_WARNING_BACKGROUND_COLOR = '#fdf1dd'; // Used for the background of a warning feedback item when notifying about a potential issue or sensitive information.
|
|
895
|
-
export const GL_FEEDBACK_WARNING_TEXT_COLOR = '#8f4700'; // Used for the text of a warning feedback item when notifying about a potential issue or sensitive information.
|
|
896
|
-
export const GL_FEEDBACK_WARNING_ICON_COLOR = '#9e5400'; // Used for the icon of a warning feedback item when notifying about a potential issue or sensitive information.
|
|
897
|
-
export const GL_FEEDBACK_DANGER_BACKGROUND_COLOR = '#fcf1ef'; // Used for the background of a danger feedback item when notifying about a critical issue that has just occurred and requires immediate attention.
|
|
898
|
-
export const GL_FEEDBACK_DANGER_TEXT_COLOR = '#ae1800'; // Used for the text of a danger feedback item when notifying about a critical issue that has just occurred and requires immediate attention.
|
|
899
|
-
export const GL_FEEDBACK_DANGER_ICON_COLOR = '#c91c00'; // Used for the icon of a danger feedback item when notifying about a critical issue that has just occurred and requires immediate attention.
|
|
900
|
-
export const GL_FOCUS_RING_OUTER_COLOR = '#1f75cb'; // Used for the outer color portion of the focus ring.
|
|
901
|
-
export const GL_FOCUS_RING_INNER_COLOR = '#fff'; // Used for the inner neutral portion of the focus ring.
|
|
902
|
-
export const GL_ICON_COLOR_DEFAULT = '#4c4b51'; // Used for the default icon color. Can be paired with default text.
|
|
903
|
-
export const GL_ICON_COLOR_SUBTLE = '#737278'; // Used for a static or decorational icon. Can be paired with subtle text.
|
|
904
|
-
export const GL_ICON_COLOR_STRONG = '#28272d'; // Used for an icon with the highest contrast.
|
|
905
|
-
export const GL_ICON_COLOR_DISABLED = '#a4a3a8'; // Used for an icon within a disabled section.
|
|
906
|
-
export const GL_ICON_COLOR_LINK = '#1068bf'; // Used for an icon within a link.
|
|
907
|
-
export const GL_ICON_COLOR_INFO = '#1068bf'; // Used for an icon associated with information or help.
|
|
908
|
-
export const GL_ICON_COLOR_WARNING = '#9e5400'; // Used for an icon associated with a warning.
|
|
909
|
-
export const GL_ICON_COLOR_DANGER = '#c91c00'; // Used for an icon associated with an error or danger.
|
|
910
|
-
export const GL_ICON_COLOR_SUCCESS = '#217645'; // Used for an icon associated with success or validity.
|
|
911
|
-
export const GL_LINE_HEIGHT_12 = '0.75rem';
|
|
912
|
-
export const GL_LINE_HEIGHT_16 = '1rem';
|
|
913
|
-
export const GL_LINE_HEIGHT_20 = '1.25rem';
|
|
914
|
-
export const GL_LINE_HEIGHT_24 = '1.5rem';
|
|
915
|
-
export const GL_LINE_HEIGHT_28 = '1.75rem';
|
|
916
|
-
export const GL_LINE_HEIGHT_32 = '2rem';
|
|
917
|
-
export const GL_LINE_HEIGHT_36 = '2.25rem';
|
|
918
|
-
export const GL_LINE_HEIGHT_42 = '2.625rem';
|
|
919
|
-
export const GL_LINE_HEIGHT_44 = '2.75rem';
|
|
920
|
-
export const GL_LINE_HEIGHT_52 = '3.25rem';
|
|
921
|
-
export const GL_SHADOW_COLOR_DEFAULT = 'rgba(05, 05, 06, 0.16)'; // Used for the default shadow color.
|
|
922
|
-
export const GL_STATUS_NEUTRAL_BACKGROUND_COLOR = '#dcdcde'; // 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.
|
|
923
|
-
export const GL_STATUS_NEUTRAL_TEXT_COLOR = '#4c4b51'; // 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.
|
|
924
|
-
export const GL_STATUS_NEUTRAL_ICON_COLOR = '#737278'; // 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.
|
|
925
|
-
export const GL_STATUS_INFO_BACKGROUND_COLOR = '#cbe2f9'; // Used for the background of an informational status item when indicating a noteworthy ongoing condition or a state of active progress.
|
|
926
|
-
export const GL_STATUS_INFO_TEXT_COLOR = '#0b5cad'; // Used for the text of an informational status item when indicating a noteworthy ongoing condition or a state of active progress.
|
|
927
|
-
export const GL_STATUS_INFO_ICON_COLOR = '#1f75cb'; // Used for the icon of an informational status item when indicating a noteworthy ongoing condition or a state of active progress.
|
|
928
|
-
export const GL_STATUS_SUCCESS_BACKGROUND_COLOR = '#c3e6cd'; // Used for the background of a success status item when indicating a positive outcome, completion, or desired state. Clearly conveys a positive connotation.
|
|
929
|
-
export const GL_STATUS_SUCCESS_TEXT_COLOR = '#24663b'; // Used for the text of a success status item when indicating a positive outcome, completion, or desired state. Clearly conveys a positive connotation.
|
|
930
|
-
export const GL_STATUS_SUCCESS_ICON_COLOR = '#108548'; // Used for the icon of a success status item when indicating a positive outcome, completion, or desired state. Clearly conveys a positive connotation.
|
|
931
|
-
export const GL_STATUS_WARNING_BACKGROUND_COLOR = '#f5d9a8'; // 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.
|
|
932
|
-
export const GL_STATUS_WARNING_TEXT_COLOR = '#8f4700'; // 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.
|
|
933
|
-
export const GL_STATUS_WARNING_ICON_COLOR = '#ab6100'; // 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.
|
|
934
|
-
export const GL_STATUS_DANGER_BACKGROUND_COLOR = '#fdd4cd'; // 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.
|
|
935
|
-
export const GL_STATUS_DANGER_TEXT_COLOR = '#ae1800'; // 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.
|
|
936
|
-
export const GL_STATUS_DANGER_ICON_COLOR = '#dd2b0e'; // 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.
|
|
937
|
-
export const GL_STATUS_BRAND_BACKGROUND_COLOR = '#e1d8f9'; // 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.
|
|
938
|
-
export const GL_STATUS_BRAND_TEXT_COLOR = '#5943b6'; // 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.
|
|
939
|
-
export const GL_STATUS_BRAND_ICON_COLOR = '#7b58cf'; // 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.
|
|
940
|
-
export const GL_TEXT_PRIMARY = '#28272d'; // Use text.color.default instead.
|
|
941
|
-
export const GL_TEXT_SECONDARY = '#737278'; // Use text.color.subtle instead.
|
|
942
|
-
export const GL_TEXT_TERTIARY = '#89888d'; // Use text.color.disabled instead.
|
|
943
|
-
export const GL_TEXT_COLOR_DEFAULT = '#3a383f'; // Used for the default text color.
|
|
944
|
-
export const GL_TEXT_COLOR_SUBTLE = '#626168'; // Used for supplemental text that doesn't need to be as prominent as other text.
|
|
945
|
-
export const GL_TEXT_COLOR_STRONG = '#18171d'; // Used for text with the highest contrast.
|
|
946
|
-
export const GL_TEXT_COLOR_HEADING = '#18171d'; // Used for headings level 1-6.
|
|
947
|
-
export const GL_TEXT_COLOR_LINK = '#0b5cad'; // Used for default text links.
|
|
948
|
-
export const GL_TEXT_COLOR_WARNING = '#9e5400'; // Used for text that requires caution or careful attention.
|
|
949
|
-
export const GL_TEXT_COLOR_DANGER = '#c91c00'; // Used for text indicating a problem, critical state, destructive action, error, failure, removal, stop, or declination.
|
|
950
|
-
export const GL_TEXT_COLOR_SUCCESS = '#217645'; // Used for text indicating success, completion, approval, addition, or validity.
|
|
951
|
-
export const GL_TEXT_COLOR_DISABLED = '#89888d'; // Used for disabled text.
|