@openedx/paragon 22.6.0 → 23.0.0-alpha.2
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/README.md +61 -21
- package/bin/paragon-scripts.js +128 -9
- package/dist/ActionRow/_index.scss +2 -4
- package/dist/Alert/index.scss +41 -32
- package/dist/Annotation/_mixins.scss +104 -0
- package/dist/Annotation/index.scss +130 -103
- package/dist/Avatar/index.scss +18 -20
- package/dist/AvatarButton/index.scss +3 -5
- package/dist/Badge/index.scss +112 -2
- package/dist/Breadcrumb/index.scss +14 -16
- package/dist/Bubble/index.scss +25 -12
- package/dist/Button/_mixins.scss +14 -0
- package/dist/Button/button-group.scss +126 -0
- package/dist/Button/index.js +15 -40
- package/dist/Button/index.js.map +1 -1
- package/dist/Button/index.scss +855 -372
- package/dist/Card/card-bootstrap.scss +168 -0
- package/dist/Card/index.scss +78 -79
- package/dist/Carousel/index.scss +168 -2
- package/dist/Chip/ChipIcon.d.ts +2 -2
- package/dist/Chip/ChipIcon.js.map +1 -1
- package/dist/Chip/index.d.ts +2 -2
- package/dist/Chip/index.js +2 -2
- package/dist/Chip/index.js.map +1 -1
- package/dist/Chip/index.scss +48 -38
- package/dist/Chip/mixins.scss +8 -3
- package/dist/ChipCarousel/index.scss +4 -4
- package/dist/CloseButton/index.scss +31 -2
- package/dist/Code/index.scss +47 -2
- package/dist/Collapsible/index.scss +15 -15
- package/dist/ColorPicker/index.scss +9 -11
- package/dist/DataTable/CollapsibleButtonGroup.js +2 -2
- package/dist/DataTable/CollapsibleButtonGroup.js.map +1 -1
- package/dist/DataTable/index.scss +48 -50
- package/dist/Dropdown/dropdown-bootstrap.scss +181 -0
- package/dist/Dropdown/index.js +0 -2
- package/dist/Dropdown/index.js.map +1 -1
- package/dist/Dropdown/index.scss +11 -12
- package/dist/Dropzone/index.scss +12 -14
- package/dist/Form/_FormText.scss +8 -8
- package/dist/Form/_bootstrap-custom-forms.scss +551 -0
- package/dist/Form/_bootstrap-forms.scss +381 -0
- package/dist/Form/_index.scss +168 -146
- package/dist/Form/_input-group.scss +188 -0
- package/dist/Form/_mixins.scss +216 -3
- package/dist/Hyperlink/index.js +32 -20
- package/dist/Hyperlink/index.js.map +1 -1
- package/dist/Hyperlink/index.scss +1 -1
- package/dist/Icon/index.d.ts +2 -4
- package/dist/Icon/index.js +1 -1
- package/dist/Icon/index.js.map +1 -1
- package/dist/Icon/index.scss +10 -12
- package/dist/IconButton/_mixins.scss +4 -0
- package/dist/IconButton/index.js +5 -11
- package/dist/IconButton/index.js.map +1 -1
- package/dist/IconButton/index.scss +387 -74
- package/dist/IconButtonToggle/index.scss +1 -1
- package/dist/Image/index.scss +53 -2
- package/dist/Menu/index.scss +25 -27
- package/dist/Modal/_ModalDialog.scss +52 -54
- package/dist/Modal/index.scss +6 -73
- package/dist/Nav/_mixins.scss +4 -4
- package/dist/Nav/index.scss +70 -66
- package/dist/Navbar/index.scss +276 -2
- package/dist/OverflowScroll/data/useOverflowScrollElementAttributes.js +3 -3
- package/dist/Overlay/index.js +2 -3
- package/dist/Overlay/index.js.map +1 -1
- package/dist/PageBanner/index.scss +17 -21
- package/dist/Pagination/index.scss +32 -34
- package/dist/Pagination/pagination-bootstrap.scss +83 -0
- package/dist/Popover/index.scss +9 -10
- package/dist/Popover/popover-bootstrap.scss +198 -0
- package/dist/ProductTour/Checkpoint.scss +71 -43
- package/dist/ProgressBar/_mixins.scss +22 -0
- package/dist/ProgressBar/bootstrap-progress.scss +49 -0
- package/dist/ProgressBar/index.scss +28 -36
- package/dist/Scrollable/index.scss +2 -2
- package/dist/SearchField/SearchFieldInput.js +2 -2
- package/dist/SearchField/SearchFieldInput.js.map +1 -1
- package/dist/SearchField/index.scss +15 -17
- package/dist/SelectableBox/index.scss +11 -13
- package/dist/Sheet/index.scss +10 -10
- package/dist/Spinner/index.scss +57 -2
- package/dist/Stack/index.scss +1 -3
- package/dist/Stepper/index.scss +20 -20
- package/dist/Sticky/index.scss +4 -6
- package/dist/Tabs/index.js +0 -2
- package/dist/Tabs/index.js.map +1 -1
- package/dist/Tabs/index.scss +29 -25
- package/dist/Toast/ToastContainer.scss +9 -11
- package/dist/Toast/bootstrap-toast.scss +46 -0
- package/dist/Toast/index.scss +9 -10
- package/dist/Tooltip/index.scss +136 -10
- package/dist/ValidationMessage/index.scss +1 -1
- package/dist/core.css +16777 -0
- package/dist/core.css.map +1 -0
- package/dist/core.min.css +2 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +4 -18
- package/dist/index.scss +0 -4
- package/dist/light.css +4098 -0
- package/dist/light.css.map +1 -0
- package/dist/light.min.css +2 -0
- package/dist/theme-urls.json +21 -0
- package/dist/utils/breakpoints.js +1 -1
- package/lib/build-scss.js +188 -0
- package/lib/build-tokens.js +133 -0
- package/lib/help.js +36 -23
- package/lib/replace-variables.js +38 -0
- package/lib/utils.js +30 -0
- package/package.json +30 -14
- package/src/ActionRow/_index.scss +2 -4
- package/src/Alert/index.scss +41 -32
- package/src/Annotation/_mixins.scss +104 -0
- package/src/Annotation/index.scss +130 -103
- package/src/Avatar/index.scss +18 -20
- package/src/AvatarButton/index.scss +3 -5
- package/src/Badge/index.scss +112 -2
- package/src/Breadcrumb/index.scss +14 -16
- package/src/Bubble/index.scss +25 -12
- package/src/Button/{Button.test.tsx → Button.test.jsx} +2 -14
- package/src/Button/README.md +0 -84
- package/src/Button/__snapshots__/{Button.test.tsx.snap → Button.test.jsx.snap} +2 -19
- package/src/Button/_mixins.scss +14 -0
- package/src/Button/button-group.scss +126 -0
- package/src/Button/index.jsx +113 -0
- package/src/Button/index.scss +855 -372
- package/src/Card/card-bootstrap.scss +168 -0
- package/src/Card/index.scss +78 -79
- package/src/Carousel/index.scss +168 -2
- package/src/Chip/ChipIcon.tsx +1 -1
- package/src/Chip/index.scss +48 -38
- package/src/Chip/index.tsx +5 -5
- package/src/Chip/mixins.scss +8 -3
- package/src/ChipCarousel/index.scss +4 -4
- package/src/CloseButton/index.scss +31 -2
- package/src/Code/index.scss +47 -2
- package/src/Collapsible/index.scss +15 -15
- package/src/ColorPicker/index.scss +9 -11
- package/src/DataTable/CollapsibleButtonGroup.jsx +2 -2
- package/src/DataTable/index.scss +48 -50
- package/src/Dropdown/README.md +0 -93
- package/src/Dropdown/dropdown-bootstrap.scss +181 -0
- package/src/Dropdown/index.jsx +0 -2
- package/src/Dropdown/index.scss +11 -12
- package/src/Dropzone/index.scss +12 -14
- package/src/Form/_FormText.scss +8 -8
- package/src/Form/_bootstrap-custom-forms.scss +551 -0
- package/src/Form/_bootstrap-forms.scss +381 -0
- package/src/Form/_index.scss +168 -146
- package/src/Form/_input-group.scss +188 -0
- package/src/Form/_mixins.scss +216 -3
- package/src/Hyperlink/{Hyperlink.test.tsx → Hyperlink.test.jsx} +10 -21
- package/src/Hyperlink/{index.tsx → index.jsx} +37 -41
- package/src/Hyperlink/index.scss +1 -1
- package/src/Icon/index.d.ts +2 -4
- package/src/Icon/index.jsx +1 -1
- package/src/Icon/index.scss +10 -12
- package/src/IconButton/README.md +1 -15
- package/src/IconButton/__snapshots__/IconButton.test.jsx.snap +5 -28
- package/src/IconButton/_mixins.scss +4 -0
- package/src/IconButton/index.jsx +6 -13
- package/src/IconButton/index.scss +387 -74
- package/src/IconButtonToggle/index.scss +1 -1
- package/src/Image/index.scss +53 -2
- package/src/Menu/index.scss +25 -27
- package/src/Modal/_ModalDialog.scss +52 -54
- package/src/Modal/index.scss +6 -73
- package/src/Nav/_mixins.scss +4 -4
- package/src/Nav/index.scss +70 -66
- package/src/Navbar/index.scss +276 -2
- package/src/OverflowScroll/data/useOverflowScrollElementAttributes.js +3 -3
- package/src/Overlay/index.jsx +2 -3
- package/src/PageBanner/index.scss +17 -21
- package/src/Pagination/index.scss +32 -34
- package/src/Pagination/pagination-bootstrap.scss +83 -0
- package/src/Popover/index.scss +9 -10
- package/src/Popover/popover-bootstrap.scss +198 -0
- package/src/ProductTour/Checkpoint.scss +71 -43
- package/src/ProgressBar/_mixins.scss +22 -0
- package/src/ProgressBar/bootstrap-progress.scss +49 -0
- package/src/ProgressBar/index.scss +28 -36
- package/src/Scrollable/index.scss +2 -2
- package/src/SearchField/SearchFieldInput.jsx +2 -2
- package/src/SearchField/__snapshots__/SearchField.test.jsx.snap +12 -8
- package/src/SearchField/index.scss +15 -17
- package/src/SelectableBox/index.scss +11 -13
- package/src/Sheet/index.scss +10 -10
- package/src/Spinner/index.scss +57 -2
- package/src/Stack/index.scss +1 -3
- package/src/Stepper/index.scss +20 -20
- package/src/Sticky/index.scss +4 -6
- package/src/Tabs/README.md +1 -23
- package/src/Tabs/index.jsx +0 -3
- package/src/Tabs/index.scss +29 -25
- package/src/Toast/ToastContainer.scss +9 -11
- package/src/Toast/bootstrap-toast.scss +46 -0
- package/src/Toast/index.scss +9 -10
- package/src/Tooltip/index.scss +136 -10
- package/src/TransitionReplace/README.md +4 -4
- package/src/ValidationMessage/index.scss +1 -1
- package/src/index.d.ts +2 -2
- package/src/index.js +4 -18
- package/src/index.scss +0 -4
- package/src/{setupTest.ts → setupTest.js} +0 -7
- package/src/utils/breakpoints.js +1 -1
- package/styles/css/core/custom-media-breakpoints.css +17 -0
- package/styles/css/core/index.css +2 -0
- package/styles/css/core/variables.css +603 -0
- package/styles/css/themes/light/index.css +2 -0
- package/styles/css/themes/light/utility-classes.css +2454 -0
- package/styles/css/themes/light/variables.css +1644 -0
- package/{scss → styles/scss}/core/_functions.scss +1 -1
- package/styles/scss/core/_grid.scss +21 -0
- package/{scss → styles/scss}/core/_utilities.scss +17 -11
- package/styles/scss/core/_variables.scss +868 -0
- package/styles/scss/core/bootstrap-override/_functions.scss +104 -0
- package/styles/scss/core/bootstrap-override/_mixins.scss +4 -0
- package/styles/scss/core/bootstrap-override/_utilities.scss +4 -0
- package/styles/scss/core/bootstrap-override/bootstrap.scss +2 -0
- package/styles/scss/core/bootstrap-override/mixins/_grid-framework.scss +80 -0
- package/styles/scss/core/bootstrap-override/mixins/_grid.scss +69 -0
- package/styles/scss/core/bootstrap-override/mixins/_list-group.scss +22 -0
- package/styles/scss/core/bootstrap-override/utilities/_background.scss +7 -0
- package/styles/scss/core/bootstrap-override/utilities/_borders.scss +67 -0
- package/styles/scss/core/bootstrap-override/utilities/_spacing.scss +70 -0
- package/styles/scss/core/bootstrap-override/utilities/_text.scss +68 -0
- package/styles/scss/core/core.scss +21 -0
- package/{scss → styles/scss}/core/utilities-only.scss +1 -0
- package/tokens/README.md +157 -0
- package/tokens/css-utilities.js +56 -0
- package/tokens/map-scss-to-css.js +24 -0
- package/tokens/replace-variables.js +32 -0
- package/tokens/sass-helpers.js +98 -0
- package/tokens/src/core/alias/size.json +15 -0
- package/tokens/src/core/components/ActionRow.json +10 -0
- package/tokens/src/core/components/Alert.json +30 -0
- package/tokens/src/core/components/Annotation.json +25 -0
- package/tokens/src/core/components/Avatar.json +17 -0
- package/tokens/src/core/components/AvatarButton.json +11 -0
- package/tokens/src/core/components/Badge.json +33 -0
- package/tokens/src/core/components/Breadcrumb.json +23 -0
- package/tokens/src/core/components/Bubble.json +10 -0
- package/tokens/src/core/components/Button/core.json +105 -0
- package/tokens/src/core/components/Card.json +96 -0
- package/tokens/src/core/components/Carousel.json +37 -0
- package/tokens/src/core/components/Chip.json +41 -0
- package/tokens/src/core/components/ChipCarousel.json +15 -0
- package/tokens/src/core/components/CloseButton.json +14 -0
- package/tokens/src/core/components/Code.json +34 -0
- package/tokens/src/core/components/Collapsible.json +29 -0
- package/tokens/src/core/components/ColorPicker.json +8 -0
- package/tokens/src/core/components/Container.json +13 -0
- package/tokens/src/core/components/DataTable.json +27 -0
- package/tokens/src/core/components/Dropdown.json +67 -0
- package/tokens/src/core/components/Dropzone.json +21 -0
- package/tokens/src/core/components/Form/other.json +14 -0
- package/tokens/src/core/components/Form/size.json +229 -0
- package/tokens/src/core/components/Form/spacing.json +155 -0
- package/tokens/src/core/components/Form/transition.json +16 -0
- package/tokens/src/core/components/Form/typography.json +122 -0
- package/tokens/src/core/components/Icon.json +11 -0
- package/tokens/src/core/components/IconButton.json +15 -0
- package/tokens/src/core/components/Image.json +28 -0
- package/tokens/src/core/components/Menu.json +48 -0
- package/tokens/src/core/components/Modal.json +47 -0
- package/tokens/src/core/components/Nav.json +52 -0
- package/tokens/src/core/components/Navbar.json +70 -0
- package/tokens/src/core/components/Pagination.json +66 -0
- package/tokens/src/core/components/Popover.json +48 -0
- package/tokens/src/core/components/ProductTour.json +32 -0
- package/tokens/src/core/components/ProgressBar.json +39 -0
- package/tokens/src/core/components/SearchField.json +23 -0
- package/tokens/src/core/components/SelectableBox.json +9 -0
- package/tokens/src/core/components/Sheet.json +10 -0
- package/tokens/src/core/components/Spinner.json +19 -0
- package/tokens/src/core/components/Stack.json +7 -0
- package/tokens/src/core/components/Stepper.json +42 -0
- package/tokens/src/core/components/Sticky.json +7 -0
- package/tokens/src/core/components/Tab.json +19 -0
- package/tokens/src/core/components/Tabs.json +19 -0
- package/tokens/src/core/components/Toast.json +30 -0
- package/tokens/src/core/components/Tooltip.json +33 -0
- package/tokens/src/core/components/general/caret.json +13 -0
- package/tokens/src/core/components/general/headings.json +16 -0
- package/tokens/src/core/components/general/hr.json +10 -0
- package/tokens/src/core/components/general/input.json +51 -0
- package/tokens/src/core/components/general/link.json +30 -0
- package/tokens/src/core/components/general/list.json +26 -0
- package/tokens/src/core/components/general/text.json +24 -0
- package/tokens/src/core/global/breakpoints.json +12 -0
- package/tokens/src/core/global/display.json +22 -0
- package/tokens/src/core/global/elevation.json +19 -0
- package/tokens/src/core/global/other.json +4 -0
- package/tokens/src/core/global/spacing.json +37 -0
- package/tokens/src/core/global/transition.json +14 -0
- package/tokens/src/core/global/typography.json +91 -0
- package/tokens/src/core/utilities/color.json +12 -0
- package/tokens/src/themes/light/alias/color.json +114 -0
- package/tokens/src/themes/light/components/Alert.json +38 -0
- package/tokens/src/themes/light/components/Annotation.json +29 -0
- package/tokens/src/themes/light/components/Avatar.json +7 -0
- package/tokens/src/themes/light/components/Badge.json +186 -0
- package/tokens/src/themes/light/components/Breadcrumb.json +13 -0
- package/tokens/src/themes/light/components/Bubble.json +18 -0
- package/tokens/src/themes/light/components/Button/brand.json +260 -0
- package/tokens/src/themes/light/components/Button/core.json +24 -0
- package/tokens/src/themes/light/components/Button/danger.json +247 -0
- package/tokens/src/themes/light/components/Button/dark.json +230 -0
- package/tokens/src/themes/light/components/Button/info.json +238 -0
- package/tokens/src/themes/light/components/Button/light.json +236 -0
- package/tokens/src/themes/light/components/Button/primary.json +250 -0
- package/tokens/src/themes/light/components/Button/secondary.json +278 -0
- package/tokens/src/themes/light/components/Button/success.json +253 -0
- package/tokens/src/themes/light/components/Button/tertiary.json +109 -0
- package/tokens/src/themes/light/components/Button/warning.json +276 -0
- package/tokens/src/themes/light/components/Card.json +36 -0
- package/tokens/src/themes/light/components/Carousel.json +45 -0
- package/tokens/src/themes/light/components/Chip.json +50 -0
- package/tokens/src/themes/light/components/CloseButton.json +10 -0
- package/tokens/src/themes/light/components/Code.json +23 -0
- package/tokens/src/themes/light/components/DataTable.json +26 -0
- package/tokens/src/themes/light/components/Dropdown.json +41 -0
- package/tokens/src/themes/light/components/Dropzone.json +23 -0
- package/tokens/src/themes/light/components/Form/color.json +270 -0
- package/tokens/src/themes/light/components/Form/elevation.json +76 -0
- package/tokens/src/themes/light/components/Form/other.json +131 -0
- package/tokens/src/themes/light/components/IconButton.json +451 -0
- package/tokens/src/themes/light/components/Image.json +18 -0
- package/tokens/src/themes/light/components/Menu.json +30 -0
- package/tokens/src/themes/light/components/Modal.json +37 -0
- package/tokens/src/themes/light/components/Nav.json +166 -0
- package/tokens/src/themes/light/components/Navbar.json +136 -0
- package/tokens/src/themes/light/components/OverflowScroll.json +9 -0
- package/tokens/src/themes/light/components/PageBanner.json +24 -0
- package/tokens/src/themes/light/components/Pagination.json +45 -0
- package/tokens/src/themes/light/components/Popover.json +55 -0
- package/tokens/src/themes/light/components/ProductTour.json +35 -0
- package/tokens/src/themes/light/components/ProgressBar.json +20 -0
- package/tokens/src/themes/light/components/Scrollable.json +14 -0
- package/tokens/src/themes/light/components/SearchField.json +25 -0
- package/tokens/src/themes/light/components/Sheet.json +22 -0
- package/tokens/src/themes/light/components/Stepper.json +34 -0
- package/tokens/src/themes/light/components/Sticky.json +18 -0
- package/tokens/src/themes/light/components/Tab.json +62 -0
- package/tokens/src/themes/light/components/Toast.json +33 -0
- package/tokens/src/themes/light/components/Tooltip.json +30 -0
- package/tokens/src/themes/light/components/general/body.json +8 -0
- package/tokens/src/themes/light/components/general/headings.json +7 -0
- package/tokens/src/themes/light/components/general/hr.json +15 -0
- package/tokens/src/themes/light/components/general/input.json +18 -0
- package/tokens/src/themes/light/components/general/link.json +109 -0
- package/tokens/src/themes/light/components/general/list.json +38 -0
- package/tokens/src/themes/light/components/general/text.json +12 -0
- package/tokens/src/themes/light/global/color.json +1661 -0
- package/tokens/src/themes/light/global/elevation.json +201 -0
- package/tokens/src/themes/light/global/other.json +4 -0
- package/tokens/style-dictionary.js +229 -0
- package/tokens/utils.js +210 -0
- package/dist/ActionRow/_variables.scss +0 -2
- package/dist/Alert/_variables.scss +0 -24
- package/dist/Annotation/_variables.scss +0 -18
- package/dist/Avatar/_variables.scss +0 -10
- package/dist/AvatarButton/_variables.scss +0 -3
- package/dist/Badge/_variables.scss +0 -16
- package/dist/Breadcrumb/_variables.scss +0 -27
- package/dist/Bubble/_variables.scss +0 -8
- package/dist/Button/_variables.scss +0 -52
- package/dist/Button/deprecated/index.js +0 -149
- package/dist/Button/deprecated/index.js.map +0 -1
- package/dist/Button/index.d.ts +0 -35
- package/dist/Card/_variables.scss +0 -55
- package/dist/Carousel/_variables.scss +0 -27
- package/dist/CheckBox/index.js +0 -102
- package/dist/CheckBox/index.js.map +0 -1
- package/dist/CheckBoxGroup/index.js +0 -15
- package/dist/CheckBoxGroup/index.js.map +0 -1
- package/dist/Chip/_variables.scss +0 -28
- package/dist/ChipCarousel/_variables.scss +0 -3
- package/dist/CloseButton/_variables.scss +0 -6
- package/dist/Code/_variables.scss +0 -17
- package/dist/Collapsible/_variables.scss +0 -12
- package/dist/ColorPicker/_variables.scss +0 -2
- package/dist/Container/_variables.scss +0 -5
- package/dist/DataTable/_variables.scss +0 -11
- package/dist/Dropdown/_variables.scss +0 -33
- package/dist/Dropdown/deprecated/DropdownButton.js +0 -44
- package/dist/Dropdown/deprecated/DropdownButton.js.map +0 -1
- package/dist/Dropdown/deprecated/DropdownItem.js +0 -33
- package/dist/Dropdown/deprecated/DropdownItem.js.map +0 -1
- package/dist/Dropdown/deprecated/DropdownMenu.js +0 -46
- package/dist/Dropdown/deprecated/DropdownMenu.js.map +0 -1
- package/dist/Dropdown/deprecated/index.js +0 -241
- package/dist/Dropdown/deprecated/index.js.map +0 -1
- package/dist/Dropzone/_variables.scss +0 -9
- package/dist/Fieldset/index.js +0 -117
- package/dist/Fieldset/index.js.map +0 -1
- package/dist/Fieldset/index.scss +0 -12
- package/dist/Form/_variables.scss +0 -267
- package/dist/Hyperlink/index.d.ts +0 -24
- package/dist/Icon/_variables.scss +0 -7
- package/dist/Image/_variables.scss +0 -13
- package/dist/Input/index.js +0 -166
- package/dist/Input/index.js.map +0 -1
- package/dist/InputSelect/index.js +0 -105
- package/dist/InputSelect/index.js.map +0 -1
- package/dist/InputText/index.js +0 -45
- package/dist/InputText/index.js.map +0 -1
- package/dist/ListBox/index.js +0 -148
- package/dist/ListBox/index.js.map +0 -1
- package/dist/ListBoxOption/index.js +0 -94
- package/dist/ListBoxOption/index.js.map +0 -1
- package/dist/Menu/_variables.scss +0 -24
- package/dist/Modal/_variables.scss +0 -50
- package/dist/Modal/index.js +0 -292
- package/dist/Modal/index.js.map +0 -1
- package/dist/Nav/_variables.scss +0 -58
- package/dist/Navbar/_variables.scss +0 -40
- package/dist/OverflowScroll/_variables.scss +0 -5
- package/dist/OverflowScroll/index.scss +0 -1
- package/dist/Pagination/_variables.scss +0 -19
- package/dist/Popover/_variables.scss +0 -36
- package/dist/ProductTour/_variables.scss +0 -15
- package/dist/ProgressBar/_variables.scss +0 -23
- package/dist/RadioButtonGroup/index.js +0 -188
- package/dist/RadioButtonGroup/index.js.map +0 -1
- package/dist/SearchField/_variables.scss +0 -14
- package/dist/SelectableBox/_variables.scss +0 -5
- package/dist/Spinner/_variables.scss +0 -9
- package/dist/Stack/_variables.scss +0 -1
- package/dist/StatusAlert/index.js +0 -168
- package/dist/StatusAlert/index.js.map +0 -1
- package/dist/Stepper/_variables.scss +0 -18
- package/dist/Sticky/_variables.scss +0 -3
- package/dist/Table/_variables.scss +0 -34
- package/dist/Table/index.js +0 -267
- package/dist/Table/index.js.map +0 -1
- package/dist/Table/index.scss +0 -12
- package/dist/Tabs/_variables.scss +0 -24
- package/dist/Tabs/deprecated/Tabs.scss +0 -3
- package/dist/Tabs/deprecated/index.js +0 -123
- package/dist/Tabs/deprecated/index.js.map +0 -1
- package/dist/TextArea/index.js +0 -44
- package/dist/TextArea/index.js.map +0 -1
- package/dist/Toast/_variables.scss +0 -19
- package/dist/Tooltip/_variables.scss +0 -21
- package/dist/ValidationFormGroup/index.js +0 -106
- package/dist/ValidationFormGroup/index.js.map +0 -1
- package/dist/paragon.css +0 -45
- package/dist/setupTest.d.ts +0 -2
- package/dist/setupTest.js.map +0 -1
- package/dist/utils/types/bootstrap.d.ts +0 -39
- package/dist/utils/types/bootstrap.js +0 -2
- package/dist/utils/types/bootstrap.js.map +0 -1
- package/scss/core/_grid.scss +0 -21
- package/scss/core/_variables.scss +0 -875
- package/scss/core/core.scss +0 -21
- package/src/ActionRow/_variables.scss +0 -2
- package/src/Alert/_variables.scss +0 -24
- package/src/Annotation/_variables.scss +0 -18
- package/src/Avatar/_variables.scss +0 -10
- package/src/AvatarButton/_variables.scss +0 -3
- package/src/Badge/_variables.scss +0 -16
- package/src/Breadcrumb/_variables.scss +0 -27
- package/src/Bubble/_variables.scss +0 -8
- package/src/Button/_variables.scss +0 -52
- package/src/Button/deprecated/Button.test.jsx +0 -34
- package/src/Button/deprecated/index.jsx +0 -145
- package/src/Button/index.tsx +0 -159
- package/src/Card/_variables.scss +0 -55
- package/src/Carousel/_variables.scss +0 -27
- package/src/CheckBox/CheckBox.test.jsx +0 -65
- package/src/CheckBox/README.md +0 -93
- package/src/CheckBox/index.jsx +0 -80
- package/src/CheckBoxGroup/CheckBoxGroup.test.jsx +0 -33
- package/src/CheckBoxGroup/README.md +0 -35
- package/src/CheckBoxGroup/index.jsx +0 -19
- package/src/Chip/_variables.scss +0 -28
- package/src/ChipCarousel/_variables.scss +0 -3
- package/src/CloseButton/_variables.scss +0 -6
- package/src/Code/_variables.scss +0 -17
- package/src/Collapsible/_variables.scss +0 -12
- package/src/ColorPicker/_variables.scss +0 -2
- package/src/Container/_variables.scss +0 -5
- package/src/DataTable/_variables.scss +0 -11
- package/src/Dropdown/_variables.scss +0 -33
- package/src/Dropdown/deprecated/Dropdown.test.jsx +0 -238
- package/src/Dropdown/deprecated/DropdownButton.jsx +0 -52
- package/src/Dropdown/deprecated/DropdownItem.jsx +0 -34
- package/src/Dropdown/deprecated/DropdownMenu.jsx +0 -50
- package/src/Dropdown/deprecated/__snapshots__/Dropdown.test.jsx.snap +0 -229
- package/src/Dropdown/deprecated/index.jsx +0 -222
- package/src/Dropzone/_variables.scss +0 -9
- package/src/Fieldset/Fieldset.test.jsx +0 -101
- package/src/Fieldset/README.md +0 -146
- package/src/Fieldset/index.jsx +0 -107
- package/src/Fieldset/index.scss +0 -12
- package/src/Form/_variables.scss +0 -267
- package/src/Icon/_variables.scss +0 -7
- package/src/Image/_variables.scss +0 -13
- package/src/Input/README.md +0 -74
- package/src/Input/__snapshots__/input.test.jsx.snap +0 -53
- package/src/Input/index.jsx +0 -151
- package/src/Input/input.test.jsx +0 -85
- package/src/InputSelect/README.md +0 -136
- package/src/InputSelect/index.jsx +0 -92
- package/src/InputText/InputText.test.jsx +0 -74
- package/src/InputText/README.md +0 -293
- package/src/InputText/index.jsx +0 -49
- package/src/ListBox/ListBox.test.jsx +0 -161
- package/src/ListBox/README.md +0 -185
- package/src/ListBox/index.jsx +0 -115
- package/src/ListBoxOption/ListBoxOption.test.jsx +0 -154
- package/src/ListBoxOption/index.jsx +0 -78
- package/src/Menu/_variables.scss +0 -24
- package/src/Modal/README.md +0 -148
- package/src/Modal/_variables.scss +0 -50
- package/src/Modal/index.jsx +0 -319
- package/src/Modal/tests/Modal.test.jsx +0 -261
- package/src/Nav/_variables.scss +0 -58
- package/src/Navbar/_variables.scss +0 -40
- package/src/OverflowScroll/_variables.scss +0 -5
- package/src/OverflowScroll/index.scss +0 -1
- package/src/Pagination/_variables.scss +0 -19
- package/src/Popover/_variables.scss +0 -36
- package/src/ProductTour/_variables.scss +0 -15
- package/src/ProgressBar/_variables.scss +0 -23
- package/src/RadioButtonGroup/README.md +0 -50
- package/src/RadioButtonGroup/RadioButtonGroup.test.jsx +0 -127
- package/src/RadioButtonGroup/index.jsx +0 -185
- package/src/SearchField/_variables.scss +0 -14
- package/src/SelectableBox/_variables.scss +0 -5
- package/src/Spinner/_variables.scss +0 -9
- package/src/Stack/_variables.scss +0 -1
- package/src/StatusAlert/README.md +0 -149
- package/src/StatusAlert/StatusAlert.test.jsx +0 -150
- package/src/StatusAlert/index.jsx +0 -144
- package/src/Stepper/_variables.scss +0 -18
- package/src/Sticky/_variables.scss +0 -3
- package/src/Table/README.md +0 -506
- package/src/Table/Table.test.jsx +0 -367
- package/src/Table/_variables.scss +0 -34
- package/src/Table/index.jsx +0 -264
- package/src/Table/index.scss +0 -12
- package/src/Tabs/_variables.scss +0 -24
- package/src/Tabs/deprecated/Tabs.scss +0 -3
- package/src/Tabs/deprecated/Tabs.test.jsx +0 -50
- package/src/Tabs/deprecated/index.jsx +0 -117
- package/src/TextArea/README.md +0 -63
- package/src/TextArea/index.jsx +0 -48
- package/src/Toast/_variables.scss +0 -19
- package/src/Tooltip/_variables.scss +0 -21
- package/src/ValidationFormGroup/README.md +0 -116
- package/src/ValidationFormGroup/ValidationFormGroup.test.jsx +0 -146
- package/src/ValidationFormGroup/__snapshots__/ValidationFormGroup.test.jsx.snap +0 -161
- package/src/ValidationFormGroup/index.jsx +0 -114
- package/src/utils/types/bootstrap.test.tsx +0 -86
- package/src/utils/types/bootstrap.ts +0 -43
- /package/src/Button/{ButtonGroup.test.tsx → ButtonGroup.test.jsx} +0 -0
- /package/src/Button/{ButtonToolbar.test.tsx → ButtonToolbar.test.jsx} +0 -0
- /package/src/Button/__snapshots__/{ButtonGroup.test.tsx.snap → ButtonGroup.test.jsx.snap} +0 -0
- /package/src/Button/__snapshots__/{ButtonToolbar.test.tsx.snap → ButtonToolbar.test.jsx.snap} +0 -0
- /package/{scss → styles/scss}/core/_exports.module.scss +0 -0
- /package/{scss → styles/scss}/core/_typography.scss +0 -0
|
@@ -0,0 +1,1661 @@
|
|
|
1
|
+
{
|
|
2
|
+
"color": {
|
|
3
|
+
"white": { "value": "#FFFFFF", "type": "color", "source": "$white", "description": "White color." },
|
|
4
|
+
"black": { "value": "#000000", "type": "color", "source": "$black", "description": "Black color." },
|
|
5
|
+
"blue": { "value": "#23419F", "type": "color", "source": "$blue", "description": "Blue color." },
|
|
6
|
+
"red": { "value": "#C32D3A", "type": "color", "source": "$red", "description": "Red color." },
|
|
7
|
+
"green": { "value": "#178253", "type": "color", "source": "$green", "description": "Green color." },
|
|
8
|
+
"yellow": { "value": "#FFD900", "type": "color", "source": "$yellow", "description": "Yellow color." },
|
|
9
|
+
"teal": { "value": "#006DAA", "type": "color", "source": "$teal", "description": "Teal color." },
|
|
10
|
+
"accent": {
|
|
11
|
+
"a": {
|
|
12
|
+
"value": "#00BBF9",
|
|
13
|
+
"type": "color",
|
|
14
|
+
"source": "$accent-a",
|
|
15
|
+
"description": "Accent-A color.",
|
|
16
|
+
"actions": {
|
|
17
|
+
"default": "{color.action.default.accent.a}"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"b": {
|
|
21
|
+
"value": "#FFEE88",
|
|
22
|
+
"type": "color",
|
|
23
|
+
"source": "$accent-b",
|
|
24
|
+
"description": "Accent-B color.",
|
|
25
|
+
"actions": {
|
|
26
|
+
"default": "{color.action.default.accent.b}"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"gray": {
|
|
31
|
+
"base": {
|
|
32
|
+
"value": "#707070",
|
|
33
|
+
"type": "color",
|
|
34
|
+
"source": "$gray",
|
|
35
|
+
"description": "Basic gray color.",
|
|
36
|
+
"actions": {
|
|
37
|
+
"default": "{color.action.default.gray.base}"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"100": {
|
|
41
|
+
"value": "#EBEBEB",
|
|
42
|
+
"type": "color",
|
|
43
|
+
"source": "$gray-100",
|
|
44
|
+
"description": "Gray color of level 100.",
|
|
45
|
+
"actions": {
|
|
46
|
+
"default": "{color.action.default.gray.100}"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"200": {
|
|
50
|
+
"value": "#CCCCCC",
|
|
51
|
+
"type": "color",
|
|
52
|
+
"source": "$gray-200",
|
|
53
|
+
"description": "Gray color of level 200.",
|
|
54
|
+
"actions": {
|
|
55
|
+
"default": "{color.action.default.gray.200}"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"300": {
|
|
59
|
+
"value": "#ADADAD",
|
|
60
|
+
"type": "color",
|
|
61
|
+
"source": "$gray-300",
|
|
62
|
+
"description": "Gray color of level 300.",
|
|
63
|
+
"actions": {
|
|
64
|
+
"default": "{color.action.default.gray.300}"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"400": {
|
|
68
|
+
"value": "#8F8F8F",
|
|
69
|
+
"type": "color",
|
|
70
|
+
"source": "$gray-400",
|
|
71
|
+
"description": "Gray color of level 400.",
|
|
72
|
+
"actions": {
|
|
73
|
+
"default": "{color.action.default.gray.400}"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"500": {
|
|
77
|
+
"value": "{color.gray.base}",
|
|
78
|
+
"type": "color",
|
|
79
|
+
"source": "$gray-500",
|
|
80
|
+
"description": "Gray color of level 500.",
|
|
81
|
+
"actions": {
|
|
82
|
+
"default": "{color.action.default.gray.500}"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"600": {
|
|
86
|
+
"value": "#5C5C5C",
|
|
87
|
+
"type": "color",
|
|
88
|
+
"source": "$gray-600",
|
|
89
|
+
"description": "Gray color of level 600.",
|
|
90
|
+
"actions": {
|
|
91
|
+
"default": "{color.action.default.gray.600}"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"700": {
|
|
95
|
+
"value": "#454545",
|
|
96
|
+
"type": "color",
|
|
97
|
+
"source": "$gray-700",
|
|
98
|
+
"description": "Gray color of level 700.",
|
|
99
|
+
"actions": {
|
|
100
|
+
"default": "{color.action.default.gray.700}"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"800": {
|
|
104
|
+
"value": "#333333",
|
|
105
|
+
"type": "color",
|
|
106
|
+
"source": "$gray-800",
|
|
107
|
+
"description": "Gray color of level 800.",
|
|
108
|
+
"actions": {
|
|
109
|
+
"default": "{color.action.default.gray.800}"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"900": {
|
|
113
|
+
"value": "#212529",
|
|
114
|
+
"type": "color",
|
|
115
|
+
"source": "$gray-900",
|
|
116
|
+
"description": "Gray color of level 900.",
|
|
117
|
+
"actions": {
|
|
118
|
+
"default": "{color.action.default.gray.900}"
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"primary": {
|
|
123
|
+
"base": {
|
|
124
|
+
"value": "#0A3055",
|
|
125
|
+
"type": "color",
|
|
126
|
+
"source": "$primary",
|
|
127
|
+
"description": "Basic primary color.",
|
|
128
|
+
"actions": {
|
|
129
|
+
"default": "{color.action.default.primary.base}"
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"100": {
|
|
133
|
+
"value": "{color.primary.base}",
|
|
134
|
+
"type": "color",
|
|
135
|
+
"source": "$primary-100",
|
|
136
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.94" }],
|
|
137
|
+
"description": "Primary color of level 100.",
|
|
138
|
+
"actions": {
|
|
139
|
+
"default": "{color.action.default.primary.100}"
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"200": {
|
|
143
|
+
"value": "{color.primary.base}",
|
|
144
|
+
"type": "color",
|
|
145
|
+
"source": "$primary-200",
|
|
146
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.75" }],
|
|
147
|
+
"description": "Primary color of level 200.",
|
|
148
|
+
"actions": {
|
|
149
|
+
"default": "{color.action.default.primary.200}"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"300": {
|
|
153
|
+
"value": "{color.primary.base}",
|
|
154
|
+
"type": "color",
|
|
155
|
+
"source": "$primary-300",
|
|
156
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.50" }],
|
|
157
|
+
"description": "Primary color of level 300.",
|
|
158
|
+
"actions": {
|
|
159
|
+
"default": "{color.action.default.primary.300}"
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"400": {
|
|
163
|
+
"value": "{color.primary.base}",
|
|
164
|
+
"type": "color",
|
|
165
|
+
"source": "$primary-400",
|
|
166
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.25" }],
|
|
167
|
+
"description": "Primary color of level 400.",
|
|
168
|
+
"actions": {
|
|
169
|
+
"default": "{color.action.default.primary.400}"
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
"500": {
|
|
173
|
+
"value": "{color.primary.base}",
|
|
174
|
+
"type": "color",
|
|
175
|
+
"source": "$primary-500",
|
|
176
|
+
"description": "Primary color of level 500.",
|
|
177
|
+
"actions": {
|
|
178
|
+
"default": "{color.action.default.primary.500}"
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
"600": {
|
|
182
|
+
"value": "{color.primary.base}",
|
|
183
|
+
"type": "color",
|
|
184
|
+
"source": "$primary-600",
|
|
185
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.10" }],
|
|
186
|
+
"description": "Primary color of level 600.",
|
|
187
|
+
"actions": {
|
|
188
|
+
"default": "{color.action.default.primary.600}"
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
"700": {
|
|
192
|
+
"value": "{color.primary.base}",
|
|
193
|
+
"type": "color",
|
|
194
|
+
"source": "$primary-700",
|
|
195
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.20" }],
|
|
196
|
+
"description": "Primary color of level 700.",
|
|
197
|
+
"actions": {
|
|
198
|
+
"default": "{color.action.default.primary.700}"
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
"800": {
|
|
202
|
+
"value": "{color.primary.base}",
|
|
203
|
+
"type": "color",
|
|
204
|
+
"source": "$primary-800",
|
|
205
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.25" }],
|
|
206
|
+
"description": "Primary color of level 800.",
|
|
207
|
+
"actions": {
|
|
208
|
+
"default": "{color.action.default.primary.800}"
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"900": {
|
|
212
|
+
"value": "{color.primary.base}",
|
|
213
|
+
"type": "color",
|
|
214
|
+
"source": "$primary-900",
|
|
215
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.30" }],
|
|
216
|
+
"description": "Primary color of level 900.",
|
|
217
|
+
"actions": {
|
|
218
|
+
"default": "{color.action.default.primary.900}"
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
"secondary": {
|
|
223
|
+
"base": {
|
|
224
|
+
"value": "{color.gray.700}",
|
|
225
|
+
"type": "color",
|
|
226
|
+
"source": "$secondary",
|
|
227
|
+
"description": "Basic secondary color.",
|
|
228
|
+
"actions": {
|
|
229
|
+
"default": "{color.action.default.secondary.base}"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
"100": {
|
|
233
|
+
"value": "{color.secondary.base}",
|
|
234
|
+
"type": "color",
|
|
235
|
+
"source": "$secondary-100",
|
|
236
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.94" }],
|
|
237
|
+
"description": "Secondary color of level 100.",
|
|
238
|
+
"actions": {
|
|
239
|
+
"default": "{color.action.default.secondary.100}"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
"200": {
|
|
243
|
+
"value": "{color.secondary.base}",
|
|
244
|
+
"type": "color",
|
|
245
|
+
"source": "$secondary-200",
|
|
246
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.75" }],
|
|
247
|
+
"description": "Secondary color of level 200.",
|
|
248
|
+
"actions": {
|
|
249
|
+
"default": "{color.action.default.secondary.200}"
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
"300": {
|
|
253
|
+
"value": "{color.secondary.base}",
|
|
254
|
+
"type": "color",
|
|
255
|
+
"source": "$secondary-300",
|
|
256
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.50" }],
|
|
257
|
+
"description": "Secondary color of level 300.",
|
|
258
|
+
"actions": {
|
|
259
|
+
"default": "{color.action.default.secondary.300}"
|
|
260
|
+
}
|
|
261
|
+
},
|
|
262
|
+
"400": {
|
|
263
|
+
"value": "{color.secondary.base}",
|
|
264
|
+
"type": "color",
|
|
265
|
+
"source": "$secondary-400",
|
|
266
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.25" }],
|
|
267
|
+
"description": "Secondary color of level 400.",
|
|
268
|
+
"actions": {
|
|
269
|
+
"default": "{color.action.default.secondary.400}"
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
"500": {
|
|
273
|
+
"value": "{color.secondary.base}",
|
|
274
|
+
"type": "color",
|
|
275
|
+
"source": "$secondary-500",
|
|
276
|
+
"description": "Secondary color of level 500.",
|
|
277
|
+
"actions": {
|
|
278
|
+
"default": "{color.action.default.secondary.500}"
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
"600": {
|
|
282
|
+
"value": "{color.secondary.base}",
|
|
283
|
+
"type": "color",
|
|
284
|
+
"source": "$secondary-600",
|
|
285
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.10" }],
|
|
286
|
+
"description": "Secondary color of level 600.",
|
|
287
|
+
"actions": {
|
|
288
|
+
"default": "{color.action.default.secondary.600}"
|
|
289
|
+
}
|
|
290
|
+
},
|
|
291
|
+
"700": {
|
|
292
|
+
"value": "{color.secondary.base}",
|
|
293
|
+
"type": "color",
|
|
294
|
+
"source": "$secondary-700",
|
|
295
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.20" }],
|
|
296
|
+
"description": "Secondary color of level 700.",
|
|
297
|
+
"actions": {
|
|
298
|
+
"default": "{color.action.default.secondary.700}"
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
"800": {
|
|
302
|
+
"value": "{color.secondary.base}",
|
|
303
|
+
"type": "color",
|
|
304
|
+
"source": "$secondary-800",
|
|
305
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.25" }],
|
|
306
|
+
"description": "Secondary color of level 800.",
|
|
307
|
+
"actions": {
|
|
308
|
+
"default": "{color.action.default.secondary.800}"
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
"900": {
|
|
312
|
+
"value": "{color.secondary.base}",
|
|
313
|
+
"type": "color",
|
|
314
|
+
"source": "$secondary-900",
|
|
315
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.30" }],
|
|
316
|
+
"description": "Secondary color of level 900.",
|
|
317
|
+
"actions": {
|
|
318
|
+
"default": "{color.action.default.secondary.900}"
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
},
|
|
322
|
+
"brand": {
|
|
323
|
+
"base": {
|
|
324
|
+
"value": "#9D0054",
|
|
325
|
+
"type": "color",
|
|
326
|
+
"source": "$brand",
|
|
327
|
+
"description": "Basic brand color.",
|
|
328
|
+
"actions": {
|
|
329
|
+
"default": "{color.action.default.brand.base}"
|
|
330
|
+
}
|
|
331
|
+
},
|
|
332
|
+
"100": {
|
|
333
|
+
"value": "{color.brand.base}",
|
|
334
|
+
"type": "color",
|
|
335
|
+
"source": "$brand-100",
|
|
336
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.94" }],
|
|
337
|
+
"description": "Brand color of level 100.",
|
|
338
|
+
"actions": {
|
|
339
|
+
"default": "{color.action.default.brand.100}"
|
|
340
|
+
}
|
|
341
|
+
},
|
|
342
|
+
"200": {
|
|
343
|
+
"value": "{color.brand.base}",
|
|
344
|
+
"type": "color",
|
|
345
|
+
"source": "$brand-200",
|
|
346
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.75" }],
|
|
347
|
+
"description": "Brand color of level 200.",
|
|
348
|
+
"actions": {
|
|
349
|
+
"default": "{color.action.default.brand.200}"
|
|
350
|
+
}
|
|
351
|
+
},
|
|
352
|
+
"300": {
|
|
353
|
+
"value": "{color.brand.base}",
|
|
354
|
+
"type": "color",
|
|
355
|
+
"source": "$brand-300",
|
|
356
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.50" }],
|
|
357
|
+
"description": "Brand color of level 300.",
|
|
358
|
+
"actions": {
|
|
359
|
+
"default": "{color.action.default.brand.300}"
|
|
360
|
+
}
|
|
361
|
+
},
|
|
362
|
+
"400": {
|
|
363
|
+
"value": "{color.brand.base}",
|
|
364
|
+
"type": "color",
|
|
365
|
+
"source": "$brand-400",
|
|
366
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.25" }],
|
|
367
|
+
"description": "Brand color of level 400.",
|
|
368
|
+
"actions": {
|
|
369
|
+
"default": "{color.action.default.brand.400}"
|
|
370
|
+
}
|
|
371
|
+
},
|
|
372
|
+
"500": {
|
|
373
|
+
"value": "{color.brand.base}",
|
|
374
|
+
"type": "color",
|
|
375
|
+
"source": "$brand-500",
|
|
376
|
+
"description": "Brand color of level 500.",
|
|
377
|
+
"actions": {
|
|
378
|
+
"default": "{color.action.default.brand.500}"
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
"600": {
|
|
382
|
+
"value": "{color.brand.base}",
|
|
383
|
+
"type": "color",
|
|
384
|
+
"source": "$brand-600",
|
|
385
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.10" }],
|
|
386
|
+
"description": "Brand color of level 600.",
|
|
387
|
+
"actions": {
|
|
388
|
+
"default": "{color.action.default.brand.600}"
|
|
389
|
+
}
|
|
390
|
+
},
|
|
391
|
+
"700": {
|
|
392
|
+
"value": "{color.brand.base}",
|
|
393
|
+
"type": "color",
|
|
394
|
+
"source": "$brand-700",
|
|
395
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.20" }],
|
|
396
|
+
"description": "Brand color of level 700.",
|
|
397
|
+
"actions": {
|
|
398
|
+
"default": "{color.action.default.brand.700}"
|
|
399
|
+
}
|
|
400
|
+
},
|
|
401
|
+
"800": {
|
|
402
|
+
"value": "{color.brand.base}",
|
|
403
|
+
"type": "color",
|
|
404
|
+
"source": "$brand-800",
|
|
405
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.25" }],
|
|
406
|
+
"description": "Brand color of level 800.",
|
|
407
|
+
"actions": {
|
|
408
|
+
"default": "{color.action.default.brand.800}"
|
|
409
|
+
}
|
|
410
|
+
},
|
|
411
|
+
"900": {
|
|
412
|
+
"value": "{color.brand.base}",
|
|
413
|
+
"type": "color",
|
|
414
|
+
"source": "$brand-900",
|
|
415
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.30" }],
|
|
416
|
+
"description": "Brand color of level 900.",
|
|
417
|
+
"actions": {
|
|
418
|
+
"default": "{color.action.default.brand.900}"
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
},
|
|
422
|
+
"success": {
|
|
423
|
+
"base": {
|
|
424
|
+
"value": "{color.green}",
|
|
425
|
+
"type": "color",
|
|
426
|
+
"source": "$success",
|
|
427
|
+
"description": "Basic success color.",
|
|
428
|
+
"actions": {
|
|
429
|
+
"default": "{color.action.default.success.base}"
|
|
430
|
+
}
|
|
431
|
+
},
|
|
432
|
+
"100": {
|
|
433
|
+
"value": "{color.success.base}",
|
|
434
|
+
"type": "color",
|
|
435
|
+
"source": "$success-100",
|
|
436
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.94" }],
|
|
437
|
+
"description": "Success color of level 100.",
|
|
438
|
+
"actions": {
|
|
439
|
+
"default": "{color.action.default.success.100}"
|
|
440
|
+
}
|
|
441
|
+
},
|
|
442
|
+
"200": {
|
|
443
|
+
"value": "{color.success.base}",
|
|
444
|
+
"type": "color",
|
|
445
|
+
"source": "$success-200",
|
|
446
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.75" }],
|
|
447
|
+
"description": "Success color of level 200.",
|
|
448
|
+
"actions": {
|
|
449
|
+
"default": "{color.action.default.success.200}"
|
|
450
|
+
}
|
|
451
|
+
},
|
|
452
|
+
"300": {
|
|
453
|
+
"value": "{color.success.base}",
|
|
454
|
+
"type": "color",
|
|
455
|
+
"source": "$success-300",
|
|
456
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.50" }],
|
|
457
|
+
"description": "Success color of level 300.",
|
|
458
|
+
"actions": {
|
|
459
|
+
"default": "{color.action.default.success.300}"
|
|
460
|
+
}
|
|
461
|
+
},
|
|
462
|
+
"400": {
|
|
463
|
+
"value": "{color.success.base}",
|
|
464
|
+
"type": "color",
|
|
465
|
+
"source": "$success-400",
|
|
466
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.25" }],
|
|
467
|
+
"description": "Success color of level 400.",
|
|
468
|
+
"actions": {
|
|
469
|
+
"default": "{color.action.default.success.400}"
|
|
470
|
+
}
|
|
471
|
+
},
|
|
472
|
+
"500": {
|
|
473
|
+
"value": "{color.success.base}",
|
|
474
|
+
"type": "color",
|
|
475
|
+
"source": "$success-500",
|
|
476
|
+
"description": "Success color of level 500.",
|
|
477
|
+
"actions": {
|
|
478
|
+
"default": "{color.action.default.success.500}"
|
|
479
|
+
}
|
|
480
|
+
},
|
|
481
|
+
"600": {
|
|
482
|
+
"value": "{color.success.base}",
|
|
483
|
+
"type": "color",
|
|
484
|
+
"source": "$success-600",
|
|
485
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.10" }],
|
|
486
|
+
"description": "Success color of level 600.",
|
|
487
|
+
"actions": {
|
|
488
|
+
"default": "{color.action.default.success.600}"
|
|
489
|
+
}
|
|
490
|
+
},
|
|
491
|
+
"700": {
|
|
492
|
+
"value": "{color.success.base}",
|
|
493
|
+
"type": "color",
|
|
494
|
+
"source": "$success-700",
|
|
495
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.20" }],
|
|
496
|
+
"description": "Success color of level 700.",
|
|
497
|
+
"actions": {
|
|
498
|
+
"default": "{color.action.default.success.700}"
|
|
499
|
+
}
|
|
500
|
+
},
|
|
501
|
+
"800": {
|
|
502
|
+
"value": "{color.success.base}",
|
|
503
|
+
"type": "color",
|
|
504
|
+
"source": "$success-800",
|
|
505
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.25" }],
|
|
506
|
+
"description": "Success color of level 800.",
|
|
507
|
+
"actions": {
|
|
508
|
+
"default": "{color.action.default.success.800}"
|
|
509
|
+
}
|
|
510
|
+
},
|
|
511
|
+
"900": {
|
|
512
|
+
"value": "{color.success.base}",
|
|
513
|
+
"type": "color",
|
|
514
|
+
"source": "$success-900",
|
|
515
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.30" }],
|
|
516
|
+
"description": "Success color of level 900.",
|
|
517
|
+
"actions": {
|
|
518
|
+
"default": "{color.action.default.success.900}"
|
|
519
|
+
}
|
|
520
|
+
}
|
|
521
|
+
},
|
|
522
|
+
"info": {
|
|
523
|
+
"base": {
|
|
524
|
+
"value": "{color.teal}",
|
|
525
|
+
"type": "color",
|
|
526
|
+
"source": "$info",
|
|
527
|
+
"description": "Basic info color.",
|
|
528
|
+
"actions": {
|
|
529
|
+
"default": "{color.action.default.info.base}"
|
|
530
|
+
}
|
|
531
|
+
},
|
|
532
|
+
"100": {
|
|
533
|
+
"value": "{color.info.base}",
|
|
534
|
+
"type": "color",
|
|
535
|
+
"source": "$info-100",
|
|
536
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.94" }],
|
|
537
|
+
"description": "Info color of level 100.",
|
|
538
|
+
"actions": {
|
|
539
|
+
"default": "{color.action.default.info.100}"
|
|
540
|
+
}
|
|
541
|
+
},
|
|
542
|
+
"200": {
|
|
543
|
+
"value": "{color.info.base}",
|
|
544
|
+
"type": "color",
|
|
545
|
+
"source": "$info-200",
|
|
546
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.75" }],
|
|
547
|
+
"description": "Info color of level 200.",
|
|
548
|
+
"actions": {
|
|
549
|
+
"default": "{color.action.default.info.200}"
|
|
550
|
+
}
|
|
551
|
+
},
|
|
552
|
+
"300": {
|
|
553
|
+
"value": "{color.info.base}",
|
|
554
|
+
"type": "color",
|
|
555
|
+
"source": "$info-300",
|
|
556
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.50" }],
|
|
557
|
+
"description": "Info color of level 300.",
|
|
558
|
+
"actions": {
|
|
559
|
+
"default": "{color.action.default.info.300}"
|
|
560
|
+
}
|
|
561
|
+
},
|
|
562
|
+
"400": {
|
|
563
|
+
"value": "{color.info.base}",
|
|
564
|
+
"type": "color",
|
|
565
|
+
"source": "$info-400",
|
|
566
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.25" }],
|
|
567
|
+
"description": "Info color of level 400.",
|
|
568
|
+
"actions": {
|
|
569
|
+
"default": "{color.action.default.info.400}"
|
|
570
|
+
}
|
|
571
|
+
},
|
|
572
|
+
"500": {
|
|
573
|
+
"value": "{color.info.base}",
|
|
574
|
+
"type": "color",
|
|
575
|
+
"source": "$info-500",
|
|
576
|
+
"description": "Info color of level 500.",
|
|
577
|
+
"actions": {
|
|
578
|
+
"default": "{color.action.default.info.500}"
|
|
579
|
+
}
|
|
580
|
+
},
|
|
581
|
+
"600": {
|
|
582
|
+
"value": "{color.info.base}",
|
|
583
|
+
"type": "color",
|
|
584
|
+
"source": "$info-600",
|
|
585
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.10" }],
|
|
586
|
+
"description": "Info color of level 600.",
|
|
587
|
+
"actions": {
|
|
588
|
+
"default": "{color.action.default.info.600}"
|
|
589
|
+
}
|
|
590
|
+
},
|
|
591
|
+
"700": {
|
|
592
|
+
"value": "{color.info.base}",
|
|
593
|
+
"type": "color",
|
|
594
|
+
"source": "$info-700",
|
|
595
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.20" }],
|
|
596
|
+
"description": "Info color of level 700.",
|
|
597
|
+
"actions": {
|
|
598
|
+
"default": "{color.action.default.info.700}"
|
|
599
|
+
}
|
|
600
|
+
},
|
|
601
|
+
"800": {
|
|
602
|
+
"value": "{color.info.base}",
|
|
603
|
+
"type": "color",
|
|
604
|
+
"source": "$info-800",
|
|
605
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.25" }],
|
|
606
|
+
"description": "Info color of level 800.",
|
|
607
|
+
"actions": {
|
|
608
|
+
"default": "{color.action.default.info.800}"
|
|
609
|
+
}
|
|
610
|
+
},
|
|
611
|
+
"900": {
|
|
612
|
+
"value": "{color.info.base}",
|
|
613
|
+
"type": "color",
|
|
614
|
+
"source": "$info-900",
|
|
615
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.30" }],
|
|
616
|
+
"description": "Info color of level 900.",
|
|
617
|
+
"actions": {
|
|
618
|
+
"default": "{color.action.default.info.900}"
|
|
619
|
+
}
|
|
620
|
+
}
|
|
621
|
+
},
|
|
622
|
+
"warning": {
|
|
623
|
+
"base": {
|
|
624
|
+
"value": "{color.yellow}",
|
|
625
|
+
"type": "color",
|
|
626
|
+
"source": "$warning",
|
|
627
|
+
"description": "Basic warning color.",
|
|
628
|
+
"actions": {
|
|
629
|
+
"default": "{color.action.default.warning.base}"
|
|
630
|
+
}
|
|
631
|
+
},
|
|
632
|
+
"100": {
|
|
633
|
+
"value": "{color.warning.base}",
|
|
634
|
+
"type": "color",
|
|
635
|
+
"source": "$warning-100",
|
|
636
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.94" }],
|
|
637
|
+
"description": "Warning color of level 100.",
|
|
638
|
+
"actions": {
|
|
639
|
+
"default": "{color.action.default.warning.100}"
|
|
640
|
+
}
|
|
641
|
+
},
|
|
642
|
+
"200": {
|
|
643
|
+
"value": "{color.warning.base}",
|
|
644
|
+
"type": "color",
|
|
645
|
+
"source": "$warning-200",
|
|
646
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.75" }],
|
|
647
|
+
"description": "Warning color of level 200.",
|
|
648
|
+
"actions": {
|
|
649
|
+
"default": "{color.action.default.warning.200}"
|
|
650
|
+
}
|
|
651
|
+
},
|
|
652
|
+
"300": {
|
|
653
|
+
"value": "{color.warning.base}",
|
|
654
|
+
"type": "color",
|
|
655
|
+
"source": "$warning-300",
|
|
656
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.50" }],
|
|
657
|
+
"description": "Warning color of level 300.",
|
|
658
|
+
"actions": {
|
|
659
|
+
"default": "{color.action.default.warning.300}"
|
|
660
|
+
}
|
|
661
|
+
},
|
|
662
|
+
"400": {
|
|
663
|
+
"value": "{color.warning.base}",
|
|
664
|
+
"type": "color",
|
|
665
|
+
"source": "$warning-400",
|
|
666
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.25" }],
|
|
667
|
+
"description": "Warning color of level 400.",
|
|
668
|
+
"actions": {
|
|
669
|
+
"default": "{color.action.default.warning.400}"
|
|
670
|
+
}
|
|
671
|
+
},
|
|
672
|
+
"500": {
|
|
673
|
+
"value": "{color.warning.base}",
|
|
674
|
+
"type": "color",
|
|
675
|
+
"source": "$warning-500",
|
|
676
|
+
"description": "Warning color of level 500.",
|
|
677
|
+
"actions": {
|
|
678
|
+
"default": "{color.action.default.warning.500}"
|
|
679
|
+
}
|
|
680
|
+
},
|
|
681
|
+
"600": {
|
|
682
|
+
"value": "{color.warning.base}",
|
|
683
|
+
"type": "color",
|
|
684
|
+
"source": "$warning-600",
|
|
685
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.10" }],
|
|
686
|
+
"description": "Warning color of level 600.",
|
|
687
|
+
"actions": {
|
|
688
|
+
"default": "{color.action.default.warning.600}"
|
|
689
|
+
}
|
|
690
|
+
},
|
|
691
|
+
"700": {
|
|
692
|
+
"value": "{color.warning.base}",
|
|
693
|
+
"type": "color",
|
|
694
|
+
"source": "$warning-700",
|
|
695
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.20" }],
|
|
696
|
+
"description": "Warning color of level 700.",
|
|
697
|
+
"actions": {
|
|
698
|
+
"default": "{color.action.default.warning.700}"
|
|
699
|
+
}
|
|
700
|
+
},
|
|
701
|
+
"800": {
|
|
702
|
+
"value": "{color.warning.base}",
|
|
703
|
+
"type": "color",
|
|
704
|
+
"source": "$warning-800",
|
|
705
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.25" }],
|
|
706
|
+
"description": "Warning color of level 800.",
|
|
707
|
+
"actions": {
|
|
708
|
+
"default": "{color.action.default.warning.800}"
|
|
709
|
+
}
|
|
710
|
+
},
|
|
711
|
+
"900": {
|
|
712
|
+
"value": "{color.warning.base}",
|
|
713
|
+
"type": "color",
|
|
714
|
+
"source": "$warning-900",
|
|
715
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.30" }],
|
|
716
|
+
"description": "Warning color of level 900.",
|
|
717
|
+
"actions": {
|
|
718
|
+
"default": "{color.action.default.warning.900}"
|
|
719
|
+
}
|
|
720
|
+
}
|
|
721
|
+
},
|
|
722
|
+
"danger": {
|
|
723
|
+
"base": {
|
|
724
|
+
"value": "{color.red}",
|
|
725
|
+
"type": "color",
|
|
726
|
+
"source": "$danger",
|
|
727
|
+
"description": "Basic danger color.",
|
|
728
|
+
"actions": {
|
|
729
|
+
"default": "{color.action.default.danger.base}"
|
|
730
|
+
}
|
|
731
|
+
},
|
|
732
|
+
"100": {
|
|
733
|
+
"value": "{color.danger.base}",
|
|
734
|
+
"type": "color",
|
|
735
|
+
"source": "$danger-100",
|
|
736
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.94" }],
|
|
737
|
+
"description": "Danger color of level 100.",
|
|
738
|
+
"actions": {
|
|
739
|
+
"default": "{color.action.default.danger.100}"
|
|
740
|
+
}
|
|
741
|
+
},
|
|
742
|
+
"200": {
|
|
743
|
+
"value": "{color.danger.base}",
|
|
744
|
+
"type": "color",
|
|
745
|
+
"source": "$danger-200",
|
|
746
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.75" }],
|
|
747
|
+
"description": "Danger color of level 200.",
|
|
748
|
+
"actions": {
|
|
749
|
+
"default": "{color.action.default.danger.200}"
|
|
750
|
+
}
|
|
751
|
+
},
|
|
752
|
+
"300": {
|
|
753
|
+
"value": "{color.danger.base}",
|
|
754
|
+
"type": "color",
|
|
755
|
+
"source": "$danger-300",
|
|
756
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.50" }],
|
|
757
|
+
"description": "Danger color of level 300.",
|
|
758
|
+
"actions": {
|
|
759
|
+
"default": "{color.action.default.danger.300}"
|
|
760
|
+
}
|
|
761
|
+
},
|
|
762
|
+
"400": {
|
|
763
|
+
"value": "{color.danger.base}",
|
|
764
|
+
"type": "color",
|
|
765
|
+
"source": "$danger-400",
|
|
766
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.25" }],
|
|
767
|
+
"description": "Danger color of level 400.",
|
|
768
|
+
"actions": {
|
|
769
|
+
"default": "{color.action.default.danger.400}"
|
|
770
|
+
}
|
|
771
|
+
},
|
|
772
|
+
"500": {
|
|
773
|
+
"value": "{color.danger.base}",
|
|
774
|
+
"type": "color",
|
|
775
|
+
"source": "$danger-500",
|
|
776
|
+
"description": "Danger color of level 500.",
|
|
777
|
+
"actions": {
|
|
778
|
+
"default": "{color.action.default.danger.500}"
|
|
779
|
+
}
|
|
780
|
+
},
|
|
781
|
+
"600": {
|
|
782
|
+
"value": "{color.danger.base}",
|
|
783
|
+
"type": "color",
|
|
784
|
+
"source": "$danger-600",
|
|
785
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.10" }],
|
|
786
|
+
"description": "Danger color of level 600.",
|
|
787
|
+
"actions": {
|
|
788
|
+
"default": "{color.action.default.danger.600}"
|
|
789
|
+
}
|
|
790
|
+
},
|
|
791
|
+
"700": {
|
|
792
|
+
"value": "{color.danger.base}",
|
|
793
|
+
"type": "color",
|
|
794
|
+
"source": "$danger-700",
|
|
795
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.20" }],
|
|
796
|
+
"description": "Danger color of level 700.",
|
|
797
|
+
"actions": {
|
|
798
|
+
"default": "{color.action.default.danger.700}"
|
|
799
|
+
}
|
|
800
|
+
},
|
|
801
|
+
"800": {
|
|
802
|
+
"value": "{color.danger.base}",
|
|
803
|
+
"type": "color",
|
|
804
|
+
"source": "$danger-800",
|
|
805
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.25" }],
|
|
806
|
+
"description": "Danger color of level 800.",
|
|
807
|
+
"actions": {
|
|
808
|
+
"default": "{color.action.default.danger.800}"
|
|
809
|
+
}
|
|
810
|
+
},
|
|
811
|
+
"900": {
|
|
812
|
+
"value": "{color.danger.base}",
|
|
813
|
+
"type": "color",
|
|
814
|
+
"source": "$danger-900",
|
|
815
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.30" }],
|
|
816
|
+
"description": "Danger color of level 900.",
|
|
817
|
+
"actions": {
|
|
818
|
+
"default": "{color.action.default.danger.900}"
|
|
819
|
+
}
|
|
820
|
+
}
|
|
821
|
+
},
|
|
822
|
+
"light": {
|
|
823
|
+
"base": {
|
|
824
|
+
"value": "#E1DDDB",
|
|
825
|
+
"type": "color",
|
|
826
|
+
"source": "$light",
|
|
827
|
+
"description": "Basic light color.",
|
|
828
|
+
"actions": {
|
|
829
|
+
"default": "{color.action.default.light.base}"
|
|
830
|
+
}
|
|
831
|
+
},
|
|
832
|
+
"100": {
|
|
833
|
+
"value": "{color.light.base}",
|
|
834
|
+
"type": "color",
|
|
835
|
+
"source": "$light-100",
|
|
836
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.94" }],
|
|
837
|
+
"description": "Light color of level 100.",
|
|
838
|
+
"actions": {
|
|
839
|
+
"default": "{color.action.default.light.100}"
|
|
840
|
+
}
|
|
841
|
+
},
|
|
842
|
+
"200": {
|
|
843
|
+
"value": "{color.light.base}",
|
|
844
|
+
"type": "color",
|
|
845
|
+
"source": "$light-200",
|
|
846
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.75" }],
|
|
847
|
+
"description": "Light color of level 200.",
|
|
848
|
+
"actions": {
|
|
849
|
+
"default": "{color.action.default.light.200}"
|
|
850
|
+
}
|
|
851
|
+
},
|
|
852
|
+
"300": {
|
|
853
|
+
"value": "{color.light.base}",
|
|
854
|
+
"type": "color",
|
|
855
|
+
"source": "$light-300",
|
|
856
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.50" }],
|
|
857
|
+
"description": "Light color of level 300.",
|
|
858
|
+
"actions": {
|
|
859
|
+
"default": "{color.action.default.light.300}"
|
|
860
|
+
}
|
|
861
|
+
},
|
|
862
|
+
"400": {
|
|
863
|
+
"value": "{color.light.base}",
|
|
864
|
+
"type": "color",
|
|
865
|
+
"source": "$light-400",
|
|
866
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.25" }],
|
|
867
|
+
"description": "Light color of level 400.",
|
|
868
|
+
"actions": {
|
|
869
|
+
"default": "{color.action.default.light.400}"
|
|
870
|
+
}
|
|
871
|
+
},
|
|
872
|
+
"500": {
|
|
873
|
+
"value": "{color.light.base}",
|
|
874
|
+
"type": "color",
|
|
875
|
+
"source": "$light-500",
|
|
876
|
+
"description": "Light color of level 500.",
|
|
877
|
+
"actions": {
|
|
878
|
+
"default": "{color.action.default.light.500}"
|
|
879
|
+
}
|
|
880
|
+
},
|
|
881
|
+
"600": {
|
|
882
|
+
"value": "{color.light.base}",
|
|
883
|
+
"type": "color",
|
|
884
|
+
"source": "$light-600",
|
|
885
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.10" }],
|
|
886
|
+
"description": "Light color of level 600.",
|
|
887
|
+
"actions": {
|
|
888
|
+
"default": "{color.action.default.light.600}"
|
|
889
|
+
}
|
|
890
|
+
},
|
|
891
|
+
"700": {
|
|
892
|
+
"value": "{color.light.base}",
|
|
893
|
+
"type": "color",
|
|
894
|
+
"source": "$light-700",
|
|
895
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.20" }],
|
|
896
|
+
"description": "Light color of level 700.",
|
|
897
|
+
"actions": {
|
|
898
|
+
"default": "{color.action.default.light.700}"
|
|
899
|
+
}
|
|
900
|
+
},
|
|
901
|
+
"800": {
|
|
902
|
+
"value": "{color.light.base}",
|
|
903
|
+
"type": "color",
|
|
904
|
+
"source": "$light-800",
|
|
905
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.25" }],
|
|
906
|
+
"description": "Light color of level 800.",
|
|
907
|
+
"actions": {
|
|
908
|
+
"default": "{color.action.default.light.800}"
|
|
909
|
+
}
|
|
910
|
+
},
|
|
911
|
+
"900": {
|
|
912
|
+
"value": "{color.light.base}",
|
|
913
|
+
"type": "color",
|
|
914
|
+
"source": "$light-900",
|
|
915
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.30" }],
|
|
916
|
+
"description": "Light color of level 900.",
|
|
917
|
+
"actions": {
|
|
918
|
+
"default": "{color.action.default.light.900}"
|
|
919
|
+
}
|
|
920
|
+
}
|
|
921
|
+
},
|
|
922
|
+
"dark": {
|
|
923
|
+
"base": {
|
|
924
|
+
"value": "#273F2F",
|
|
925
|
+
"type": "color",
|
|
926
|
+
"source": "$dark",
|
|
927
|
+
"description": "Basic dark color.",
|
|
928
|
+
"actions": {
|
|
929
|
+
"default": "{color.action.default.dark.base}"
|
|
930
|
+
}
|
|
931
|
+
},
|
|
932
|
+
"100": {
|
|
933
|
+
"value": "{color.dark.base}",
|
|
934
|
+
"type": "color",
|
|
935
|
+
"source": "$dark-100",
|
|
936
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.94" }],
|
|
937
|
+
"description": "Dark color of level 100.",
|
|
938
|
+
"actions": {
|
|
939
|
+
"default": "{color.action.default.dark.100}"
|
|
940
|
+
}
|
|
941
|
+
},
|
|
942
|
+
"200": {
|
|
943
|
+
"value": "{color.dark.base}",
|
|
944
|
+
"type": "color",
|
|
945
|
+
"source": "$dark-200",
|
|
946
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.75" }],
|
|
947
|
+
"description": "Dark color of level 200.",
|
|
948
|
+
"actions": {
|
|
949
|
+
"default": "{color.action.default.dark.200}"
|
|
950
|
+
}
|
|
951
|
+
},
|
|
952
|
+
"300": {
|
|
953
|
+
"value": "{color.dark.base}",
|
|
954
|
+
"type": "color",
|
|
955
|
+
"source": "$dark-300",
|
|
956
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.50" }],
|
|
957
|
+
"description": "Dark color of level 300.",
|
|
958
|
+
"actions": {
|
|
959
|
+
"default": "{color.action.default.dark.300}"
|
|
960
|
+
}
|
|
961
|
+
},
|
|
962
|
+
"400": {
|
|
963
|
+
"value": "{color.dark.base}",
|
|
964
|
+
"type": "color",
|
|
965
|
+
"source": "$dark-400",
|
|
966
|
+
"modify": [{ "type": "mix", "otherColor": "white", "amount": "0.25" }],
|
|
967
|
+
"description": "Dark color of level 400.",
|
|
968
|
+
"actions": {
|
|
969
|
+
"default": "{color.action.default.dark.400}"
|
|
970
|
+
}
|
|
971
|
+
},
|
|
972
|
+
"500": {
|
|
973
|
+
"value": "{color.dark.base}",
|
|
974
|
+
"type": "color",
|
|
975
|
+
"source": "$dark-500",
|
|
976
|
+
"description": "Dark color of level 500.",
|
|
977
|
+
"actions": {
|
|
978
|
+
"default": "{color.action.default.dark.500}"
|
|
979
|
+
}
|
|
980
|
+
},
|
|
981
|
+
"600": {
|
|
982
|
+
"value": "{color.dark.base}",
|
|
983
|
+
"type": "color",
|
|
984
|
+
"source": "$dark-600",
|
|
985
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.10" }],
|
|
986
|
+
"description": "Dark color of level 600.",
|
|
987
|
+
"actions": {
|
|
988
|
+
"default": "{color.action.default.dark.600}"
|
|
989
|
+
}
|
|
990
|
+
},
|
|
991
|
+
"700": {
|
|
992
|
+
"value": "{color.dark.base}",
|
|
993
|
+
"type": "color",
|
|
994
|
+
"source": "$dark-700",
|
|
995
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.20" }],
|
|
996
|
+
"description": "Info color of level 700.",
|
|
997
|
+
"actions": {
|
|
998
|
+
"default": "{color.action.default.dark.700}"
|
|
999
|
+
}
|
|
1000
|
+
},
|
|
1001
|
+
"800": {
|
|
1002
|
+
"value": "{color.dark.base}",
|
|
1003
|
+
"type": "color",
|
|
1004
|
+
"source": "$dark-800",
|
|
1005
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.25" }],
|
|
1006
|
+
"description": "Dark color of level 800.",
|
|
1007
|
+
"actions": {
|
|
1008
|
+
"default": "{color.action.default.dark.800}"
|
|
1009
|
+
}
|
|
1010
|
+
},
|
|
1011
|
+
"900": {
|
|
1012
|
+
"value": "{color.dark.base}",
|
|
1013
|
+
"type": "color",
|
|
1014
|
+
"source": "$dark-900",
|
|
1015
|
+
"modify": [{ "type": "mix", "otherColor": "black", "amount": "0.30" }],
|
|
1016
|
+
"description": "Dark color of level 900.",
|
|
1017
|
+
"actions": {
|
|
1018
|
+
"default": "{color.action.default.dark.900}"
|
|
1019
|
+
}
|
|
1020
|
+
}
|
|
1021
|
+
},
|
|
1022
|
+
"action": {
|
|
1023
|
+
"default": {
|
|
1024
|
+
"gray": {
|
|
1025
|
+
"base": {
|
|
1026
|
+
"value": "{color.gray.base}",
|
|
1027
|
+
"type": "color",
|
|
1028
|
+
"source": "$action-default-gray-base",
|
|
1029
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1030
|
+
},
|
|
1031
|
+
"100": {
|
|
1032
|
+
"value": "{color.gray.100}",
|
|
1033
|
+
"type": "color",
|
|
1034
|
+
"source": "$action-default-gray-100",
|
|
1035
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1036
|
+
},
|
|
1037
|
+
"200": {
|
|
1038
|
+
"value": "{color.gray.200}",
|
|
1039
|
+
"type": "color",
|
|
1040
|
+
"source": "$action-default-gray-200",
|
|
1041
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1042
|
+
},
|
|
1043
|
+
"300": {
|
|
1044
|
+
"value": "{color.gray.300}",
|
|
1045
|
+
"type": "color",
|
|
1046
|
+
"source": "$action-default-gray-300",
|
|
1047
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1048
|
+
},
|
|
1049
|
+
"400": {
|
|
1050
|
+
"value": "{color.gray.400}",
|
|
1051
|
+
"type": "color",
|
|
1052
|
+
"source": "$action-default-gray-400",
|
|
1053
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1054
|
+
},
|
|
1055
|
+
"500": {
|
|
1056
|
+
"value": "{color.gray.500}",
|
|
1057
|
+
"type": "color",
|
|
1058
|
+
"source": "$action-default-gray-500",
|
|
1059
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1060
|
+
},
|
|
1061
|
+
"600": {
|
|
1062
|
+
"value": "{color.gray.600}",
|
|
1063
|
+
"type": "color",
|
|
1064
|
+
"source": "$action-default-gray-600",
|
|
1065
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1066
|
+
},
|
|
1067
|
+
"700": {
|
|
1068
|
+
"value": "{color.gray.700}",
|
|
1069
|
+
"type": "color",
|
|
1070
|
+
"source": "$action-default-gray-700",
|
|
1071
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1072
|
+
},
|
|
1073
|
+
"800": {
|
|
1074
|
+
"value": "{color.gray.800}",
|
|
1075
|
+
"type": "color",
|
|
1076
|
+
"source": "$action-default-gray-800",
|
|
1077
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1078
|
+
},
|
|
1079
|
+
"900": {
|
|
1080
|
+
"value": "{color.gray.900}",
|
|
1081
|
+
"type": "color",
|
|
1082
|
+
"source": "$action-default-gray-900",
|
|
1083
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1084
|
+
}
|
|
1085
|
+
},
|
|
1086
|
+
"primary": {
|
|
1087
|
+
"base": {
|
|
1088
|
+
"value": "{color.primary.base}",
|
|
1089
|
+
"type": "color",
|
|
1090
|
+
"source": "$action-default-primary-base",
|
|
1091
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1092
|
+
},
|
|
1093
|
+
"100": {
|
|
1094
|
+
"value": "{color.primary.100}",
|
|
1095
|
+
"type": "color",
|
|
1096
|
+
"source": "$action-default-primary-100",
|
|
1097
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1098
|
+
},
|
|
1099
|
+
"200": {
|
|
1100
|
+
"value": "{color.primary.200}",
|
|
1101
|
+
"type": "color",
|
|
1102
|
+
"source": "$action-default-primary-200",
|
|
1103
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1104
|
+
},
|
|
1105
|
+
"300": {
|
|
1106
|
+
"value": "{color.primary.300}",
|
|
1107
|
+
"type": "color",
|
|
1108
|
+
"source": "$action-default-primary-300",
|
|
1109
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1110
|
+
},
|
|
1111
|
+
"400": {
|
|
1112
|
+
"value": "{color.primary.400}",
|
|
1113
|
+
"type": "color",
|
|
1114
|
+
"source": "$action-default-primary-400",
|
|
1115
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1116
|
+
},
|
|
1117
|
+
"500": {
|
|
1118
|
+
"value": "{color.primary.500}",
|
|
1119
|
+
"type": "color",
|
|
1120
|
+
"source": "$action-default-primary-500",
|
|
1121
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1122
|
+
},
|
|
1123
|
+
"600": {
|
|
1124
|
+
"value": "{color.primary.600}",
|
|
1125
|
+
"type": "color",
|
|
1126
|
+
"source": "$action-default-primary-600",
|
|
1127
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1128
|
+
},
|
|
1129
|
+
"700": {
|
|
1130
|
+
"value": "{color.primary.700}",
|
|
1131
|
+
"type": "color",
|
|
1132
|
+
"source": "$action-default-primary-700",
|
|
1133
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1134
|
+
},
|
|
1135
|
+
"800": {
|
|
1136
|
+
"value": "{color.primary.800}",
|
|
1137
|
+
"type": "color",
|
|
1138
|
+
"source": "$action-default-primary-800",
|
|
1139
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1140
|
+
},
|
|
1141
|
+
"900": {
|
|
1142
|
+
"value": "{color.primary.900}",
|
|
1143
|
+
"type": "color",
|
|
1144
|
+
"source": "$action-default-primary-900",
|
|
1145
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1146
|
+
}
|
|
1147
|
+
},
|
|
1148
|
+
"secondary": {
|
|
1149
|
+
"base": {
|
|
1150
|
+
"value": "{color.secondary.base}",
|
|
1151
|
+
"type": "color",
|
|
1152
|
+
"source": "$action-default-secondary-base",
|
|
1153
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1154
|
+
},
|
|
1155
|
+
"100": {
|
|
1156
|
+
"value": "{color.secondary.100}",
|
|
1157
|
+
"type": "color",
|
|
1158
|
+
"source": "$action-default-secondary-100",
|
|
1159
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1160
|
+
},
|
|
1161
|
+
"200": {
|
|
1162
|
+
"value": "{color.secondary.200}",
|
|
1163
|
+
"type": "color",
|
|
1164
|
+
"source": "$action-default-secondary-200",
|
|
1165
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1166
|
+
},
|
|
1167
|
+
"300": {
|
|
1168
|
+
"value": "{color.secondary.300}",
|
|
1169
|
+
"type": "color",
|
|
1170
|
+
"source": "$action-default-secondary-300",
|
|
1171
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1172
|
+
},
|
|
1173
|
+
"400": {
|
|
1174
|
+
"value": "{color.secondary.400}",
|
|
1175
|
+
"type": "color",
|
|
1176
|
+
"source": "$action-default-secondary-400",
|
|
1177
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1178
|
+
},
|
|
1179
|
+
"500": {
|
|
1180
|
+
"value": "{color.secondary.500}",
|
|
1181
|
+
"type": "color",
|
|
1182
|
+
"source": "$action-default-secondary-500",
|
|
1183
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1184
|
+
},
|
|
1185
|
+
"600": {
|
|
1186
|
+
"value": "{color.secondary.600}",
|
|
1187
|
+
"type": "color",
|
|
1188
|
+
"source": "$action-default-secondary-600",
|
|
1189
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1190
|
+
},
|
|
1191
|
+
"700": {
|
|
1192
|
+
"value": "{color.secondary.700}",
|
|
1193
|
+
"type": "color",
|
|
1194
|
+
"source": "$action-default-secondary-700",
|
|
1195
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1196
|
+
},
|
|
1197
|
+
"800": {
|
|
1198
|
+
"value": "{color.secondary.800}",
|
|
1199
|
+
"type": "color",
|
|
1200
|
+
"source": "$action-default-secondary-800",
|
|
1201
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1202
|
+
},
|
|
1203
|
+
"900": {
|
|
1204
|
+
"value": "{color.secondary.900}",
|
|
1205
|
+
"type": "color",
|
|
1206
|
+
"source": "$action-default-secondary-900",
|
|
1207
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1208
|
+
}
|
|
1209
|
+
},
|
|
1210
|
+
"brand": {
|
|
1211
|
+
"base": {
|
|
1212
|
+
"value": "{color.brand.base}",
|
|
1213
|
+
"type": "color",
|
|
1214
|
+
"source": "$action-default-brand-base",
|
|
1215
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1216
|
+
},
|
|
1217
|
+
"100": {
|
|
1218
|
+
"value": "{color.brand.100}",
|
|
1219
|
+
"type": "color",
|
|
1220
|
+
"source": "$action-default-brand-100",
|
|
1221
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1222
|
+
},
|
|
1223
|
+
"200": {
|
|
1224
|
+
"value": "{color.brand.200}",
|
|
1225
|
+
"type": "color",
|
|
1226
|
+
"source": "$action-default-brand-200",
|
|
1227
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1228
|
+
},
|
|
1229
|
+
"300": {
|
|
1230
|
+
"value": "{color.brand.300}",
|
|
1231
|
+
"type": "color",
|
|
1232
|
+
"source": "$action-default-brand-300",
|
|
1233
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1234
|
+
},
|
|
1235
|
+
"400": {
|
|
1236
|
+
"value": "{color.brand.400}",
|
|
1237
|
+
"type": "color",
|
|
1238
|
+
"source": "$action-default-brand-400",
|
|
1239
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1240
|
+
},
|
|
1241
|
+
"500": {
|
|
1242
|
+
"value": "{color.brand.500}",
|
|
1243
|
+
"type": "color",
|
|
1244
|
+
"source": "$action-default-brand-500",
|
|
1245
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1246
|
+
},
|
|
1247
|
+
"600": {
|
|
1248
|
+
"value": "{color.brand.600}",
|
|
1249
|
+
"type": "color",
|
|
1250
|
+
"source": "$action-default-brand-600",
|
|
1251
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1252
|
+
},
|
|
1253
|
+
"700": {
|
|
1254
|
+
"value": "{color.brand.700}",
|
|
1255
|
+
"type": "color",
|
|
1256
|
+
"source": "$action-default-brand-700",
|
|
1257
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1258
|
+
},
|
|
1259
|
+
"800": {
|
|
1260
|
+
"value": "{color.brand.800}",
|
|
1261
|
+
"type": "color",
|
|
1262
|
+
"source": "$action-default-brand-800",
|
|
1263
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1264
|
+
},
|
|
1265
|
+
"900": {
|
|
1266
|
+
"value": "{color.brand.900}",
|
|
1267
|
+
"type": "color",
|
|
1268
|
+
"source": "$action-default-brand-900",
|
|
1269
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1270
|
+
}
|
|
1271
|
+
},
|
|
1272
|
+
"success": {
|
|
1273
|
+
"base": {
|
|
1274
|
+
"value": "{color.success.base}",
|
|
1275
|
+
"type": "color",
|
|
1276
|
+
"source": "$action-default-success-base",
|
|
1277
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1278
|
+
},
|
|
1279
|
+
"100": {
|
|
1280
|
+
"value": "{color.success.100}",
|
|
1281
|
+
"type": "color",
|
|
1282
|
+
"source": "$action-default-success-100",
|
|
1283
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1284
|
+
},
|
|
1285
|
+
"200": {
|
|
1286
|
+
"value": "{color.success.200}",
|
|
1287
|
+
"type": "color",
|
|
1288
|
+
"source": "$action-default-success-200",
|
|
1289
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1290
|
+
},
|
|
1291
|
+
"300": {
|
|
1292
|
+
"value": "{color.success.300}",
|
|
1293
|
+
"type": "color",
|
|
1294
|
+
"source": "$action-default-success-300",
|
|
1295
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1296
|
+
},
|
|
1297
|
+
"400": {
|
|
1298
|
+
"value": "{color.success.400}",
|
|
1299
|
+
"type": "color",
|
|
1300
|
+
"source": "$action-default-success-400",
|
|
1301
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1302
|
+
},
|
|
1303
|
+
"500": {
|
|
1304
|
+
"value": "{color.success.500}",
|
|
1305
|
+
"type": "color",
|
|
1306
|
+
"source": "$action-default-success-500",
|
|
1307
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1308
|
+
},
|
|
1309
|
+
"600": {
|
|
1310
|
+
"value": "{color.success.600}",
|
|
1311
|
+
"type": "color",
|
|
1312
|
+
"source": "$action-default-success-600",
|
|
1313
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1314
|
+
},
|
|
1315
|
+
"700": {
|
|
1316
|
+
"value": "{color.success.700}",
|
|
1317
|
+
"type": "color",
|
|
1318
|
+
"source": "$action-default-success-700",
|
|
1319
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1320
|
+
},
|
|
1321
|
+
"800": {
|
|
1322
|
+
"value": "{color.success.800}",
|
|
1323
|
+
"type": "color",
|
|
1324
|
+
"source": "$action-default-success-800",
|
|
1325
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1326
|
+
},
|
|
1327
|
+
"900": {
|
|
1328
|
+
"value": "{color.success.900}",
|
|
1329
|
+
"type": "color",
|
|
1330
|
+
"source": "$action-default-success-900",
|
|
1331
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1332
|
+
}
|
|
1333
|
+
},
|
|
1334
|
+
"info": {
|
|
1335
|
+
"base": {
|
|
1336
|
+
"value": "{color.info.base}",
|
|
1337
|
+
"type": "color",
|
|
1338
|
+
"source": "$action-default-info-base",
|
|
1339
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1340
|
+
},
|
|
1341
|
+
"100": {
|
|
1342
|
+
"value": "{color.info.100}",
|
|
1343
|
+
"type": "color",
|
|
1344
|
+
"source": "$action-default-info-100",
|
|
1345
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1346
|
+
},
|
|
1347
|
+
"200": {
|
|
1348
|
+
"value": "{color.info.200}",
|
|
1349
|
+
"type": "color",
|
|
1350
|
+
"source": "$action-default-info-200",
|
|
1351
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1352
|
+
},
|
|
1353
|
+
"300": {
|
|
1354
|
+
"value": "{color.info.300}",
|
|
1355
|
+
"type": "color",
|
|
1356
|
+
"source": "$action-default-info-300",
|
|
1357
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1358
|
+
},
|
|
1359
|
+
"400": {
|
|
1360
|
+
"value": "{color.info.400}",
|
|
1361
|
+
"type": "color",
|
|
1362
|
+
"source": "$action-default-info-400",
|
|
1363
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1364
|
+
},
|
|
1365
|
+
"500": {
|
|
1366
|
+
"value": "{color.info.500}",
|
|
1367
|
+
"type": "color",
|
|
1368
|
+
"source": "$action-default-info-500",
|
|
1369
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1370
|
+
},
|
|
1371
|
+
"600": {
|
|
1372
|
+
"value": "{color.info.600}",
|
|
1373
|
+
"type": "color",
|
|
1374
|
+
"source": "$action-default-info-600",
|
|
1375
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1376
|
+
},
|
|
1377
|
+
"700": {
|
|
1378
|
+
"value": "{color.info.700}",
|
|
1379
|
+
"type": "color",
|
|
1380
|
+
"source": "$action-default-info-700",
|
|
1381
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1382
|
+
},
|
|
1383
|
+
"800": {
|
|
1384
|
+
"value": "{color.info.800}",
|
|
1385
|
+
"type": "color",
|
|
1386
|
+
"source": "$action-default-info-800",
|
|
1387
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1388
|
+
},
|
|
1389
|
+
"900": {
|
|
1390
|
+
"value": "{color.info.900}",
|
|
1391
|
+
"type": "color",
|
|
1392
|
+
"source": "$action-default-info-900",
|
|
1393
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1394
|
+
}
|
|
1395
|
+
},
|
|
1396
|
+
"warning": {
|
|
1397
|
+
"base": {
|
|
1398
|
+
"value": "{color.warning.base}",
|
|
1399
|
+
"type": "color",
|
|
1400
|
+
"source": "$action-default-warning-base",
|
|
1401
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1402
|
+
},
|
|
1403
|
+
"100": {
|
|
1404
|
+
"value": "{color.warning.100}",
|
|
1405
|
+
"type": "color",
|
|
1406
|
+
"source": "$action-default-warning-100",
|
|
1407
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1408
|
+
},
|
|
1409
|
+
"200": {
|
|
1410
|
+
"value": "{color.warning.200}",
|
|
1411
|
+
"type": "color",
|
|
1412
|
+
"source": "$action-default-warning-200",
|
|
1413
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1414
|
+
},
|
|
1415
|
+
"300": {
|
|
1416
|
+
"value": "{color.warning.300}",
|
|
1417
|
+
"type": "color",
|
|
1418
|
+
"source": "$action-default-warning-300",
|
|
1419
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1420
|
+
},
|
|
1421
|
+
"400": {
|
|
1422
|
+
"value": "{color.warning.400}",
|
|
1423
|
+
"type": "color",
|
|
1424
|
+
"source": "$action-default-warning-400",
|
|
1425
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1426
|
+
},
|
|
1427
|
+
"500": {
|
|
1428
|
+
"value": "{color.warning.500}",
|
|
1429
|
+
"type": "color",
|
|
1430
|
+
"source": "$action-default-warning-500",
|
|
1431
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1432
|
+
},
|
|
1433
|
+
"600": {
|
|
1434
|
+
"value": "{color.warning.600}",
|
|
1435
|
+
"type": "color",
|
|
1436
|
+
"source": "$action-default-warning-600",
|
|
1437
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1438
|
+
},
|
|
1439
|
+
"700": {
|
|
1440
|
+
"value": "{color.warning.700}",
|
|
1441
|
+
"type": "color",
|
|
1442
|
+
"source": "$action-default-warning-700",
|
|
1443
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1444
|
+
},
|
|
1445
|
+
"800": {
|
|
1446
|
+
"value": "{color.warning.800}",
|
|
1447
|
+
"type": "color",
|
|
1448
|
+
"source": "$action-default-warning-800",
|
|
1449
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1450
|
+
},
|
|
1451
|
+
"900": {
|
|
1452
|
+
"value": "{color.warning.900}",
|
|
1453
|
+
"type": "color",
|
|
1454
|
+
"source": "$action-default-warning-900",
|
|
1455
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1456
|
+
}
|
|
1457
|
+
},
|
|
1458
|
+
"danger": {
|
|
1459
|
+
"base": {
|
|
1460
|
+
"value": "{color.danger.base}",
|
|
1461
|
+
"type": "color",
|
|
1462
|
+
"source": "$action-default-danger-base",
|
|
1463
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1464
|
+
},
|
|
1465
|
+
"100": {
|
|
1466
|
+
"value": "{color.danger.100}",
|
|
1467
|
+
"type": "color",
|
|
1468
|
+
"source": "$action-default-danger-100",
|
|
1469
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1470
|
+
},
|
|
1471
|
+
"200": {
|
|
1472
|
+
"value": "{color.danger.200}",
|
|
1473
|
+
"type": "color",
|
|
1474
|
+
"source": "$action-default-danger-200",
|
|
1475
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1476
|
+
},
|
|
1477
|
+
"300": {
|
|
1478
|
+
"value": "{color.danger.300}",
|
|
1479
|
+
"type": "color",
|
|
1480
|
+
"source": "$action-default-danger-300",
|
|
1481
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1482
|
+
},
|
|
1483
|
+
"400": {
|
|
1484
|
+
"value": "{color.danger.400}",
|
|
1485
|
+
"type": "color",
|
|
1486
|
+
"source": "$action-default-danger-400",
|
|
1487
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1488
|
+
},
|
|
1489
|
+
"500": {
|
|
1490
|
+
"value": "{color.danger.500}",
|
|
1491
|
+
"type": "color",
|
|
1492
|
+
"source": "$action-default-danger-500",
|
|
1493
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1494
|
+
},
|
|
1495
|
+
"600": {
|
|
1496
|
+
"value": "{color.danger.600}",
|
|
1497
|
+
"type": "color",
|
|
1498
|
+
"source": "$action-default-danger-600",
|
|
1499
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1500
|
+
},
|
|
1501
|
+
"700": {
|
|
1502
|
+
"value": "{color.danger.700}",
|
|
1503
|
+
"type": "color",
|
|
1504
|
+
"source": "$action-default-danger-700",
|
|
1505
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1506
|
+
},
|
|
1507
|
+
"800": {
|
|
1508
|
+
"value": "{color.danger.800}",
|
|
1509
|
+
"type": "color",
|
|
1510
|
+
"source": "$action-default-danger-800",
|
|
1511
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1512
|
+
},
|
|
1513
|
+
"900": {
|
|
1514
|
+
"value": "{color.danger.900}",
|
|
1515
|
+
"type": "color",
|
|
1516
|
+
"source": "$action-default-danger-900",
|
|
1517
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1518
|
+
}
|
|
1519
|
+
},
|
|
1520
|
+
"light": {
|
|
1521
|
+
"base": {
|
|
1522
|
+
"value": "{color.light.base}",
|
|
1523
|
+
"type": "color",
|
|
1524
|
+
"source": "$action-default-light-base",
|
|
1525
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1526
|
+
},
|
|
1527
|
+
"100": {
|
|
1528
|
+
"value": "{color.light.100}",
|
|
1529
|
+
"type": "color",
|
|
1530
|
+
"source": "$action-default-light-100",
|
|
1531
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1532
|
+
},
|
|
1533
|
+
"200": {
|
|
1534
|
+
"value": "{color.light.200}",
|
|
1535
|
+
"type": "color",
|
|
1536
|
+
"source": "$action-default-light-200",
|
|
1537
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1538
|
+
},
|
|
1539
|
+
"300": {
|
|
1540
|
+
"value": "{color.light.300}",
|
|
1541
|
+
"type": "color",
|
|
1542
|
+
"source": "$action-default-light-300",
|
|
1543
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1544
|
+
},
|
|
1545
|
+
"400": {
|
|
1546
|
+
"value": "{color.light.400}",
|
|
1547
|
+
"type": "color",
|
|
1548
|
+
"source": "$action-default-light-400",
|
|
1549
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1550
|
+
},
|
|
1551
|
+
"500": {
|
|
1552
|
+
"value": "{color.light.500}",
|
|
1553
|
+
"type": "color",
|
|
1554
|
+
"source": "$action-default-light-500",
|
|
1555
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1556
|
+
},
|
|
1557
|
+
"600": {
|
|
1558
|
+
"value": "{color.light.600}",
|
|
1559
|
+
"type": "color",
|
|
1560
|
+
"source": "$action-default-light-600",
|
|
1561
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1562
|
+
},
|
|
1563
|
+
"700": {
|
|
1564
|
+
"value": "{color.light.700}",
|
|
1565
|
+
"type": "color",
|
|
1566
|
+
"source": "$action-default-light-700",
|
|
1567
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1568
|
+
},
|
|
1569
|
+
"800": {
|
|
1570
|
+
"value": "{color.light.800}",
|
|
1571
|
+
"type": "color",
|
|
1572
|
+
"source": "$action-default-light-800",
|
|
1573
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1574
|
+
},
|
|
1575
|
+
"900": {
|
|
1576
|
+
"value": "{color.light.900}",
|
|
1577
|
+
"type": "color",
|
|
1578
|
+
"source": "$action-default-light-900",
|
|
1579
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1580
|
+
}
|
|
1581
|
+
},
|
|
1582
|
+
"dark": {
|
|
1583
|
+
"base": {
|
|
1584
|
+
"value": "{color.dark.base}",
|
|
1585
|
+
"type": "color",
|
|
1586
|
+
"source": "$action-default-dark-base",
|
|
1587
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1588
|
+
},
|
|
1589
|
+
"100": {
|
|
1590
|
+
"value": "{color.dark.100}",
|
|
1591
|
+
"type": "color",
|
|
1592
|
+
"source": "$action-default-dark-100",
|
|
1593
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1594
|
+
},
|
|
1595
|
+
"200": {
|
|
1596
|
+
"value": "{color.dark.200}",
|
|
1597
|
+
"type": "color",
|
|
1598
|
+
"source": "$action-default-dark-200",
|
|
1599
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1600
|
+
},
|
|
1601
|
+
"300": {
|
|
1602
|
+
"value": "{color.dark.300}",
|
|
1603
|
+
"type": "color",
|
|
1604
|
+
"source": "$action-default-dark-300",
|
|
1605
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1606
|
+
},
|
|
1607
|
+
"400": {
|
|
1608
|
+
"value": "{color.dark.400}",
|
|
1609
|
+
"type": "color",
|
|
1610
|
+
"source": "$action-default-dark-400",
|
|
1611
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1612
|
+
},
|
|
1613
|
+
"500": {
|
|
1614
|
+
"value": "{color.dark.500}",
|
|
1615
|
+
"type": "color",
|
|
1616
|
+
"source": "$action-default-dark-500",
|
|
1617
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1618
|
+
},
|
|
1619
|
+
"600": {
|
|
1620
|
+
"value": "{color.dark.600}",
|
|
1621
|
+
"type": "color",
|
|
1622
|
+
"source": "$action-default-dark-600",
|
|
1623
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1624
|
+
},
|
|
1625
|
+
"700": {
|
|
1626
|
+
"value": "{color.dark.700}",
|
|
1627
|
+
"type": "color",
|
|
1628
|
+
"source": "$action-default-dark-700",
|
|
1629
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1630
|
+
},
|
|
1631
|
+
"800": {
|
|
1632
|
+
"value": "{color.dark.800}",
|
|
1633
|
+
"type": "color",
|
|
1634
|
+
"source": "$action-default-dark-800",
|
|
1635
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1636
|
+
},
|
|
1637
|
+
"900": {
|
|
1638
|
+
"value": "{color.dark.900}",
|
|
1639
|
+
"type": "color",
|
|
1640
|
+
"source": "$action-default-dark-900",
|
|
1641
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1642
|
+
}
|
|
1643
|
+
},
|
|
1644
|
+
"accent": {
|
|
1645
|
+
"a": {
|
|
1646
|
+
"value": "{color.accent.a}",
|
|
1647
|
+
"type": "color",
|
|
1648
|
+
"source": "$action-default-accent-a",
|
|
1649
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1650
|
+
},
|
|
1651
|
+
"b": {
|
|
1652
|
+
"value": "{color.accent.b}",
|
|
1653
|
+
"type": "color",
|
|
1654
|
+
"source": "$action-default-accent-b",
|
|
1655
|
+
"modify": [{ "type": "darken", "amount": "0.1" }]
|
|
1656
|
+
}
|
|
1657
|
+
}
|
|
1658
|
+
}
|
|
1659
|
+
}
|
|
1660
|
+
}
|
|
1661
|
+
}
|