@utilitywarehouse/hearth-react-native 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.storybook/preview.tsx +5 -0
- package/.storybook/prism-setup.ts +104 -0
- package/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-lint.log +1 -1
- package/CHANGELOG.md +20 -0
- package/build/components/Accordion/Accordion.d.ts +1 -1
- package/build/components/Accordion/Accordion.js +7 -7
- package/build/components/Accordion/Accordion.props.d.ts +2 -2
- package/build/components/Accordion/AccordionIcon.js +2 -2
- package/build/components/Accordion/AccordionItemRoot.js +2 -2
- package/build/components/Accordion/AccordionTrigger.js +4 -4
- package/build/components/Accordion/index.d.ts +1 -2
- package/build/components/Accordion/index.js +1 -2
- package/build/components/Alert/Alert.js +21 -21
- package/build/components/Alert/Alert.props.d.ts +3 -3
- package/build/components/Alert/AlertCloseButton.js +2 -2
- package/build/components/Alert/AlertIcon.js +5 -5
- package/build/components/Badge/Badge.context.d.ts +4 -0
- package/build/components/Badge/Badge.js +86 -27
- package/build/components/Badge/Badge.props.d.ts +2 -1
- package/build/components/Badge/BadgeIcon.js +102 -18
- package/build/components/Badge/BadgeText.js +102 -17
- package/build/components/BodyText/BodyText.js +2 -2
- package/build/components/BottomSheet/BottomSheet.d.ts +1 -1
- package/build/components/BottomSheet/BottomSheet.js +3 -3
- package/build/components/BottomSheet/BottomSheetHandle.js +1 -1
- package/build/components/BottomSheet/BottomSheetModal.js +1 -1
- package/build/components/BottomSheet/BottomSheetScrollView.js +3 -1
- package/build/components/BottomSheet/BottomSheetView.js +1 -1
- package/build/components/Button/Button.props.d.ts +7 -7
- package/build/components/Button/ButtonIcon.js +29 -29
- package/build/components/Button/ButtonRoot.js +79 -88
- package/build/components/Button/ButtonSpinner.js +28 -31
- package/build/components/Button/ButtonText.js +40 -26
- package/build/components/Card/Card.props.d.ts +1 -1
- package/build/components/Card/CardRoot.js +56 -56
- package/build/components/Checkbox/CheckboxIcon.js +3 -3
- package/build/components/Checkbox/CheckboxIndicator.js +3 -3
- package/build/components/Checkbox/CheckboxTileRoot.js +3 -3
- package/build/components/DetailText/DetailText.js +2 -2
- package/build/components/Divider/Divider.js +1 -1
- package/build/components/Heading/Heading.js +2 -2
- package/build/components/Heading/Heading.props.d.ts +3 -1
- package/build/components/Helper/HelperIcon.js +3 -3
- package/build/components/Helper/HelperText.js +4 -4
- package/build/components/IconButton/IconButtonIcon.js +29 -29
- package/build/components/IconButton/IconButtonRoot.js +94 -88
- package/build/components/IconButton/IconButtonSpinner.js +27 -30
- package/build/components/InlineLink/InlineLinkRoot.js +2 -2
- package/build/components/Input/Input.d.ts +9 -3
- package/build/components/Input/Input.js +13 -13
- package/build/components/Input/Input.props.d.ts +1 -0
- package/build/components/Input/InputField.d.ts +3 -1
- package/build/components/Input/InputField.js +9 -39
- package/build/components/Input/InputIcon.js +1 -1
- package/build/components/Input/InputRoot.js +9 -9
- package/build/components/Label/Label.js +1 -1
- package/build/components/Link/LinkRoot.js +2 -2
- package/build/components/List/List.d.ts +1 -1
- package/build/components/List/List.js +6 -4
- package/build/components/List/List.props.d.ts +9 -10
- package/build/components/List/ListItem/ListItemHelperText.js +1 -1
- package/build/components/List/ListItem/ListItemIcon.js +1 -1
- package/build/components/List/ListItem/ListItemRoot.js +15 -6
- package/build/components/List/ListItem/ListItemTrailingIcon.js +1 -1
- package/build/components/List/index.d.ts +0 -1
- package/build/components/List/index.js +0 -1
- package/build/components/Modal/Modal.d.ts +7 -0
- package/build/components/Modal/Modal.js +164 -0
- package/build/components/Modal/Modal.props.d.ts +24 -0
- package/build/components/Modal/Modal.web.d.ts +7 -0
- package/build/components/Modal/Modal.web.js +164 -0
- package/build/components/Modal/index.d.ts +2 -0
- package/build/components/Modal/index.js +1 -0
- package/build/components/Radio/RadioIndicator.js +2 -2
- package/build/components/Radio/RadioTileRoot.js +3 -3
- package/build/components/RadioCard/RadioCardIndicator.js +2 -2
- package/build/components/RadioCard/RadioCardRoot.js +3 -3
- package/build/components/SectionHeader/SectionHeader.d.ts +6 -0
- package/build/components/SectionHeader/SectionHeader.js +19 -0
- package/build/components/{List/ListHeading/ListHeading.props.d.ts → SectionHeader/SectionHeader.props.d.ts} +7 -9
- package/build/components/SectionHeader/SectionHeaderHeading.d.ts +6 -0
- package/build/components/SectionHeader/SectionHeaderHeading.js +7 -0
- package/build/components/SectionHeader/SectionHeaderHelperText.d.ts +6 -0
- package/build/components/{List/ListHeading/ListHeadingHelperText.js → SectionHeader/SectionHeaderHelperText.js} +5 -5
- package/build/components/{List/ListHeading/ListHeadingTextContent.d.ts → SectionHeader/SectionHeaderTextContent.d.ts} +2 -2
- package/build/components/{List/ListHeading/ListHeadingTextContent.js → SectionHeader/SectionHeaderTextContent.js} +4 -4
- package/build/components/SectionHeader/index.d.ts +4 -0
- package/build/components/SectionHeader/index.js +4 -0
- package/build/components/Select/Select.js +10 -10
- package/build/components/Select/SelectOption.js +6 -6
- package/build/components/Spinner/Spinner.web.js +3 -3
- package/build/components/Switch/Switch.js +10 -7
- package/build/components/Switch/Switch.web.js +10 -8
- package/build/components/Textarea/TextareaField.js +5 -5
- package/build/components/Textarea/TextareaRoot.js +9 -9
- package/build/components/ToggleButton/ToggleButtonIcon.js +3 -3
- package/build/components/ToggleButton/ToggleButtonRoot.js +9 -9
- package/build/components/ToggleButton/ToggleButtonText.js +2 -2
- package/build/components/ToggleButtonCard/ToggleButtonCardRoot.js +3 -3
- package/build/components/index.d.ts +5 -3
- package/build/components/index.js +5 -3
- package/build/core/themes.d.ts +1094 -178
- package/build/core/themes.js +2 -2
- package/build/tokens/color.d.ts +1002 -86
- package/build/tokens/color.js +501 -43
- package/build/tokens/components/dark/accordion.d.ts +0 -2
- package/build/tokens/components/dark/accordion.js +0 -2
- package/build/tokens/components/dark/alert.d.ts +0 -16
- package/build/tokens/components/dark/alert.js +0 -16
- package/build/tokens/components/dark/avatar.d.ts +19 -0
- package/build/tokens/components/dark/avatar.js +18 -0
- package/build/tokens/components/dark/badge.d.ts +7 -34
- package/build/tokens/components/dark/badge.js +7 -34
- package/build/tokens/components/dark/banner.d.ts +1 -10
- package/build/tokens/components/dark/banner.js +1 -10
- package/build/tokens/components/dark/bottom-navigation.d.ts +2 -7
- package/build/tokens/components/dark/bottom-navigation.js +2 -7
- package/build/tokens/components/dark/bottom-sheet.d.ts +1 -2
- package/build/tokens/components/dark/bottom-sheet.js +1 -2
- package/build/tokens/components/dark/breadcrumb.d.ts +0 -1
- package/build/tokens/components/dark/breadcrumb.js +0 -1
- package/build/tokens/components/dark/button.d.ts +0 -86
- package/build/tokens/components/dark/button.js +0 -86
- package/build/tokens/components/dark/card.d.ts +0 -28
- package/build/tokens/components/dark/card.js +0 -28
- package/build/tokens/components/dark/carousel-control.d.ts +0 -8
- package/build/tokens/components/dark/carousel-control.js +0 -8
- package/build/tokens/components/dark/checkbox.d.ts +1 -10
- package/build/tokens/components/dark/checkbox.js +1 -10
- package/build/tokens/components/dark/date-picker.d.ts +0 -12
- package/build/tokens/components/dark/date-picker.js +0 -12
- package/build/tokens/components/dark/description-list.d.ts +20 -0
- package/build/tokens/components/dark/description-list.js +19 -0
- package/build/tokens/components/dark/dialog.d.ts +0 -1
- package/build/tokens/components/dark/dialog.js +0 -1
- package/build/tokens/components/dark/divider.d.ts +4 -1
- package/build/tokens/components/dark/divider.js +4 -1
- package/build/tokens/components/dark/expandable-card.d.ts +11 -0
- package/build/tokens/components/dark/expandable-card.js +10 -0
- package/build/tokens/components/dark/icon-button.d.ts +5 -5
- package/build/tokens/components/dark/icon-button.js +5 -5
- package/build/tokens/components/dark/icon-container.d.ts +0 -17
- package/build/tokens/components/dark/icon-container.js +0 -17
- package/build/tokens/components/dark/index.d.ts +10 -4
- package/build/tokens/components/dark/index.js +10 -4
- package/build/tokens/components/dark/indicator-icon-button.d.ts +11 -0
- package/build/tokens/components/dark/indicator-icon-button.js +10 -0
- package/build/tokens/components/dark/inline-link.d.ts +1 -1
- package/build/tokens/components/dark/inline-link.js +1 -1
- package/build/tokens/components/dark/input.d.ts +1 -9
- package/build/tokens/components/dark/input.js +1 -9
- package/build/tokens/components/dark/link.d.ts +2 -2
- package/build/tokens/components/dark/link.js +2 -2
- package/build/tokens/components/dark/list.d.ts +20 -20
- package/build/tokens/components/dark/list.js +20 -20
- package/build/tokens/components/dark/menu.d.ts +0 -12
- package/build/tokens/components/dark/menu.js +0 -12
- package/build/tokens/components/dark/modal.d.ts +0 -1
- package/build/tokens/components/dark/modal.js +0 -1
- package/build/tokens/components/dark/navigation.d.ts +1 -6
- package/build/tokens/components/dark/navigation.js +1 -6
- package/build/tokens/components/dark/pagination.d.ts +12 -0
- package/build/tokens/components/dark/pagination.js +11 -0
- package/build/tokens/components/dark/parts.d.ts +14 -4
- package/build/tokens/components/dark/parts.js +14 -4
- package/build/tokens/components/dark/pill.d.ts +0 -10
- package/build/tokens/components/dark/pill.js +0 -10
- package/build/tokens/components/dark/progress-stepper.d.ts +0 -8
- package/build/tokens/components/dark/progress-stepper.js +0 -8
- package/build/tokens/components/dark/radio.d.ts +1 -8
- package/build/tokens/components/dark/radio.js +1 -8
- package/build/tokens/components/dark/{focus.d.ts → section-header.d.ts} +4 -2
- package/build/tokens/components/dark/{focus.js → section-header.js} +4 -2
- package/build/tokens/components/dark/segmented-control.d.ts +0 -8
- package/build/tokens/components/dark/segmented-control.js +0 -8
- package/build/tokens/components/dark/select.d.ts +0 -10
- package/build/tokens/components/dark/select.js +0 -10
- package/build/tokens/components/dark/spinner.d.ts +1 -1
- package/build/tokens/components/dark/spinner.js +1 -1
- package/build/tokens/components/dark/switch.d.ts +1 -11
- package/build/tokens/components/dark/switch.js +1 -11
- package/build/tokens/components/dark/table.d.ts +23 -0
- package/build/tokens/components/dark/table.js +22 -0
- package/build/tokens/components/dark/tabs.d.ts +24 -0
- package/build/tokens/components/dark/tabs.js +23 -0
- package/build/tokens/components/dark/toast.d.ts +10 -0
- package/build/tokens/components/dark/toast.js +9 -0
- package/build/tokens/components/dark/toggle-button.d.ts +0 -11
- package/build/tokens/components/dark/toggle-button.js +0 -11
- package/build/tokens/components/dark/tooltip.d.ts +12 -0
- package/build/tokens/components/dark/tooltip.js +11 -0
- package/build/tokens/components/dark/top-navigation.d.ts +0 -8
- package/build/tokens/components/dark/top-navigation.js +0 -8
- package/build/tokens/components/light/accordion.d.ts +0 -2
- package/build/tokens/components/light/accordion.js +0 -2
- package/build/tokens/components/light/alert.d.ts +0 -16
- package/build/tokens/components/light/alert.js +0 -16
- package/build/tokens/components/light/avatar.d.ts +19 -0
- package/build/tokens/components/light/avatar.js +18 -0
- package/build/tokens/components/light/badge.d.ts +7 -34
- package/build/tokens/components/light/badge.js +7 -34
- package/build/tokens/components/light/banner.d.ts +2 -11
- package/build/tokens/components/light/banner.js +2 -11
- package/build/tokens/components/light/bottom-navigation.d.ts +0 -5
- package/build/tokens/components/light/bottom-navigation.js +0 -5
- package/build/tokens/components/light/bottom-sheet.d.ts +1 -2
- package/build/tokens/components/light/bottom-sheet.js +1 -2
- package/build/tokens/components/light/breadcrumb.d.ts +0 -1
- package/build/tokens/components/light/breadcrumb.js +0 -1
- package/build/tokens/components/light/button.d.ts +0 -86
- package/build/tokens/components/light/button.js +0 -86
- package/build/tokens/components/light/card.d.ts +0 -28
- package/build/tokens/components/light/card.js +0 -28
- package/build/tokens/components/light/carousel-control.d.ts +0 -8
- package/build/tokens/components/light/carousel-control.js +0 -8
- package/build/tokens/components/light/checkbox.d.ts +0 -9
- package/build/tokens/components/light/checkbox.js +0 -9
- package/build/tokens/components/light/date-picker.d.ts +0 -12
- package/build/tokens/components/light/date-picker.js +0 -12
- package/build/tokens/components/light/description-list.d.ts +20 -0
- package/build/tokens/components/light/description-list.js +19 -0
- package/build/tokens/components/light/dialog.d.ts +0 -1
- package/build/tokens/components/light/dialog.js +0 -1
- package/build/tokens/components/light/divider.d.ts +4 -1
- package/build/tokens/components/light/divider.js +4 -1
- package/build/tokens/components/light/expandable-card.d.ts +11 -0
- package/build/tokens/components/light/expandable-card.js +10 -0
- package/build/tokens/components/light/icon-button.d.ts +5 -5
- package/build/tokens/components/light/icon-button.js +5 -5
- package/build/tokens/components/light/icon-container.d.ts +0 -17
- package/build/tokens/components/light/icon-container.js +0 -17
- package/build/tokens/components/light/index.d.ts +10 -4
- package/build/tokens/components/light/index.js +10 -4
- package/build/tokens/components/light/indicator-icon-button.d.ts +11 -0
- package/build/tokens/components/light/indicator-icon-button.js +10 -0
- package/build/tokens/components/light/input.d.ts +1 -9
- package/build/tokens/components/light/input.js +1 -9
- package/build/tokens/components/light/link.d.ts +2 -2
- package/build/tokens/components/light/link.js +2 -2
- package/build/tokens/components/light/list.d.ts +20 -20
- package/build/tokens/components/light/list.js +20 -20
- package/build/tokens/components/light/menu.d.ts +0 -12
- package/build/tokens/components/light/menu.js +0 -12
- package/build/tokens/components/light/modal.d.ts +0 -1
- package/build/tokens/components/light/modal.js +0 -1
- package/build/tokens/components/light/navigation.d.ts +1 -6
- package/build/tokens/components/light/navigation.js +1 -6
- package/build/tokens/components/light/pagination.d.ts +12 -0
- package/build/tokens/components/light/pagination.js +11 -0
- package/build/tokens/components/light/parts.d.ts +11 -1
- package/build/tokens/components/light/parts.js +11 -1
- package/build/tokens/components/light/pill.d.ts +0 -10
- package/build/tokens/components/light/pill.js +0 -10
- package/build/tokens/components/light/progress-stepper.d.ts +0 -8
- package/build/tokens/components/light/progress-stepper.js +0 -8
- package/build/tokens/components/light/radio.d.ts +0 -7
- package/build/tokens/components/light/radio.js +0 -7
- package/build/tokens/components/light/section-header.d.ts +10 -0
- package/build/tokens/components/light/section-header.js +9 -0
- package/build/tokens/components/light/segmented-control.d.ts +0 -8
- package/build/tokens/components/light/segmented-control.js +0 -8
- package/build/tokens/components/light/select.d.ts +0 -10
- package/build/tokens/components/light/select.js +0 -10
- package/build/tokens/components/light/switch.d.ts +1 -11
- package/build/tokens/components/light/switch.js +1 -11
- package/build/tokens/components/light/table.d.ts +23 -0
- package/build/tokens/components/light/table.js +22 -0
- package/build/tokens/components/light/tabs.d.ts +24 -0
- package/build/tokens/components/light/tabs.js +23 -0
- package/build/tokens/components/light/toast.d.ts +10 -0
- package/build/tokens/components/light/toast.js +9 -0
- package/build/tokens/components/light/toggle-button.d.ts +0 -11
- package/build/tokens/components/light/toggle-button.js +0 -11
- package/build/tokens/components/light/tooltip.d.ts +12 -0
- package/build/tokens/components/light/tooltip.js +11 -0
- package/build/tokens/components/light/top-navigation.d.ts +0 -8
- package/build/tokens/components/light/top-navigation.js +0 -8
- package/build/tokens/index.d.ts +1 -0
- package/build/tokens/index.js +1 -0
- package/build/tokens/semantic-dark.d.ts +240 -13
- package/build/tokens/semantic-dark.js +240 -13
- package/build/tokens/semantic-light.d.ts +240 -13
- package/build/tokens/semantic-light.js +240 -13
- package/build/tokens/{components/light/focus.d.ts → semantic.d.ts} +3 -2
- package/build/tokens/{components/light/focus.js → semantic.js} +3 -2
- package/build/types/values.d.ts +10 -6
- package/build/utils/coloursAsArray.d.ts +8 -0
- package/build/utils/coloursAsArray.js +37 -2
- package/build/utils/getFlattenedColorValue.d.ts +3 -1
- package/build/utils/hexWithOpacity.d.ts +2 -0
- package/build/utils/hexWithOpacity.js +15 -0
- package/build/utils/index.d.ts +2 -1
- package/build/utils/index.js +2 -1
- package/build/utils/styleUtils.js +33 -1
- package/docs/assets/modal-android.mp4 +0 -0
- package/docs/assets/modal-ios.mp4 +0 -0
- package/docs/assets/pigs.png +0 -0
- package/docs/components/AllComponents.web.tsx +39 -2
- package/docs/components/BadgeList.tsx +8 -8
- package/docs/components/ViewFigmaButton.tsx +3 -3
- package/docs/introduction.mdx +2 -2
- package/docs/llm-docs/unistyles-llms-full.txt +1 -1
- package/docs/theme-tokens.mdx +49 -26
- package/package.json +20 -17
- package/src/components/Accordion/Accordion.docs.mdx +25 -39
- package/src/components/Accordion/Accordion.props.ts +2 -2
- package/src/components/Accordion/Accordion.stories.tsx +10 -10
- package/src/components/Accordion/Accordion.tsx +14 -14
- package/src/components/Accordion/AccordionIcon.tsx +2 -2
- package/src/components/Accordion/AccordionItemRoot.tsx +3 -3
- package/src/components/Accordion/AccordionTrigger.tsx +4 -4
- package/src/components/Accordion/index.ts +3 -4
- package/src/components/Alert/Alert.docs.mdx +25 -25
- package/src/components/Alert/Alert.props.ts +3 -3
- package/src/components/Alert/Alert.stories.tsx +11 -11
- package/src/components/Alert/Alert.tsx +22 -22
- package/src/components/Alert/AlertCloseButton.tsx +3 -3
- package/src/components/Alert/AlertIcon.tsx +7 -7
- package/src/components/Badge/Badge.context.ts +2 -0
- package/src/components/Badge/Badge.docs.mdx +16 -15
- package/src/components/Badge/Badge.props.ts +13 -1
- package/src/components/Badge/Badge.stories.tsx +106 -48
- package/src/components/Badge/Badge.tsx +96 -29
- package/src/components/Badge/BadgeIcon.tsx +102 -18
- package/src/components/Badge/BadgeText.tsx +102 -17
- package/src/components/BodyText/BodyText.tsx +4 -4
- package/src/components/BottomSheet/BottomSheet.docs.mdx +23 -5
- package/src/components/BottomSheet/BottomSheet.stories.tsx +9 -9
- package/src/components/BottomSheet/BottomSheet.tsx +5 -5
- package/src/components/BottomSheet/BottomSheetHandle.tsx +1 -1
- package/src/components/BottomSheet/BottomSheetModal.tsx +1 -1
- package/src/components/BottomSheet/BottomSheetScrollView.tsx +4 -2
- package/src/components/BottomSheet/BottomSheetView.tsx +1 -1
- package/src/components/Box/Box.stories.tsx +3 -3
- package/src/components/Button/Button.docs.mdx +35 -35
- package/src/components/Button/Button.props.tsx +7 -7
- package/src/components/Button/Button.stories.tsx +16 -16
- package/src/components/Button/ButtonIcon.tsx +29 -29
- package/src/components/Button/ButtonRoot.tsx +79 -89
- package/src/components/Button/ButtonSpinner.tsx +30 -33
- package/src/components/Button/ButtonText.tsx +40 -26
- package/src/components/Card/Card.docs.mdx +22 -22
- package/src/components/Card/Card.props.ts +9 -9
- package/src/components/Card/Card.stories.tsx +34 -34
- package/src/components/Card/CardRoot.tsx +56 -56
- package/src/components/Checkbox/CheckboxIcon.tsx +4 -4
- package/src/components/Checkbox/CheckboxIndicator.tsx +3 -3
- package/src/components/Checkbox/CheckboxTileRoot.tsx +3 -3
- package/src/components/DetailText/DetailText.tsx +3 -3
- package/src/components/Divider/Divider.tsx +1 -1
- package/src/components/Heading/Heading.props.ts +3 -1
- package/src/components/Heading/Heading.tsx +2 -2
- package/src/components/Helper/HelperIcon.tsx +3 -3
- package/src/components/Helper/HelperText.tsx +4 -4
- package/src/components/Icon/Icon.stories.tsx +2 -2
- package/src/components/IconButton/IconButton.docs.mdx +21 -16
- package/src/components/IconButton/IconButton.figma.tsx +1 -1
- package/src/components/IconButton/IconButton.stories.tsx +14 -14
- package/src/components/IconButton/IconButtonIcon.tsx +29 -29
- package/src/components/IconButton/IconButtonRoot.tsx +94 -88
- package/src/components/IconButton/IconButtonSpinner.tsx +27 -30
- package/src/components/InlineLink/InlineLinkRoot.tsx +2 -2
- package/src/components/Input/Input.docs.mdx +16 -14
- package/src/components/Input/Input.props.ts +1 -0
- package/src/components/Input/Input.stories.tsx +5 -4
- package/src/components/Input/Input.tsx +15 -13
- package/src/components/Input/InputField.tsx +25 -52
- package/src/components/Input/InputIcon.tsx +1 -1
- package/src/components/Input/InputRoot.tsx +10 -10
- package/src/components/Label/Label.tsx +2 -2
- package/src/components/Link/LinkRoot.tsx +2 -2
- package/src/components/List/List.docs.mdx +35 -56
- package/src/components/List/List.props.ts +9 -10
- package/src/components/List/List.stories.tsx +8 -8
- package/src/components/List/List.tsx +25 -25
- package/src/components/List/ListItem/ListItemHelperText.tsx +1 -1
- package/src/components/List/ListItem/ListItemIcon.tsx +1 -1
- package/src/components/List/ListItem/ListItemRoot.tsx +15 -6
- package/src/components/List/ListItem/ListItemTrailingIcon.tsx +1 -1
- package/src/components/List/index.ts +0 -1
- package/src/components/Modal/Modal.docs.mdx +547 -0
- package/src/components/Modal/Modal.props.ts +26 -0
- package/src/components/Modal/Modal.stories.tsx +222 -0
- package/src/components/Modal/Modal.tsx +333 -0
- package/src/components/Modal/Modal.web.tsx +333 -0
- package/src/components/Modal/index.ts +2 -0
- package/src/components/Radio/RadioIndicator.tsx +2 -2
- package/src/components/Radio/RadioTileRoot.tsx +3 -3
- package/src/components/RadioCard/RadioCardIndicator.tsx +2 -2
- package/src/components/RadioCard/RadioCardRoot.tsx +3 -3
- package/src/components/{List/ListHeading/ListHeading.figma.tsx → SectionHeader/SectionHeader.figma.tsx} +3 -3
- package/src/components/{List/ListHeading/ListHeading.props.ts → SectionHeader/SectionHeader.props.ts} +7 -9
- package/src/components/SectionHeader/SectionHeader.stories.tsx +76 -0
- package/src/components/{List/ListHeading/ListHeading.tsx → SectionHeader/SectionHeader.tsx} +16 -19
- package/src/components/SectionHeader/SectionHeaderHeading.tsx +14 -0
- package/src/components/SectionHeader/SectionHeaderHelperText.tsx +21 -0
- package/src/components/{List/ListHeading/ListHeadingTextContent.tsx → SectionHeader/SectionHeaderTextContent.tsx} +4 -4
- package/src/components/SectionHeader/Sectionheader.docs.mdx +83 -0
- package/src/components/SectionHeader/index.ts +4 -0
- package/src/components/Select/Select.tsx +10 -10
- package/src/components/Select/SelectOption.tsx +7 -7
- package/src/components/Spinner/Spinner.tsx +3 -3
- package/src/components/Spinner/Spinner.web.tsx +12 -12
- package/src/components/Switch/Switch.tsx +10 -7
- package/src/components/Switch/Switch.web.tsx +10 -12
- package/src/components/Textarea/TextareaField.tsx +5 -5
- package/src/components/Textarea/TextareaRoot.tsx +10 -10
- package/src/components/ToggleButton/ToggleButtonIcon.tsx +3 -3
- package/src/components/ToggleButton/ToggleButtonRoot.tsx +11 -11
- package/src/components/ToggleButton/ToggleButtonText.tsx +2 -2
- package/src/components/ToggleButtonCard/ToggleButtonCardRoot.tsx +3 -3
- package/src/components/index.ts +7 -5
- package/src/core/themes.ts +2 -2
- package/src/tokens/color.ts +501 -43
- package/src/tokens/components/dark/accordion.ts +0 -2
- package/src/tokens/components/dark/alert.ts +0 -16
- package/src/tokens/components/dark/avatar.ts +19 -0
- package/src/tokens/components/dark/badge.ts +7 -34
- package/src/tokens/components/dark/banner.ts +1 -10
- package/src/tokens/components/dark/bottom-navigation.ts +2 -7
- package/src/tokens/components/dark/bottom-sheet.ts +1 -2
- package/src/tokens/components/dark/breadcrumb.ts +0 -1
- package/src/tokens/components/dark/button.ts +0 -86
- package/src/tokens/components/dark/card.ts +0 -28
- package/src/tokens/components/dark/carousel-control.ts +0 -8
- package/src/tokens/components/dark/checkbox.ts +1 -10
- package/src/tokens/components/dark/date-picker.ts +0 -12
- package/src/tokens/components/dark/description-list.ts +20 -0
- package/src/tokens/components/dark/dialog.ts +0 -1
- package/src/tokens/components/dark/divider.ts +4 -1
- package/src/tokens/components/{light/footer.ts → dark/expandable-card.ts} +4 -5
- package/src/tokens/components/dark/icon-button.ts +5 -5
- package/src/tokens/components/dark/icon-container.ts +0 -17
- package/src/tokens/components/dark/index.ts +10 -4
- package/src/tokens/components/dark/{footer.ts → indicator-icon-button.ts} +4 -5
- package/src/tokens/components/dark/inline-link.ts +1 -1
- package/src/tokens/components/dark/input.ts +1 -9
- package/src/tokens/components/dark/link.ts +2 -2
- package/src/tokens/components/dark/list.ts +20 -20
- package/src/tokens/components/dark/menu.ts +0 -12
- package/src/tokens/components/dark/modal.ts +0 -1
- package/src/tokens/components/dark/navigation.ts +1 -6
- package/src/tokens/components/dark/pagination.ts +12 -0
- package/src/tokens/components/dark/parts.ts +14 -4
- package/src/tokens/components/dark/pill.ts +0 -10
- package/src/tokens/components/dark/progress-stepper.ts +0 -8
- package/src/tokens/components/dark/radio.ts +1 -8
- package/src/tokens/components/dark/{focus.ts → section-header.ts} +4 -2
- package/src/tokens/components/dark/segmented-control.ts +0 -8
- package/src/tokens/components/dark/select.ts +0 -10
- package/src/tokens/components/dark/spinner.ts +1 -1
- package/src/tokens/components/dark/switch.ts +1 -11
- package/src/tokens/components/dark/table.ts +23 -0
- package/src/tokens/components/dark/tabs.ts +24 -0
- package/src/tokens/components/dark/toast.ts +10 -0
- package/src/tokens/components/dark/toggle-button.ts +0 -11
- package/src/tokens/components/dark/tooltip.ts +12 -0
- package/src/tokens/components/dark/top-navigation.ts +0 -8
- package/src/tokens/components/light/accordion.ts +0 -2
- package/src/tokens/components/light/alert.ts +0 -16
- package/src/tokens/components/light/avatar.ts +19 -0
- package/src/tokens/components/light/badge.ts +7 -34
- package/src/tokens/components/light/banner.ts +2 -11
- package/src/tokens/components/light/bottom-navigation.ts +0 -5
- package/src/tokens/components/light/bottom-sheet.ts +1 -2
- package/src/tokens/components/light/breadcrumb.ts +0 -1
- package/src/tokens/components/light/button.ts +0 -86
- package/src/tokens/components/light/card.ts +0 -28
- package/src/tokens/components/light/carousel-control.ts +0 -8
- package/src/tokens/components/light/checkbox.ts +0 -9
- package/src/tokens/components/light/date-picker.ts +0 -12
- package/src/tokens/components/light/description-list.ts +20 -0
- package/src/tokens/components/light/dialog.ts +0 -1
- package/src/tokens/components/light/divider.ts +4 -1
- package/src/tokens/components/light/expandable-card.ts +11 -0
- package/src/tokens/components/light/icon-button.ts +5 -5
- package/src/tokens/components/light/icon-container.ts +0 -17
- package/src/tokens/components/light/index.ts +10 -4
- package/src/tokens/components/light/indicator-icon-button.ts +11 -0
- package/src/tokens/components/light/input.ts +1 -9
- package/src/tokens/components/light/link.ts +2 -2
- package/src/tokens/components/light/list.ts +20 -20
- package/src/tokens/components/light/menu.ts +0 -12
- package/src/tokens/components/light/modal.ts +0 -1
- package/src/tokens/components/light/navigation.ts +1 -6
- package/src/tokens/components/light/pagination.ts +12 -0
- package/src/tokens/components/light/parts.ts +11 -1
- package/src/tokens/components/light/pill.ts +0 -10
- package/src/tokens/components/light/progress-stepper.ts +0 -8
- package/src/tokens/components/light/radio.ts +0 -7
- package/src/tokens/components/light/{focus.ts → section-header.ts} +4 -2
- package/src/tokens/components/light/segmented-control.ts +0 -8
- package/src/tokens/components/light/select.ts +0 -10
- package/src/tokens/components/light/switch.ts +1 -11
- package/src/tokens/components/light/table.ts +23 -0
- package/src/tokens/components/light/tabs.ts +24 -0
- package/src/tokens/components/light/toast.ts +10 -0
- package/src/tokens/components/light/toggle-button.ts +0 -11
- package/src/tokens/components/light/tooltip.ts +12 -0
- package/src/tokens/components/light/top-navigation.ts +0 -8
- package/src/tokens/index.ts +1 -0
- package/src/tokens/semantic-dark.ts +240 -13
- package/src/tokens/semantic-light.ts +240 -13
- package/src/tokens/semantic.ts +9 -0
- package/src/types/values.ts +28 -6
- package/src/utils/coloursAsArray.ts +44 -2
- package/src/utils/getFlattenedColorValue.ts +1 -1
- package/src/utils/hexWithOpacity.ts +19 -0
- package/src/utils/index.ts +2 -1
- package/src/utils/styleUtils.ts +39 -1
- package/src/vite-env.d.ts +5 -0
- package/build/components/Accordion/AccordionHeading/AccordionHeading.d.ts +0 -6
- package/build/components/Accordion/AccordionHeading/AccordionHeading.js +0 -16
- package/build/components/Accordion/AccordionHeading/AccordionHeading.props.d.ts +0 -14
- package/build/components/Accordion/AccordionHeading/AccordionHeadingHelperText.d.ts +0 -6
- package/build/components/Accordion/AccordionHeading/AccordionHeadingHelperText.js +0 -13
- package/build/components/Accordion/AccordionHeading/AccordionHeadingTextContent.d.ts +0 -6
- package/build/components/Accordion/AccordionHeading/AccordionHeadingTextContent.js +0 -14
- package/build/components/Accordion/AccordionHeading/AccordionHeadingTitle.d.ts +0 -6
- package/build/components/Accordion/AccordionHeading/AccordionHeadingTitle.js +0 -7
- package/build/components/Accordion/AccordionHeading/index.d.ts +0 -4
- package/build/components/Accordion/AccordionHeading/index.js +0 -4
- package/build/components/List/ListHeading/ListHeading.d.ts +0 -6
- package/build/components/List/ListHeading/ListHeading.js +0 -20
- package/build/components/List/ListHeading/ListHeadingHelperText.d.ts +0 -6
- package/build/components/List/ListHeading/ListHeadingTitle.d.ts +0 -6
- package/build/components/List/ListHeading/ListHeadingTitle.js +0 -7
- package/build/components/List/ListHeading/index.d.ts +0 -4
- package/build/components/List/ListHeading/index.js +0 -4
- package/build/tokens/components/dark/footer.d.ts +0 -12
- package/build/tokens/components/dark/footer.js +0 -11
- package/build/tokens/components/dark/icon.d.ts +0 -15
- package/build/tokens/components/dark/icon.js +0 -14
- package/build/tokens/components/dark/text.d.ts +0 -11
- package/build/tokens/components/dark/text.js +0 -10
- package/build/tokens/components/light/footer.d.ts +0 -12
- package/build/tokens/components/light/footer.js +0 -11
- package/build/tokens/components/light/icon.d.ts +0 -15
- package/build/tokens/components/light/icon.js +0 -14
- package/build/tokens/components/light/text.d.ts +0 -11
- package/build/tokens/components/light/text.js +0 -10
- package/src/components/Accordion/AccordionHeading/AccordionHeading.props.ts +0 -19
- package/src/components/Accordion/AccordionHeading/AccordionHeading.tsx +0 -38
- package/src/components/Accordion/AccordionHeading/AccordionHeadingHelperText.tsx +0 -22
- package/src/components/Accordion/AccordionHeading/AccordionHeadingTextContent.tsx +0 -21
- package/src/components/Accordion/AccordionHeading/AccordionHeadingTitle.tsx +0 -14
- package/src/components/Accordion/AccordionHeading/index.ts +0 -4
- package/src/components/List/ListHeading/ListHeadingHelperText.tsx +0 -21
- package/src/components/List/ListHeading/ListHeadingTitle.tsx +0 -14
- package/src/components/List/ListHeading/index.ts +0 -4
- package/src/tokens/components/dark/icon.ts +0 -15
- package/src/tokens/components/dark/text.ts +0 -11
- package/src/tokens/components/light/icon.ts +0 -15
- package/src/tokens/components/light/text.ts +0 -11
- /package/build/components/{Accordion/AccordionHeading/AccordionHeading.props.js → Modal/Modal.props.js} +0 -0
- /package/build/components/{List/ListHeading/ListHeading.props.js → SectionHeader/SectionHeader.props.js} +0 -0
package/build/core/themes.d.ts
CHANGED
|
@@ -552,7 +552,7 @@ export declare const lightTheme: {
|
|
|
552
552
|
readonly variants: {
|
|
553
553
|
readonly hardShadow: {
|
|
554
554
|
readonly '1': {
|
|
555
|
-
readonly shadowColor: "#
|
|
555
|
+
readonly shadowColor: "#3a3837";
|
|
556
556
|
readonly shadowOffset: {
|
|
557
557
|
readonly width: -2;
|
|
558
558
|
readonly height: 2;
|
|
@@ -562,7 +562,7 @@ export declare const lightTheme: {
|
|
|
562
562
|
readonly elevation: 10;
|
|
563
563
|
};
|
|
564
564
|
readonly '2': {
|
|
565
|
-
readonly shadowColor: "#
|
|
565
|
+
readonly shadowColor: "#3a3837";
|
|
566
566
|
readonly shadowOffset: {
|
|
567
567
|
readonly width: 0;
|
|
568
568
|
readonly height: 3;
|
|
@@ -572,7 +572,7 @@ export declare const lightTheme: {
|
|
|
572
572
|
readonly elevation: 10;
|
|
573
573
|
};
|
|
574
574
|
readonly '3': {
|
|
575
|
-
readonly shadowColor: "#
|
|
575
|
+
readonly shadowColor: "#3a3837";
|
|
576
576
|
readonly shadowOffset: {
|
|
577
577
|
readonly width: 2;
|
|
578
578
|
readonly height: 2;
|
|
@@ -582,7 +582,7 @@ export declare const lightTheme: {
|
|
|
582
582
|
readonly elevation: 10;
|
|
583
583
|
};
|
|
584
584
|
readonly '4': {
|
|
585
|
-
readonly shadowColor: "#
|
|
585
|
+
readonly shadowColor: "#3a3837";
|
|
586
586
|
readonly shadowOffset: {
|
|
587
587
|
readonly width: 0;
|
|
588
588
|
readonly height: -3;
|
|
@@ -592,7 +592,7 @@ export declare const lightTheme: {
|
|
|
592
592
|
readonly elevation: 10;
|
|
593
593
|
};
|
|
594
594
|
readonly '5': {
|
|
595
|
-
readonly shadowColor: "#
|
|
595
|
+
readonly shadowColor: "#3a3837";
|
|
596
596
|
readonly shadowOffset: {
|
|
597
597
|
readonly width: 0;
|
|
598
598
|
readonly height: 3;
|
|
@@ -604,7 +604,7 @@ export declare const lightTheme: {
|
|
|
604
604
|
};
|
|
605
605
|
readonly softShadow: {
|
|
606
606
|
readonly '1': {
|
|
607
|
-
readonly shadowColor: "#
|
|
607
|
+
readonly shadowColor: "#3a3837";
|
|
608
608
|
readonly shadowOffset: {
|
|
609
609
|
readonly width: 0;
|
|
610
610
|
readonly height: 0;
|
|
@@ -612,13 +612,13 @@ export declare const lightTheme: {
|
|
|
612
612
|
readonly shadowRadius: 10;
|
|
613
613
|
readonly shadowOpacity: 0.1;
|
|
614
614
|
readonly _android: {
|
|
615
|
-
readonly shadowColor: "#
|
|
615
|
+
readonly shadowColor: "#3a3837";
|
|
616
616
|
readonly elevation: 5;
|
|
617
617
|
readonly shadowOpacity: 0.05;
|
|
618
618
|
};
|
|
619
619
|
};
|
|
620
620
|
readonly '2': {
|
|
621
|
-
readonly shadowColor: "#
|
|
621
|
+
readonly shadowColor: "#3a3837";
|
|
622
622
|
readonly shadowOffset: {
|
|
623
623
|
readonly width: 0;
|
|
624
624
|
readonly height: 0;
|
|
@@ -627,13 +627,13 @@ export declare const lightTheme: {
|
|
|
627
627
|
readonly elevation: 3;
|
|
628
628
|
readonly shadowOpacity: 0.1;
|
|
629
629
|
readonly _android: {
|
|
630
|
-
readonly shadowColor: "#
|
|
630
|
+
readonly shadowColor: "#3a3837";
|
|
631
631
|
readonly elevation: 10;
|
|
632
632
|
readonly shadowOpacity: 0.1;
|
|
633
633
|
};
|
|
634
634
|
};
|
|
635
635
|
readonly '3': {
|
|
636
|
-
readonly shadowColor: "#
|
|
636
|
+
readonly shadowColor: "#3a3837";
|
|
637
637
|
readonly shadowOffset: {
|
|
638
638
|
readonly width: 0;
|
|
639
639
|
readonly height: 0;
|
|
@@ -642,13 +642,13 @@ export declare const lightTheme: {
|
|
|
642
642
|
readonly shadowOpacity: 0.1;
|
|
643
643
|
readonly elevation: 4;
|
|
644
644
|
readonly _android: {
|
|
645
|
-
readonly shadowColor: "#
|
|
645
|
+
readonly shadowColor: "#3a3837";
|
|
646
646
|
readonly elevation: 15;
|
|
647
647
|
readonly shadowOpacity: 0.15;
|
|
648
648
|
};
|
|
649
649
|
};
|
|
650
650
|
readonly '4': {
|
|
651
|
-
readonly shadowColor: "#
|
|
651
|
+
readonly shadowColor: "#3a3837";
|
|
652
652
|
readonly shadowOffset: {
|
|
653
653
|
readonly width: 0;
|
|
654
654
|
readonly height: 0;
|
|
@@ -657,7 +657,7 @@ export declare const lightTheme: {
|
|
|
657
657
|
readonly shadowOpacity: 0.1;
|
|
658
658
|
readonly elevation: 10;
|
|
659
659
|
readonly _android: {
|
|
660
|
-
readonly shadowColor: "#
|
|
660
|
+
readonly shadowColor: "#3a3837";
|
|
661
661
|
readonly elevation: 20;
|
|
662
662
|
readonly shadowOpacity: 0.2;
|
|
663
663
|
};
|
|
@@ -709,19 +709,248 @@ export declare const lightTheme: {
|
|
|
709
709
|
readonly color: {
|
|
710
710
|
readonly white: "#ffffff";
|
|
711
711
|
readonly black: "#000000";
|
|
712
|
-
readonly background:
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
712
|
+
readonly background: {
|
|
713
|
+
readonly brand: "#7a42c8";
|
|
714
|
+
readonly primary: "#fcfbf2";
|
|
715
|
+
readonly secondary: "#ffffff";
|
|
716
|
+
};
|
|
717
|
+
readonly border: {
|
|
718
|
+
readonly strong: "#101010";
|
|
719
|
+
readonly subtle: "#d4d2c0";
|
|
720
|
+
};
|
|
721
|
+
readonly feedback: {
|
|
722
|
+
readonly danger: {
|
|
723
|
+
readonly border: "#de2612";
|
|
724
|
+
readonly foreground: {
|
|
725
|
+
readonly default: "#fcfbf2";
|
|
726
|
+
readonly subtle: "#de2612";
|
|
727
|
+
};
|
|
728
|
+
readonly surface: {
|
|
729
|
+
readonly default: "#de2612";
|
|
730
|
+
readonly subtle: "#ffccc5";
|
|
731
|
+
};
|
|
732
|
+
};
|
|
733
|
+
readonly functional: {
|
|
734
|
+
readonly border: "#888888";
|
|
735
|
+
readonly foreground: {
|
|
736
|
+
readonly default: "#fcfbf2";
|
|
737
|
+
readonly subtle: "#888888";
|
|
738
|
+
};
|
|
739
|
+
readonly surface: {
|
|
740
|
+
readonly default: "#888888";
|
|
741
|
+
readonly subtle: "#d3d3d3";
|
|
742
|
+
};
|
|
743
|
+
};
|
|
744
|
+
readonly info: {
|
|
745
|
+
readonly border: "#1c6cd4";
|
|
746
|
+
readonly foreground: {
|
|
747
|
+
readonly default: "#fcfbf2";
|
|
748
|
+
readonly subtle: "#1c6cd4";
|
|
749
|
+
};
|
|
750
|
+
readonly surface: {
|
|
751
|
+
readonly default: "#1c6cd4";
|
|
752
|
+
readonly subtle: "#bcddff";
|
|
753
|
+
};
|
|
754
|
+
};
|
|
755
|
+
readonly positive: {
|
|
756
|
+
readonly border: "#0f834a";
|
|
757
|
+
readonly foreground: {
|
|
758
|
+
readonly default: "#fcfbf2";
|
|
759
|
+
readonly subtle: "#0f834a";
|
|
760
|
+
};
|
|
761
|
+
readonly surface: {
|
|
762
|
+
readonly default: "#0f834a";
|
|
763
|
+
readonly subtle: "#a2e2c3";
|
|
764
|
+
};
|
|
765
|
+
};
|
|
766
|
+
readonly warning: {
|
|
767
|
+
readonly border: "#be5400";
|
|
768
|
+
readonly foreground: {
|
|
769
|
+
readonly default: "#fcfbf2";
|
|
770
|
+
readonly subtle: "#be5400";
|
|
771
|
+
};
|
|
772
|
+
readonly surface: {
|
|
773
|
+
readonly default: "#be5400";
|
|
774
|
+
readonly subtle: "#ffcca8";
|
|
775
|
+
};
|
|
776
|
+
};
|
|
777
|
+
};
|
|
778
|
+
readonly focus: {
|
|
779
|
+
readonly inverted: "#fcfbf2";
|
|
780
|
+
readonly primary: "#101010";
|
|
781
|
+
};
|
|
782
|
+
readonly icon: {
|
|
783
|
+
readonly inverted: "#fcfbf2";
|
|
784
|
+
readonly primary: "#101010";
|
|
785
|
+
};
|
|
786
|
+
readonly interactive: {
|
|
787
|
+
readonly affirmative: {
|
|
788
|
+
readonly border: {
|
|
789
|
+
readonly strong: "#101010";
|
|
790
|
+
readonly subtle: "#04663a";
|
|
791
|
+
};
|
|
792
|
+
readonly foreground: {
|
|
793
|
+
readonly strong: "#fcfbf2";
|
|
794
|
+
readonly subtle: "#04663a";
|
|
795
|
+
};
|
|
796
|
+
readonly surface: {
|
|
797
|
+
readonly strong: {
|
|
798
|
+
readonly active: "#074b2a";
|
|
799
|
+
readonly default: "#0f834a";
|
|
800
|
+
readonly hover: "#04663a";
|
|
801
|
+
};
|
|
802
|
+
readonly subtle: {
|
|
803
|
+
readonly active: "#c5edda";
|
|
804
|
+
readonly hover: "#e7f9f0";
|
|
805
|
+
};
|
|
806
|
+
};
|
|
807
|
+
};
|
|
808
|
+
readonly brand: {
|
|
809
|
+
readonly border: {
|
|
810
|
+
readonly strong: "#101010";
|
|
811
|
+
};
|
|
812
|
+
readonly foreground: {
|
|
813
|
+
readonly strong: "#fcfbf2";
|
|
814
|
+
};
|
|
815
|
+
readonly surface: {
|
|
816
|
+
readonly strong: {
|
|
817
|
+
readonly active: "#442484";
|
|
818
|
+
readonly default: "#7a42c8";
|
|
819
|
+
readonly hover: "#5c2ca9";
|
|
820
|
+
};
|
|
821
|
+
};
|
|
822
|
+
};
|
|
823
|
+
readonly destructive: {
|
|
824
|
+
readonly border: {
|
|
825
|
+
readonly strong: "#101010";
|
|
826
|
+
readonly subtle: "#a4281e";
|
|
827
|
+
};
|
|
828
|
+
readonly foreground: {
|
|
829
|
+
readonly strong: "#fcfbf2";
|
|
830
|
+
readonly subtle: "#a4281e";
|
|
831
|
+
};
|
|
832
|
+
readonly surface: {
|
|
833
|
+
readonly strong: {
|
|
834
|
+
readonly active: "#6b1f1a";
|
|
835
|
+
readonly default: "#de2612";
|
|
836
|
+
readonly hover: "#a4281e";
|
|
837
|
+
};
|
|
838
|
+
readonly subtle: {
|
|
839
|
+
readonly active: "#ffe3df";
|
|
840
|
+
readonly hover: "#fff3f1";
|
|
841
|
+
};
|
|
842
|
+
};
|
|
843
|
+
};
|
|
844
|
+
readonly functional: {
|
|
845
|
+
readonly border: {
|
|
846
|
+
readonly strong: "#101010";
|
|
847
|
+
readonly subtle: "#101010";
|
|
848
|
+
readonly inverted: "#f7f7f7";
|
|
849
|
+
};
|
|
850
|
+
readonly foreground: {
|
|
851
|
+
readonly strong: "#fcfbf2";
|
|
852
|
+
readonly subtle: "#101010";
|
|
853
|
+
readonly inverted: "#f7f7f7";
|
|
854
|
+
};
|
|
855
|
+
readonly surface: {
|
|
856
|
+
readonly strong: {
|
|
857
|
+
readonly active: "#4c4c4c";
|
|
858
|
+
readonly default: "#888888";
|
|
859
|
+
readonly hover: "#5b5b5b";
|
|
860
|
+
};
|
|
861
|
+
readonly subtle: {
|
|
862
|
+
readonly active: "#d3d3d3";
|
|
863
|
+
readonly hover: "#ebebeb";
|
|
864
|
+
readonly inverted: {
|
|
865
|
+
readonly active: "#3a3837";
|
|
866
|
+
readonly hover: "#3f3f3f";
|
|
867
|
+
};
|
|
868
|
+
};
|
|
869
|
+
};
|
|
870
|
+
};
|
|
871
|
+
readonly highlight: {
|
|
872
|
+
readonly border: {
|
|
873
|
+
readonly strong: "#101010";
|
|
874
|
+
};
|
|
875
|
+
readonly foreground: {
|
|
876
|
+
readonly strong: "#101010";
|
|
877
|
+
};
|
|
878
|
+
readonly surface: {
|
|
879
|
+
readonly strong: {
|
|
880
|
+
readonly active: "#d1950b";
|
|
881
|
+
readonly default: "#ffb921";
|
|
882
|
+
readonly hover: "#eba400";
|
|
883
|
+
};
|
|
884
|
+
};
|
|
885
|
+
};
|
|
886
|
+
readonly neutral: {
|
|
887
|
+
readonly border: {
|
|
888
|
+
readonly subtle: "#101010";
|
|
889
|
+
};
|
|
890
|
+
readonly foreground: {
|
|
891
|
+
readonly subtle: "#101010";
|
|
892
|
+
};
|
|
893
|
+
readonly surface: {
|
|
894
|
+
readonly subtle: {
|
|
895
|
+
readonly active: "#f1efe4";
|
|
896
|
+
readonly hover: "#f7f6eb";
|
|
897
|
+
};
|
|
898
|
+
};
|
|
899
|
+
};
|
|
900
|
+
};
|
|
716
901
|
readonly shadow: {
|
|
717
|
-
readonly
|
|
718
|
-
readonly
|
|
719
|
-
readonly
|
|
720
|
-
readonly
|
|
721
|
-
readonly
|
|
722
|
-
readonly
|
|
723
|
-
readonly
|
|
724
|
-
readonly
|
|
902
|
+
readonly brand: "#7a42c8";
|
|
903
|
+
readonly broadband: "#8cba3b";
|
|
904
|
+
readonly cashback: "#be7aeb";
|
|
905
|
+
readonly default: "#101010";
|
|
906
|
+
readonly energy: "#6db5c3";
|
|
907
|
+
readonly insurance: "#ff7b00";
|
|
908
|
+
readonly mobile: "#ee6dbb";
|
|
909
|
+
readonly pig: "#f295ff";
|
|
910
|
+
};
|
|
911
|
+
readonly surface: {
|
|
912
|
+
readonly brand: {
|
|
913
|
+
readonly default: "#7a42c8";
|
|
914
|
+
readonly strong: "#26164f";
|
|
915
|
+
readonly subtle: "#af90de";
|
|
916
|
+
};
|
|
917
|
+
readonly broadband: {
|
|
918
|
+
readonly default: "#8cba3b";
|
|
919
|
+
readonly subtle: "#d2e6b0";
|
|
920
|
+
};
|
|
921
|
+
readonly cashback: {
|
|
922
|
+
readonly default: "#be7aeb";
|
|
923
|
+
readonly subtle: "#dfbdf5";
|
|
924
|
+
};
|
|
925
|
+
readonly energy: {
|
|
926
|
+
readonly default: "#6db5c3";
|
|
927
|
+
readonly subtle: "#bddee4";
|
|
928
|
+
};
|
|
929
|
+
readonly highlight: {
|
|
930
|
+
readonly default: "#ffb921";
|
|
931
|
+
readonly subtle: "#ffd885";
|
|
932
|
+
};
|
|
933
|
+
readonly insurance: {
|
|
934
|
+
readonly default: "#ff7b00";
|
|
935
|
+
readonly subtle: "#ffb46d";
|
|
936
|
+
};
|
|
937
|
+
readonly mobile: {
|
|
938
|
+
readonly default: "#ee6dbb";
|
|
939
|
+
readonly subtle: "#fad0e9";
|
|
940
|
+
};
|
|
941
|
+
readonly neutral: {
|
|
942
|
+
readonly strong: "#ffffff";
|
|
943
|
+
readonly subtle: "#fcfbf2";
|
|
944
|
+
};
|
|
945
|
+
readonly pig: {
|
|
946
|
+
readonly default: "#f295ff";
|
|
947
|
+
readonly subtle: "#f9ceff";
|
|
948
|
+
};
|
|
949
|
+
};
|
|
950
|
+
readonly text: {
|
|
951
|
+
readonly inverted: "#fcfbf2";
|
|
952
|
+
readonly primary: "#101010";
|
|
953
|
+
readonly secondary: "#888888";
|
|
725
954
|
};
|
|
726
955
|
readonly blue: {
|
|
727
956
|
readonly '0': "#f8fbff";
|
|
@@ -800,17 +1029,17 @@ export declare const lightTheme: {
|
|
|
800
1029
|
};
|
|
801
1030
|
readonly grey: {
|
|
802
1031
|
readonly '0': "#ffffff";
|
|
803
|
-
readonly '50': "#
|
|
804
|
-
readonly '100': "#
|
|
805
|
-
readonly '200': "#
|
|
1032
|
+
readonly '50': "#f7f7f7";
|
|
1033
|
+
readonly '100': "#ebebeb";
|
|
1034
|
+
readonly '200': "#d3d3d3";
|
|
806
1035
|
readonly '300': "#b2afae";
|
|
807
|
-
readonly '400': "#
|
|
808
|
-
readonly '500': "#
|
|
809
|
-
readonly '600': "#
|
|
810
|
-
readonly '700': "#
|
|
811
|
-
readonly '800': "#
|
|
812
|
-
readonly '900': "#
|
|
813
|
-
readonly '950': "#
|
|
1036
|
+
readonly '400': "#919191";
|
|
1037
|
+
readonly '500': "#888888";
|
|
1038
|
+
readonly '600': "#5b5b5b";
|
|
1039
|
+
readonly '700': "#4c4c4c";
|
|
1040
|
+
readonly '800': "#3f3f3f";
|
|
1041
|
+
readonly '900': "#3a3837";
|
|
1042
|
+
readonly '950': "#232323";
|
|
814
1043
|
readonly '975': "#191919";
|
|
815
1044
|
readonly '1000': "#101010";
|
|
816
1045
|
};
|
|
@@ -878,16 +1107,16 @@ export declare const lightTheme: {
|
|
|
878
1107
|
readonly purple: {
|
|
879
1108
|
readonly '0': "#f7f6f9";
|
|
880
1109
|
readonly '50': "#eeebf4";
|
|
881
|
-
readonly '100': "#
|
|
882
|
-
readonly '200': "#
|
|
883
|
-
readonly '300': "#
|
|
884
|
-
readonly '400': "#
|
|
885
|
-
readonly '500': "#
|
|
886
|
-
readonly '600': "#
|
|
1110
|
+
readonly '100': "#ddd5eb";
|
|
1111
|
+
readonly '200': "#c6b5e2";
|
|
1112
|
+
readonly '300': "#af90de";
|
|
1113
|
+
readonly '400': "#996cda";
|
|
1114
|
+
readonly '500': "#8851d6";
|
|
1115
|
+
readonly '600': "#8149ce";
|
|
887
1116
|
readonly '700': "#7a42c8";
|
|
888
|
-
readonly '800': "#
|
|
889
|
-
readonly '900': "#
|
|
890
|
-
readonly '950': "#
|
|
1117
|
+
readonly '800': "#5c2ca9";
|
|
1118
|
+
readonly '900': "#442484";
|
|
1119
|
+
readonly '950': "#331c68";
|
|
891
1120
|
readonly '1000': "#26164f";
|
|
892
1121
|
};
|
|
893
1122
|
readonly red: {
|
|
@@ -944,7 +1173,7 @@ export declare const darkTheme: {
|
|
|
944
1173
|
focusVisible: {
|
|
945
1174
|
outlineStyle: string;
|
|
946
1175
|
outlineWidth: number;
|
|
947
|
-
outlineColor: "#
|
|
1176
|
+
outlineColor: "#ebebeb";
|
|
948
1177
|
outlineOffset: number;
|
|
949
1178
|
};
|
|
950
1179
|
};
|
|
@@ -1491,7 +1720,7 @@ export declare const darkTheme: {
|
|
|
1491
1720
|
readonly variants: {
|
|
1492
1721
|
readonly hardShadow: {
|
|
1493
1722
|
readonly '1': {
|
|
1494
|
-
readonly shadowColor: "#
|
|
1723
|
+
readonly shadowColor: "#3a3837";
|
|
1495
1724
|
readonly shadowOffset: {
|
|
1496
1725
|
readonly width: -2;
|
|
1497
1726
|
readonly height: 2;
|
|
@@ -1501,7 +1730,7 @@ export declare const darkTheme: {
|
|
|
1501
1730
|
readonly elevation: 10;
|
|
1502
1731
|
};
|
|
1503
1732
|
readonly '2': {
|
|
1504
|
-
readonly shadowColor: "#
|
|
1733
|
+
readonly shadowColor: "#3a3837";
|
|
1505
1734
|
readonly shadowOffset: {
|
|
1506
1735
|
readonly width: 0;
|
|
1507
1736
|
readonly height: 3;
|
|
@@ -1511,7 +1740,7 @@ export declare const darkTheme: {
|
|
|
1511
1740
|
readonly elevation: 10;
|
|
1512
1741
|
};
|
|
1513
1742
|
readonly '3': {
|
|
1514
|
-
readonly shadowColor: "#
|
|
1743
|
+
readonly shadowColor: "#3a3837";
|
|
1515
1744
|
readonly shadowOffset: {
|
|
1516
1745
|
readonly width: 2;
|
|
1517
1746
|
readonly height: 2;
|
|
@@ -1521,7 +1750,7 @@ export declare const darkTheme: {
|
|
|
1521
1750
|
readonly elevation: 10;
|
|
1522
1751
|
};
|
|
1523
1752
|
readonly '4': {
|
|
1524
|
-
readonly shadowColor: "#
|
|
1753
|
+
readonly shadowColor: "#3a3837";
|
|
1525
1754
|
readonly shadowOffset: {
|
|
1526
1755
|
readonly width: 0;
|
|
1527
1756
|
readonly height: -3;
|
|
@@ -1531,7 +1760,7 @@ export declare const darkTheme: {
|
|
|
1531
1760
|
readonly elevation: 10;
|
|
1532
1761
|
};
|
|
1533
1762
|
readonly '5': {
|
|
1534
|
-
readonly shadowColor: "#
|
|
1763
|
+
readonly shadowColor: "#3a3837";
|
|
1535
1764
|
readonly shadowOffset: {
|
|
1536
1765
|
readonly width: 0;
|
|
1537
1766
|
readonly height: 3;
|
|
@@ -1543,7 +1772,7 @@ export declare const darkTheme: {
|
|
|
1543
1772
|
};
|
|
1544
1773
|
readonly softShadow: {
|
|
1545
1774
|
readonly '1': {
|
|
1546
|
-
readonly shadowColor: "#
|
|
1775
|
+
readonly shadowColor: "#3a3837";
|
|
1547
1776
|
readonly shadowOffset: {
|
|
1548
1777
|
readonly width: 0;
|
|
1549
1778
|
readonly height: 0;
|
|
@@ -1551,13 +1780,13 @@ export declare const darkTheme: {
|
|
|
1551
1780
|
readonly shadowRadius: 10;
|
|
1552
1781
|
readonly shadowOpacity: 0.1;
|
|
1553
1782
|
readonly _android: {
|
|
1554
|
-
readonly shadowColor: "#
|
|
1783
|
+
readonly shadowColor: "#3a3837";
|
|
1555
1784
|
readonly elevation: 5;
|
|
1556
1785
|
readonly shadowOpacity: 0.05;
|
|
1557
1786
|
};
|
|
1558
1787
|
};
|
|
1559
1788
|
readonly '2': {
|
|
1560
|
-
readonly shadowColor: "#
|
|
1789
|
+
readonly shadowColor: "#3a3837";
|
|
1561
1790
|
readonly shadowOffset: {
|
|
1562
1791
|
readonly width: 0;
|
|
1563
1792
|
readonly height: 0;
|
|
@@ -1566,13 +1795,13 @@ export declare const darkTheme: {
|
|
|
1566
1795
|
readonly elevation: 3;
|
|
1567
1796
|
readonly shadowOpacity: 0.1;
|
|
1568
1797
|
readonly _android: {
|
|
1569
|
-
readonly shadowColor: "#
|
|
1798
|
+
readonly shadowColor: "#3a3837";
|
|
1570
1799
|
readonly elevation: 10;
|
|
1571
1800
|
readonly shadowOpacity: 0.1;
|
|
1572
1801
|
};
|
|
1573
1802
|
};
|
|
1574
1803
|
readonly '3': {
|
|
1575
|
-
readonly shadowColor: "#
|
|
1804
|
+
readonly shadowColor: "#3a3837";
|
|
1576
1805
|
readonly shadowOffset: {
|
|
1577
1806
|
readonly width: 0;
|
|
1578
1807
|
readonly height: 0;
|
|
@@ -1581,13 +1810,13 @@ export declare const darkTheme: {
|
|
|
1581
1810
|
readonly shadowOpacity: 0.1;
|
|
1582
1811
|
readonly elevation: 4;
|
|
1583
1812
|
readonly _android: {
|
|
1584
|
-
readonly shadowColor: "#
|
|
1813
|
+
readonly shadowColor: "#3a3837";
|
|
1585
1814
|
readonly elevation: 15;
|
|
1586
1815
|
readonly shadowOpacity: 0.15;
|
|
1587
1816
|
};
|
|
1588
1817
|
};
|
|
1589
1818
|
readonly '4': {
|
|
1590
|
-
readonly shadowColor: "#
|
|
1819
|
+
readonly shadowColor: "#3a3837";
|
|
1591
1820
|
readonly shadowOffset: {
|
|
1592
1821
|
readonly width: 0;
|
|
1593
1822
|
readonly height: 0;
|
|
@@ -1596,7 +1825,7 @@ export declare const darkTheme: {
|
|
|
1596
1825
|
readonly shadowOpacity: 0.1;
|
|
1597
1826
|
readonly elevation: 10;
|
|
1598
1827
|
readonly _android: {
|
|
1599
|
-
readonly shadowColor: "#
|
|
1828
|
+
readonly shadowColor: "#3a3837";
|
|
1600
1829
|
readonly elevation: 20;
|
|
1601
1830
|
readonly shadowOpacity: 0.2;
|
|
1602
1831
|
};
|
|
@@ -1648,19 +1877,248 @@ export declare const darkTheme: {
|
|
|
1648
1877
|
readonly color: {
|
|
1649
1878
|
readonly white: "#ffffff";
|
|
1650
1879
|
readonly black: "#000000";
|
|
1651
|
-
readonly background:
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1880
|
+
readonly background: {
|
|
1881
|
+
readonly brand: "#996cda";
|
|
1882
|
+
readonly primary: "#191917";
|
|
1883
|
+
readonly secondary: "#232323";
|
|
1884
|
+
};
|
|
1885
|
+
readonly border: {
|
|
1886
|
+
readonly strong: "#ebebeb";
|
|
1887
|
+
readonly subtle: "#4c473d";
|
|
1888
|
+
};
|
|
1889
|
+
readonly feedback: {
|
|
1890
|
+
readonly danger: {
|
|
1891
|
+
readonly border: "#ff7964";
|
|
1892
|
+
readonly foreground: {
|
|
1893
|
+
readonly default: "#fcfbf2";
|
|
1894
|
+
readonly subtle: "#ff7964";
|
|
1895
|
+
};
|
|
1896
|
+
readonly surface: {
|
|
1897
|
+
readonly default: "#de2612";
|
|
1898
|
+
readonly subtle: "#521a16";
|
|
1899
|
+
};
|
|
1900
|
+
};
|
|
1901
|
+
readonly functional: {
|
|
1902
|
+
readonly border: "#b2afae";
|
|
1903
|
+
readonly foreground: {
|
|
1904
|
+
readonly default: "#fcfbf2";
|
|
1905
|
+
readonly subtle: "#b2afae";
|
|
1906
|
+
};
|
|
1907
|
+
readonly surface: {
|
|
1908
|
+
readonly default: "#888888";
|
|
1909
|
+
readonly subtle: "#232323";
|
|
1910
|
+
};
|
|
1911
|
+
};
|
|
1912
|
+
readonly info: {
|
|
1913
|
+
readonly border: "#6bb0ff";
|
|
1914
|
+
readonly foreground: {
|
|
1915
|
+
readonly default: "#fcfbf2";
|
|
1916
|
+
readonly subtle: "#6bb0ff";
|
|
1917
|
+
};
|
|
1918
|
+
readonly surface: {
|
|
1919
|
+
readonly default: "#1c6cd4";
|
|
1920
|
+
readonly subtle: "#042455";
|
|
1921
|
+
};
|
|
1922
|
+
};
|
|
1923
|
+
readonly positive: {
|
|
1924
|
+
readonly border: "#58ca93";
|
|
1925
|
+
readonly foreground: {
|
|
1926
|
+
readonly default: "#fcfbf2";
|
|
1927
|
+
readonly subtle: "#58ca93";
|
|
1928
|
+
};
|
|
1929
|
+
readonly surface: {
|
|
1930
|
+
readonly default: "#0f834a";
|
|
1931
|
+
readonly subtle: "#033d21";
|
|
1932
|
+
};
|
|
1933
|
+
};
|
|
1934
|
+
readonly warning: {
|
|
1935
|
+
readonly border: "#ff9639";
|
|
1936
|
+
readonly foreground: {
|
|
1937
|
+
readonly default: "#fcfbf2";
|
|
1938
|
+
readonly subtle: "#ff9639";
|
|
1939
|
+
};
|
|
1940
|
+
readonly surface: {
|
|
1941
|
+
readonly default: "#cb5b00";
|
|
1942
|
+
readonly subtle: "#6b2d00";
|
|
1943
|
+
};
|
|
1944
|
+
};
|
|
1945
|
+
};
|
|
1946
|
+
readonly focus: {
|
|
1947
|
+
readonly inverted: "#fcfbf2";
|
|
1948
|
+
readonly primary: "#ebebeb";
|
|
1949
|
+
};
|
|
1950
|
+
readonly icon: {
|
|
1951
|
+
readonly inverted: "#fcfbf2";
|
|
1952
|
+
readonly primary: "#ebebeb";
|
|
1953
|
+
};
|
|
1954
|
+
readonly interactive: {
|
|
1955
|
+
readonly affirmative: {
|
|
1956
|
+
readonly border: {
|
|
1957
|
+
readonly strong: "#ebebeb";
|
|
1958
|
+
readonly subtle: "#58ca93";
|
|
1959
|
+
};
|
|
1960
|
+
readonly foreground: {
|
|
1961
|
+
readonly strong: "#191917";
|
|
1962
|
+
readonly subtle: "#58ca93";
|
|
1963
|
+
};
|
|
1964
|
+
readonly surface: {
|
|
1965
|
+
readonly strong: {
|
|
1966
|
+
readonly active: "#58ca93";
|
|
1967
|
+
readonly default: "#19a660";
|
|
1968
|
+
readonly hover: "#36bf7d";
|
|
1969
|
+
};
|
|
1970
|
+
readonly subtle: {
|
|
1971
|
+
readonly active: "#033d21";
|
|
1972
|
+
readonly hover: "#002e18";
|
|
1973
|
+
};
|
|
1974
|
+
};
|
|
1975
|
+
};
|
|
1976
|
+
readonly brand: {
|
|
1977
|
+
readonly border: {
|
|
1978
|
+
readonly strong: "#ebebeb";
|
|
1979
|
+
};
|
|
1980
|
+
readonly foreground: {
|
|
1981
|
+
readonly strong: "#191917";
|
|
1982
|
+
};
|
|
1983
|
+
readonly surface: {
|
|
1984
|
+
readonly strong: {
|
|
1985
|
+
readonly active: "#c6b5e2";
|
|
1986
|
+
readonly default: "#996cda";
|
|
1987
|
+
readonly hover: "#af90de";
|
|
1988
|
+
};
|
|
1989
|
+
};
|
|
1990
|
+
};
|
|
1991
|
+
readonly destructive: {
|
|
1992
|
+
readonly border: {
|
|
1993
|
+
readonly strong: "#ebebeb";
|
|
1994
|
+
readonly subtle: "#ff7964";
|
|
1995
|
+
};
|
|
1996
|
+
readonly foreground: {
|
|
1997
|
+
readonly strong: "#191917";
|
|
1998
|
+
readonly subtle: "#ff7964";
|
|
1999
|
+
};
|
|
2000
|
+
readonly surface: {
|
|
2001
|
+
readonly strong: {
|
|
2002
|
+
readonly active: "#ff7964";
|
|
2003
|
+
readonly default: "#f4412a";
|
|
2004
|
+
readonly hover: "#ff634a";
|
|
2005
|
+
};
|
|
2006
|
+
readonly subtle: {
|
|
2007
|
+
readonly active: "#521a16";
|
|
2008
|
+
readonly hover: "#3b1512";
|
|
2009
|
+
};
|
|
2010
|
+
};
|
|
2011
|
+
};
|
|
2012
|
+
readonly functional: {
|
|
2013
|
+
readonly border: {
|
|
2014
|
+
readonly strong: "#ebebeb";
|
|
2015
|
+
readonly subtle: "#ebebeb";
|
|
2016
|
+
readonly inverted: "#f7f7f7";
|
|
2017
|
+
};
|
|
2018
|
+
readonly foreground: {
|
|
2019
|
+
readonly strong: "#fcfbf2";
|
|
2020
|
+
readonly subtle: "#ebebeb";
|
|
2021
|
+
readonly inverted: "#f7f7f7";
|
|
2022
|
+
};
|
|
2023
|
+
readonly surface: {
|
|
2024
|
+
readonly strong: {
|
|
2025
|
+
readonly active: "#d3d3d3";
|
|
2026
|
+
readonly default: "#919191";
|
|
2027
|
+
readonly hover: "#b2afae";
|
|
2028
|
+
};
|
|
2029
|
+
readonly subtle: {
|
|
2030
|
+
readonly active: "#4c4c4c";
|
|
2031
|
+
readonly hover: "#3a3837";
|
|
2032
|
+
readonly inverted: {
|
|
2033
|
+
readonly active: "#d3d3d3";
|
|
2034
|
+
readonly hover: "#ebebeb";
|
|
2035
|
+
};
|
|
2036
|
+
};
|
|
2037
|
+
};
|
|
2038
|
+
};
|
|
2039
|
+
readonly highlight: {
|
|
2040
|
+
readonly border: {
|
|
2041
|
+
readonly strong: "#f7f7f7";
|
|
2042
|
+
};
|
|
2043
|
+
readonly foreground: {
|
|
2044
|
+
readonly strong: "#101010";
|
|
2045
|
+
};
|
|
2046
|
+
readonly surface: {
|
|
2047
|
+
readonly strong: {
|
|
2048
|
+
readonly active: "#ffd885";
|
|
2049
|
+
readonly default: "#ffb921";
|
|
2050
|
+
readonly hover: "#ffc852";
|
|
2051
|
+
};
|
|
2052
|
+
};
|
|
2053
|
+
};
|
|
2054
|
+
readonly neutral: {
|
|
2055
|
+
readonly border: {
|
|
2056
|
+
readonly subtle: "#ebebeb";
|
|
2057
|
+
};
|
|
2058
|
+
readonly foreground: {
|
|
2059
|
+
readonly subtle: "#ebebeb";
|
|
2060
|
+
};
|
|
2061
|
+
readonly surface: {
|
|
2062
|
+
readonly subtle: {
|
|
2063
|
+
readonly active: "#30302c";
|
|
2064
|
+
readonly hover: "#282825";
|
|
2065
|
+
};
|
|
2066
|
+
};
|
|
2067
|
+
};
|
|
2068
|
+
};
|
|
1655
2069
|
readonly shadow: {
|
|
1656
|
-
readonly
|
|
1657
|
-
readonly
|
|
1658
|
-
readonly
|
|
1659
|
-
readonly
|
|
1660
|
-
readonly
|
|
1661
|
-
readonly
|
|
1662
|
-
readonly
|
|
1663
|
-
readonly
|
|
2070
|
+
readonly brand: "#7a42c8";
|
|
2071
|
+
readonly broadband: "#506c21";
|
|
2072
|
+
readonly cashback: "#8b2bc9";
|
|
2073
|
+
readonly default: "#f7f7f7";
|
|
2074
|
+
readonly energy: "#326e7a";
|
|
2075
|
+
readonly insurance: "#9b4c0e";
|
|
2076
|
+
readonly mobile: "#a7266d";
|
|
2077
|
+
readonly pig: "#8f358f";
|
|
2078
|
+
};
|
|
2079
|
+
readonly surface: {
|
|
2080
|
+
readonly brand: {
|
|
2081
|
+
readonly default: "#996cda";
|
|
2082
|
+
readonly strong: "#26164f";
|
|
2083
|
+
readonly subtle: "#442484";
|
|
2084
|
+
};
|
|
2085
|
+
readonly broadband: {
|
|
2086
|
+
readonly default: "#506c21";
|
|
2087
|
+
readonly subtle: "#35421c";
|
|
2088
|
+
};
|
|
2089
|
+
readonly cashback: {
|
|
2090
|
+
readonly default: "#8b2bc9";
|
|
2091
|
+
readonly subtle: "#522270";
|
|
2092
|
+
};
|
|
2093
|
+
readonly energy: {
|
|
2094
|
+
readonly default: "#326e7a";
|
|
2095
|
+
readonly subtle: "#254348";
|
|
2096
|
+
};
|
|
2097
|
+
readonly highlight: {
|
|
2098
|
+
readonly default: "#ffb921";
|
|
2099
|
+
readonly subtle: "#756230";
|
|
2100
|
+
};
|
|
2101
|
+
readonly insurance: {
|
|
2102
|
+
readonly default: "#9b4c0e";
|
|
2103
|
+
readonly subtle: "#5a3213";
|
|
2104
|
+
};
|
|
2105
|
+
readonly mobile: {
|
|
2106
|
+
readonly default: "#a7266d";
|
|
2107
|
+
readonly subtle: "#601f42";
|
|
2108
|
+
};
|
|
2109
|
+
readonly neutral: {
|
|
2110
|
+
readonly strong: "#232323";
|
|
2111
|
+
readonly subtle: "#191917";
|
|
2112
|
+
};
|
|
2113
|
+
readonly pig: {
|
|
2114
|
+
readonly default: "#8f358f";
|
|
2115
|
+
readonly subtle: "#5d2167";
|
|
2116
|
+
};
|
|
2117
|
+
};
|
|
2118
|
+
readonly text: {
|
|
2119
|
+
readonly inverted: "#191917";
|
|
2120
|
+
readonly primary: "#ebebeb";
|
|
2121
|
+
readonly secondary: "#b2afae";
|
|
1664
2122
|
};
|
|
1665
2123
|
readonly blue: {
|
|
1666
2124
|
readonly '0': "#f8fbff";
|
|
@@ -1739,17 +2197,17 @@ export declare const darkTheme: {
|
|
|
1739
2197
|
};
|
|
1740
2198
|
readonly grey: {
|
|
1741
2199
|
readonly '0': "#ffffff";
|
|
1742
|
-
readonly '50': "#
|
|
1743
|
-
readonly '100': "#
|
|
1744
|
-
readonly '200': "#
|
|
2200
|
+
readonly '50': "#f7f7f7";
|
|
2201
|
+
readonly '100': "#ebebeb";
|
|
2202
|
+
readonly '200': "#d3d3d3";
|
|
1745
2203
|
readonly '300': "#b2afae";
|
|
1746
|
-
readonly '400': "#
|
|
1747
|
-
readonly '500': "#
|
|
1748
|
-
readonly '600': "#
|
|
1749
|
-
readonly '700': "#
|
|
1750
|
-
readonly '800': "#
|
|
1751
|
-
readonly '900': "#
|
|
1752
|
-
readonly '950': "#
|
|
2204
|
+
readonly '400': "#919191";
|
|
2205
|
+
readonly '500': "#888888";
|
|
2206
|
+
readonly '600': "#5b5b5b";
|
|
2207
|
+
readonly '700': "#4c4c4c";
|
|
2208
|
+
readonly '800': "#3f3f3f";
|
|
2209
|
+
readonly '900': "#3a3837";
|
|
2210
|
+
readonly '950': "#232323";
|
|
1753
2211
|
readonly '975': "#191919";
|
|
1754
2212
|
readonly '1000': "#101010";
|
|
1755
2213
|
};
|
|
@@ -1817,16 +2275,16 @@ export declare const darkTheme: {
|
|
|
1817
2275
|
readonly purple: {
|
|
1818
2276
|
readonly '0': "#f7f6f9";
|
|
1819
2277
|
readonly '50': "#eeebf4";
|
|
1820
|
-
readonly '100': "#
|
|
1821
|
-
readonly '200': "#
|
|
1822
|
-
readonly '300': "#
|
|
1823
|
-
readonly '400': "#
|
|
1824
|
-
readonly '500': "#
|
|
1825
|
-
readonly '600': "#
|
|
2278
|
+
readonly '100': "#ddd5eb";
|
|
2279
|
+
readonly '200': "#c6b5e2";
|
|
2280
|
+
readonly '300': "#af90de";
|
|
2281
|
+
readonly '400': "#996cda";
|
|
2282
|
+
readonly '500': "#8851d6";
|
|
2283
|
+
readonly '600': "#8149ce";
|
|
1826
2284
|
readonly '700': "#7a42c8";
|
|
1827
|
-
readonly '800': "#
|
|
1828
|
-
readonly '900': "#
|
|
1829
|
-
readonly '950': "#
|
|
2285
|
+
readonly '800': "#5c2ca9";
|
|
2286
|
+
readonly '900': "#442484";
|
|
2287
|
+
readonly '950': "#331c68";
|
|
1830
2288
|
readonly '1000': "#26164f";
|
|
1831
2289
|
};
|
|
1832
2290
|
readonly red: {
|
|
@@ -2431,7 +2889,7 @@ export declare const themes: {
|
|
|
2431
2889
|
readonly variants: {
|
|
2432
2890
|
readonly hardShadow: {
|
|
2433
2891
|
readonly '1': {
|
|
2434
|
-
readonly shadowColor: "#
|
|
2892
|
+
readonly shadowColor: "#3a3837";
|
|
2435
2893
|
readonly shadowOffset: {
|
|
2436
2894
|
readonly width: -2;
|
|
2437
2895
|
readonly height: 2;
|
|
@@ -2441,7 +2899,7 @@ export declare const themes: {
|
|
|
2441
2899
|
readonly elevation: 10;
|
|
2442
2900
|
};
|
|
2443
2901
|
readonly '2': {
|
|
2444
|
-
readonly shadowColor: "#
|
|
2902
|
+
readonly shadowColor: "#3a3837";
|
|
2445
2903
|
readonly shadowOffset: {
|
|
2446
2904
|
readonly width: 0;
|
|
2447
2905
|
readonly height: 3;
|
|
@@ -2451,7 +2909,7 @@ export declare const themes: {
|
|
|
2451
2909
|
readonly elevation: 10;
|
|
2452
2910
|
};
|
|
2453
2911
|
readonly '3': {
|
|
2454
|
-
readonly shadowColor: "#
|
|
2912
|
+
readonly shadowColor: "#3a3837";
|
|
2455
2913
|
readonly shadowOffset: {
|
|
2456
2914
|
readonly width: 2;
|
|
2457
2915
|
readonly height: 2;
|
|
@@ -2461,7 +2919,7 @@ export declare const themes: {
|
|
|
2461
2919
|
readonly elevation: 10;
|
|
2462
2920
|
};
|
|
2463
2921
|
readonly '4': {
|
|
2464
|
-
readonly shadowColor: "#
|
|
2922
|
+
readonly shadowColor: "#3a3837";
|
|
2465
2923
|
readonly shadowOffset: {
|
|
2466
2924
|
readonly width: 0;
|
|
2467
2925
|
readonly height: -3;
|
|
@@ -2471,7 +2929,7 @@ export declare const themes: {
|
|
|
2471
2929
|
readonly elevation: 10;
|
|
2472
2930
|
};
|
|
2473
2931
|
readonly '5': {
|
|
2474
|
-
readonly shadowColor: "#
|
|
2932
|
+
readonly shadowColor: "#3a3837";
|
|
2475
2933
|
readonly shadowOffset: {
|
|
2476
2934
|
readonly width: 0;
|
|
2477
2935
|
readonly height: 3;
|
|
@@ -2483,7 +2941,7 @@ export declare const themes: {
|
|
|
2483
2941
|
};
|
|
2484
2942
|
readonly softShadow: {
|
|
2485
2943
|
readonly '1': {
|
|
2486
|
-
readonly shadowColor: "#
|
|
2944
|
+
readonly shadowColor: "#3a3837";
|
|
2487
2945
|
readonly shadowOffset: {
|
|
2488
2946
|
readonly width: 0;
|
|
2489
2947
|
readonly height: 0;
|
|
@@ -2491,13 +2949,13 @@ export declare const themes: {
|
|
|
2491
2949
|
readonly shadowRadius: 10;
|
|
2492
2950
|
readonly shadowOpacity: 0.1;
|
|
2493
2951
|
readonly _android: {
|
|
2494
|
-
readonly shadowColor: "#
|
|
2952
|
+
readonly shadowColor: "#3a3837";
|
|
2495
2953
|
readonly elevation: 5;
|
|
2496
2954
|
readonly shadowOpacity: 0.05;
|
|
2497
2955
|
};
|
|
2498
2956
|
};
|
|
2499
2957
|
readonly '2': {
|
|
2500
|
-
readonly shadowColor: "#
|
|
2958
|
+
readonly shadowColor: "#3a3837";
|
|
2501
2959
|
readonly shadowOffset: {
|
|
2502
2960
|
readonly width: 0;
|
|
2503
2961
|
readonly height: 0;
|
|
@@ -2506,13 +2964,13 @@ export declare const themes: {
|
|
|
2506
2964
|
readonly elevation: 3;
|
|
2507
2965
|
readonly shadowOpacity: 0.1;
|
|
2508
2966
|
readonly _android: {
|
|
2509
|
-
readonly shadowColor: "#
|
|
2967
|
+
readonly shadowColor: "#3a3837";
|
|
2510
2968
|
readonly elevation: 10;
|
|
2511
2969
|
readonly shadowOpacity: 0.1;
|
|
2512
2970
|
};
|
|
2513
2971
|
};
|
|
2514
2972
|
readonly '3': {
|
|
2515
|
-
readonly shadowColor: "#
|
|
2973
|
+
readonly shadowColor: "#3a3837";
|
|
2516
2974
|
readonly shadowOffset: {
|
|
2517
2975
|
readonly width: 0;
|
|
2518
2976
|
readonly height: 0;
|
|
@@ -2521,13 +2979,13 @@ export declare const themes: {
|
|
|
2521
2979
|
readonly shadowOpacity: 0.1;
|
|
2522
2980
|
readonly elevation: 4;
|
|
2523
2981
|
readonly _android: {
|
|
2524
|
-
readonly shadowColor: "#
|
|
2982
|
+
readonly shadowColor: "#3a3837";
|
|
2525
2983
|
readonly elevation: 15;
|
|
2526
2984
|
readonly shadowOpacity: 0.15;
|
|
2527
2985
|
};
|
|
2528
2986
|
};
|
|
2529
2987
|
readonly '4': {
|
|
2530
|
-
readonly shadowColor: "#
|
|
2988
|
+
readonly shadowColor: "#3a3837";
|
|
2531
2989
|
readonly shadowOffset: {
|
|
2532
2990
|
readonly width: 0;
|
|
2533
2991
|
readonly height: 0;
|
|
@@ -2536,7 +2994,7 @@ export declare const themes: {
|
|
|
2536
2994
|
readonly shadowOpacity: 0.1;
|
|
2537
2995
|
readonly elevation: 10;
|
|
2538
2996
|
readonly _android: {
|
|
2539
|
-
readonly shadowColor: "#
|
|
2997
|
+
readonly shadowColor: "#3a3837";
|
|
2540
2998
|
readonly elevation: 20;
|
|
2541
2999
|
readonly shadowOpacity: 0.2;
|
|
2542
3000
|
};
|
|
@@ -2588,19 +3046,248 @@ export declare const themes: {
|
|
|
2588
3046
|
readonly color: {
|
|
2589
3047
|
readonly white: "#ffffff";
|
|
2590
3048
|
readonly black: "#000000";
|
|
2591
|
-
readonly background:
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
3049
|
+
readonly background: {
|
|
3050
|
+
readonly brand: "#7a42c8";
|
|
3051
|
+
readonly primary: "#fcfbf2";
|
|
3052
|
+
readonly secondary: "#ffffff";
|
|
3053
|
+
};
|
|
3054
|
+
readonly border: {
|
|
3055
|
+
readonly strong: "#101010";
|
|
3056
|
+
readonly subtle: "#d4d2c0";
|
|
3057
|
+
};
|
|
3058
|
+
readonly feedback: {
|
|
3059
|
+
readonly danger: {
|
|
3060
|
+
readonly border: "#de2612";
|
|
3061
|
+
readonly foreground: {
|
|
3062
|
+
readonly default: "#fcfbf2";
|
|
3063
|
+
readonly subtle: "#de2612";
|
|
3064
|
+
};
|
|
3065
|
+
readonly surface: {
|
|
3066
|
+
readonly default: "#de2612";
|
|
3067
|
+
readonly subtle: "#ffccc5";
|
|
3068
|
+
};
|
|
3069
|
+
};
|
|
3070
|
+
readonly functional: {
|
|
3071
|
+
readonly border: "#888888";
|
|
3072
|
+
readonly foreground: {
|
|
3073
|
+
readonly default: "#fcfbf2";
|
|
3074
|
+
readonly subtle: "#888888";
|
|
3075
|
+
};
|
|
3076
|
+
readonly surface: {
|
|
3077
|
+
readonly default: "#888888";
|
|
3078
|
+
readonly subtle: "#d3d3d3";
|
|
3079
|
+
};
|
|
3080
|
+
};
|
|
3081
|
+
readonly info: {
|
|
3082
|
+
readonly border: "#1c6cd4";
|
|
3083
|
+
readonly foreground: {
|
|
3084
|
+
readonly default: "#fcfbf2";
|
|
3085
|
+
readonly subtle: "#1c6cd4";
|
|
3086
|
+
};
|
|
3087
|
+
readonly surface: {
|
|
3088
|
+
readonly default: "#1c6cd4";
|
|
3089
|
+
readonly subtle: "#bcddff";
|
|
3090
|
+
};
|
|
3091
|
+
};
|
|
3092
|
+
readonly positive: {
|
|
3093
|
+
readonly border: "#0f834a";
|
|
3094
|
+
readonly foreground: {
|
|
3095
|
+
readonly default: "#fcfbf2";
|
|
3096
|
+
readonly subtle: "#0f834a";
|
|
3097
|
+
};
|
|
3098
|
+
readonly surface: {
|
|
3099
|
+
readonly default: "#0f834a";
|
|
3100
|
+
readonly subtle: "#a2e2c3";
|
|
3101
|
+
};
|
|
3102
|
+
};
|
|
3103
|
+
readonly warning: {
|
|
3104
|
+
readonly border: "#be5400";
|
|
3105
|
+
readonly foreground: {
|
|
3106
|
+
readonly default: "#fcfbf2";
|
|
3107
|
+
readonly subtle: "#be5400";
|
|
3108
|
+
};
|
|
3109
|
+
readonly surface: {
|
|
3110
|
+
readonly default: "#be5400";
|
|
3111
|
+
readonly subtle: "#ffcca8";
|
|
3112
|
+
};
|
|
3113
|
+
};
|
|
3114
|
+
};
|
|
3115
|
+
readonly focus: {
|
|
3116
|
+
readonly inverted: "#fcfbf2";
|
|
3117
|
+
readonly primary: "#101010";
|
|
3118
|
+
};
|
|
3119
|
+
readonly icon: {
|
|
3120
|
+
readonly inverted: "#fcfbf2";
|
|
3121
|
+
readonly primary: "#101010";
|
|
3122
|
+
};
|
|
3123
|
+
readonly interactive: {
|
|
3124
|
+
readonly affirmative: {
|
|
3125
|
+
readonly border: {
|
|
3126
|
+
readonly strong: "#101010";
|
|
3127
|
+
readonly subtle: "#04663a";
|
|
3128
|
+
};
|
|
3129
|
+
readonly foreground: {
|
|
3130
|
+
readonly strong: "#fcfbf2";
|
|
3131
|
+
readonly subtle: "#04663a";
|
|
3132
|
+
};
|
|
3133
|
+
readonly surface: {
|
|
3134
|
+
readonly strong: {
|
|
3135
|
+
readonly active: "#074b2a";
|
|
3136
|
+
readonly default: "#0f834a";
|
|
3137
|
+
readonly hover: "#04663a";
|
|
3138
|
+
};
|
|
3139
|
+
readonly subtle: {
|
|
3140
|
+
readonly active: "#c5edda";
|
|
3141
|
+
readonly hover: "#e7f9f0";
|
|
3142
|
+
};
|
|
3143
|
+
};
|
|
3144
|
+
};
|
|
3145
|
+
readonly brand: {
|
|
3146
|
+
readonly border: {
|
|
3147
|
+
readonly strong: "#101010";
|
|
3148
|
+
};
|
|
3149
|
+
readonly foreground: {
|
|
3150
|
+
readonly strong: "#fcfbf2";
|
|
3151
|
+
};
|
|
3152
|
+
readonly surface: {
|
|
3153
|
+
readonly strong: {
|
|
3154
|
+
readonly active: "#442484";
|
|
3155
|
+
readonly default: "#7a42c8";
|
|
3156
|
+
readonly hover: "#5c2ca9";
|
|
3157
|
+
};
|
|
3158
|
+
};
|
|
3159
|
+
};
|
|
3160
|
+
readonly destructive: {
|
|
3161
|
+
readonly border: {
|
|
3162
|
+
readonly strong: "#101010";
|
|
3163
|
+
readonly subtle: "#a4281e";
|
|
3164
|
+
};
|
|
3165
|
+
readonly foreground: {
|
|
3166
|
+
readonly strong: "#fcfbf2";
|
|
3167
|
+
readonly subtle: "#a4281e";
|
|
3168
|
+
};
|
|
3169
|
+
readonly surface: {
|
|
3170
|
+
readonly strong: {
|
|
3171
|
+
readonly active: "#6b1f1a";
|
|
3172
|
+
readonly default: "#de2612";
|
|
3173
|
+
readonly hover: "#a4281e";
|
|
3174
|
+
};
|
|
3175
|
+
readonly subtle: {
|
|
3176
|
+
readonly active: "#ffe3df";
|
|
3177
|
+
readonly hover: "#fff3f1";
|
|
3178
|
+
};
|
|
3179
|
+
};
|
|
3180
|
+
};
|
|
3181
|
+
readonly functional: {
|
|
3182
|
+
readonly border: {
|
|
3183
|
+
readonly strong: "#101010";
|
|
3184
|
+
readonly subtle: "#101010";
|
|
3185
|
+
readonly inverted: "#f7f7f7";
|
|
3186
|
+
};
|
|
3187
|
+
readonly foreground: {
|
|
3188
|
+
readonly strong: "#fcfbf2";
|
|
3189
|
+
readonly subtle: "#101010";
|
|
3190
|
+
readonly inverted: "#f7f7f7";
|
|
3191
|
+
};
|
|
3192
|
+
readonly surface: {
|
|
3193
|
+
readonly strong: {
|
|
3194
|
+
readonly active: "#4c4c4c";
|
|
3195
|
+
readonly default: "#888888";
|
|
3196
|
+
readonly hover: "#5b5b5b";
|
|
3197
|
+
};
|
|
3198
|
+
readonly subtle: {
|
|
3199
|
+
readonly active: "#d3d3d3";
|
|
3200
|
+
readonly hover: "#ebebeb";
|
|
3201
|
+
readonly inverted: {
|
|
3202
|
+
readonly active: "#3a3837";
|
|
3203
|
+
readonly hover: "#3f3f3f";
|
|
3204
|
+
};
|
|
3205
|
+
};
|
|
3206
|
+
};
|
|
3207
|
+
};
|
|
3208
|
+
readonly highlight: {
|
|
3209
|
+
readonly border: {
|
|
3210
|
+
readonly strong: "#101010";
|
|
3211
|
+
};
|
|
3212
|
+
readonly foreground: {
|
|
3213
|
+
readonly strong: "#101010";
|
|
3214
|
+
};
|
|
3215
|
+
readonly surface: {
|
|
3216
|
+
readonly strong: {
|
|
3217
|
+
readonly active: "#d1950b";
|
|
3218
|
+
readonly default: "#ffb921";
|
|
3219
|
+
readonly hover: "#eba400";
|
|
3220
|
+
};
|
|
3221
|
+
};
|
|
3222
|
+
};
|
|
3223
|
+
readonly neutral: {
|
|
3224
|
+
readonly border: {
|
|
3225
|
+
readonly subtle: "#101010";
|
|
3226
|
+
};
|
|
3227
|
+
readonly foreground: {
|
|
3228
|
+
readonly subtle: "#101010";
|
|
3229
|
+
};
|
|
3230
|
+
readonly surface: {
|
|
3231
|
+
readonly subtle: {
|
|
3232
|
+
readonly active: "#f1efe4";
|
|
3233
|
+
readonly hover: "#f7f6eb";
|
|
3234
|
+
};
|
|
3235
|
+
};
|
|
3236
|
+
};
|
|
3237
|
+
};
|
|
2595
3238
|
readonly shadow: {
|
|
2596
|
-
readonly
|
|
2597
|
-
readonly
|
|
2598
|
-
readonly
|
|
2599
|
-
readonly
|
|
2600
|
-
readonly
|
|
2601
|
-
readonly
|
|
2602
|
-
readonly
|
|
2603
|
-
readonly
|
|
3239
|
+
readonly brand: "#7a42c8";
|
|
3240
|
+
readonly broadband: "#8cba3b";
|
|
3241
|
+
readonly cashback: "#be7aeb";
|
|
3242
|
+
readonly default: "#101010";
|
|
3243
|
+
readonly energy: "#6db5c3";
|
|
3244
|
+
readonly insurance: "#ff7b00";
|
|
3245
|
+
readonly mobile: "#ee6dbb";
|
|
3246
|
+
readonly pig: "#f295ff";
|
|
3247
|
+
};
|
|
3248
|
+
readonly surface: {
|
|
3249
|
+
readonly brand: {
|
|
3250
|
+
readonly default: "#7a42c8";
|
|
3251
|
+
readonly strong: "#26164f";
|
|
3252
|
+
readonly subtle: "#af90de";
|
|
3253
|
+
};
|
|
3254
|
+
readonly broadband: {
|
|
3255
|
+
readonly default: "#8cba3b";
|
|
3256
|
+
readonly subtle: "#d2e6b0";
|
|
3257
|
+
};
|
|
3258
|
+
readonly cashback: {
|
|
3259
|
+
readonly default: "#be7aeb";
|
|
3260
|
+
readonly subtle: "#dfbdf5";
|
|
3261
|
+
};
|
|
3262
|
+
readonly energy: {
|
|
3263
|
+
readonly default: "#6db5c3";
|
|
3264
|
+
readonly subtle: "#bddee4";
|
|
3265
|
+
};
|
|
3266
|
+
readonly highlight: {
|
|
3267
|
+
readonly default: "#ffb921";
|
|
3268
|
+
readonly subtle: "#ffd885";
|
|
3269
|
+
};
|
|
3270
|
+
readonly insurance: {
|
|
3271
|
+
readonly default: "#ff7b00";
|
|
3272
|
+
readonly subtle: "#ffb46d";
|
|
3273
|
+
};
|
|
3274
|
+
readonly mobile: {
|
|
3275
|
+
readonly default: "#ee6dbb";
|
|
3276
|
+
readonly subtle: "#fad0e9";
|
|
3277
|
+
};
|
|
3278
|
+
readonly neutral: {
|
|
3279
|
+
readonly strong: "#ffffff";
|
|
3280
|
+
readonly subtle: "#fcfbf2";
|
|
3281
|
+
};
|
|
3282
|
+
readonly pig: {
|
|
3283
|
+
readonly default: "#f295ff";
|
|
3284
|
+
readonly subtle: "#f9ceff";
|
|
3285
|
+
};
|
|
3286
|
+
};
|
|
3287
|
+
readonly text: {
|
|
3288
|
+
readonly inverted: "#fcfbf2";
|
|
3289
|
+
readonly primary: "#101010";
|
|
3290
|
+
readonly secondary: "#888888";
|
|
2604
3291
|
};
|
|
2605
3292
|
readonly blue: {
|
|
2606
3293
|
readonly '0': "#f8fbff";
|
|
@@ -2679,17 +3366,17 @@ export declare const themes: {
|
|
|
2679
3366
|
};
|
|
2680
3367
|
readonly grey: {
|
|
2681
3368
|
readonly '0': "#ffffff";
|
|
2682
|
-
readonly '50': "#
|
|
2683
|
-
readonly '100': "#
|
|
2684
|
-
readonly '200': "#
|
|
3369
|
+
readonly '50': "#f7f7f7";
|
|
3370
|
+
readonly '100': "#ebebeb";
|
|
3371
|
+
readonly '200': "#d3d3d3";
|
|
2685
3372
|
readonly '300': "#b2afae";
|
|
2686
|
-
readonly '400': "#
|
|
2687
|
-
readonly '500': "#
|
|
2688
|
-
readonly '600': "#
|
|
2689
|
-
readonly '700': "#
|
|
2690
|
-
readonly '800': "#
|
|
2691
|
-
readonly '900': "#
|
|
2692
|
-
readonly '950': "#
|
|
3373
|
+
readonly '400': "#919191";
|
|
3374
|
+
readonly '500': "#888888";
|
|
3375
|
+
readonly '600': "#5b5b5b";
|
|
3376
|
+
readonly '700': "#4c4c4c";
|
|
3377
|
+
readonly '800': "#3f3f3f";
|
|
3378
|
+
readonly '900': "#3a3837";
|
|
3379
|
+
readonly '950': "#232323";
|
|
2693
3380
|
readonly '975': "#191919";
|
|
2694
3381
|
readonly '1000': "#101010";
|
|
2695
3382
|
};
|
|
@@ -2757,16 +3444,16 @@ export declare const themes: {
|
|
|
2757
3444
|
readonly purple: {
|
|
2758
3445
|
readonly '0': "#f7f6f9";
|
|
2759
3446
|
readonly '50': "#eeebf4";
|
|
2760
|
-
readonly '100': "#
|
|
2761
|
-
readonly '200': "#
|
|
2762
|
-
readonly '300': "#
|
|
2763
|
-
readonly '400': "#
|
|
2764
|
-
readonly '500': "#
|
|
2765
|
-
readonly '600': "#
|
|
3447
|
+
readonly '100': "#ddd5eb";
|
|
3448
|
+
readonly '200': "#c6b5e2";
|
|
3449
|
+
readonly '300': "#af90de";
|
|
3450
|
+
readonly '400': "#996cda";
|
|
3451
|
+
readonly '500': "#8851d6";
|
|
3452
|
+
readonly '600': "#8149ce";
|
|
2766
3453
|
readonly '700': "#7a42c8";
|
|
2767
|
-
readonly '800': "#
|
|
2768
|
-
readonly '900': "#
|
|
2769
|
-
readonly '950': "#
|
|
3454
|
+
readonly '800': "#5c2ca9";
|
|
3455
|
+
readonly '900': "#442484";
|
|
3456
|
+
readonly '950': "#331c68";
|
|
2770
3457
|
readonly '1000': "#26164f";
|
|
2771
3458
|
};
|
|
2772
3459
|
readonly red: {
|
|
@@ -2823,7 +3510,7 @@ export declare const themes: {
|
|
|
2823
3510
|
focusVisible: {
|
|
2824
3511
|
outlineStyle: string;
|
|
2825
3512
|
outlineWidth: number;
|
|
2826
|
-
outlineColor: "#
|
|
3513
|
+
outlineColor: "#ebebeb";
|
|
2827
3514
|
outlineOffset: number;
|
|
2828
3515
|
};
|
|
2829
3516
|
};
|
|
@@ -3370,7 +4057,7 @@ export declare const themes: {
|
|
|
3370
4057
|
readonly variants: {
|
|
3371
4058
|
readonly hardShadow: {
|
|
3372
4059
|
readonly '1': {
|
|
3373
|
-
readonly shadowColor: "#
|
|
4060
|
+
readonly shadowColor: "#3a3837";
|
|
3374
4061
|
readonly shadowOffset: {
|
|
3375
4062
|
readonly width: -2;
|
|
3376
4063
|
readonly height: 2;
|
|
@@ -3380,7 +4067,7 @@ export declare const themes: {
|
|
|
3380
4067
|
readonly elevation: 10;
|
|
3381
4068
|
};
|
|
3382
4069
|
readonly '2': {
|
|
3383
|
-
readonly shadowColor: "#
|
|
4070
|
+
readonly shadowColor: "#3a3837";
|
|
3384
4071
|
readonly shadowOffset: {
|
|
3385
4072
|
readonly width: 0;
|
|
3386
4073
|
readonly height: 3;
|
|
@@ -3390,7 +4077,7 @@ export declare const themes: {
|
|
|
3390
4077
|
readonly elevation: 10;
|
|
3391
4078
|
};
|
|
3392
4079
|
readonly '3': {
|
|
3393
|
-
readonly shadowColor: "#
|
|
4080
|
+
readonly shadowColor: "#3a3837";
|
|
3394
4081
|
readonly shadowOffset: {
|
|
3395
4082
|
readonly width: 2;
|
|
3396
4083
|
readonly height: 2;
|
|
@@ -3400,7 +4087,7 @@ export declare const themes: {
|
|
|
3400
4087
|
readonly elevation: 10;
|
|
3401
4088
|
};
|
|
3402
4089
|
readonly '4': {
|
|
3403
|
-
readonly shadowColor: "#
|
|
4090
|
+
readonly shadowColor: "#3a3837";
|
|
3404
4091
|
readonly shadowOffset: {
|
|
3405
4092
|
readonly width: 0;
|
|
3406
4093
|
readonly height: -3;
|
|
@@ -3410,7 +4097,7 @@ export declare const themes: {
|
|
|
3410
4097
|
readonly elevation: 10;
|
|
3411
4098
|
};
|
|
3412
4099
|
readonly '5': {
|
|
3413
|
-
readonly shadowColor: "#
|
|
4100
|
+
readonly shadowColor: "#3a3837";
|
|
3414
4101
|
readonly shadowOffset: {
|
|
3415
4102
|
readonly width: 0;
|
|
3416
4103
|
readonly height: 3;
|
|
@@ -3422,7 +4109,7 @@ export declare const themes: {
|
|
|
3422
4109
|
};
|
|
3423
4110
|
readonly softShadow: {
|
|
3424
4111
|
readonly '1': {
|
|
3425
|
-
readonly shadowColor: "#
|
|
4112
|
+
readonly shadowColor: "#3a3837";
|
|
3426
4113
|
readonly shadowOffset: {
|
|
3427
4114
|
readonly width: 0;
|
|
3428
4115
|
readonly height: 0;
|
|
@@ -3430,13 +4117,13 @@ export declare const themes: {
|
|
|
3430
4117
|
readonly shadowRadius: 10;
|
|
3431
4118
|
readonly shadowOpacity: 0.1;
|
|
3432
4119
|
readonly _android: {
|
|
3433
|
-
readonly shadowColor: "#
|
|
4120
|
+
readonly shadowColor: "#3a3837";
|
|
3434
4121
|
readonly elevation: 5;
|
|
3435
4122
|
readonly shadowOpacity: 0.05;
|
|
3436
4123
|
};
|
|
3437
4124
|
};
|
|
3438
4125
|
readonly '2': {
|
|
3439
|
-
readonly shadowColor: "#
|
|
4126
|
+
readonly shadowColor: "#3a3837";
|
|
3440
4127
|
readonly shadowOffset: {
|
|
3441
4128
|
readonly width: 0;
|
|
3442
4129
|
readonly height: 0;
|
|
@@ -3445,13 +4132,13 @@ export declare const themes: {
|
|
|
3445
4132
|
readonly elevation: 3;
|
|
3446
4133
|
readonly shadowOpacity: 0.1;
|
|
3447
4134
|
readonly _android: {
|
|
3448
|
-
readonly shadowColor: "#
|
|
4135
|
+
readonly shadowColor: "#3a3837";
|
|
3449
4136
|
readonly elevation: 10;
|
|
3450
4137
|
readonly shadowOpacity: 0.1;
|
|
3451
4138
|
};
|
|
3452
4139
|
};
|
|
3453
4140
|
readonly '3': {
|
|
3454
|
-
readonly shadowColor: "#
|
|
4141
|
+
readonly shadowColor: "#3a3837";
|
|
3455
4142
|
readonly shadowOffset: {
|
|
3456
4143
|
readonly width: 0;
|
|
3457
4144
|
readonly height: 0;
|
|
@@ -3460,13 +4147,13 @@ export declare const themes: {
|
|
|
3460
4147
|
readonly shadowOpacity: 0.1;
|
|
3461
4148
|
readonly elevation: 4;
|
|
3462
4149
|
readonly _android: {
|
|
3463
|
-
readonly shadowColor: "#
|
|
4150
|
+
readonly shadowColor: "#3a3837";
|
|
3464
4151
|
readonly elevation: 15;
|
|
3465
4152
|
readonly shadowOpacity: 0.15;
|
|
3466
4153
|
};
|
|
3467
4154
|
};
|
|
3468
4155
|
readonly '4': {
|
|
3469
|
-
readonly shadowColor: "#
|
|
4156
|
+
readonly shadowColor: "#3a3837";
|
|
3470
4157
|
readonly shadowOffset: {
|
|
3471
4158
|
readonly width: 0;
|
|
3472
4159
|
readonly height: 0;
|
|
@@ -3475,7 +4162,7 @@ export declare const themes: {
|
|
|
3475
4162
|
readonly shadowOpacity: 0.1;
|
|
3476
4163
|
readonly elevation: 10;
|
|
3477
4164
|
readonly _android: {
|
|
3478
|
-
readonly shadowColor: "#
|
|
4165
|
+
readonly shadowColor: "#3a3837";
|
|
3479
4166
|
readonly elevation: 20;
|
|
3480
4167
|
readonly shadowOpacity: 0.2;
|
|
3481
4168
|
};
|
|
@@ -3527,19 +4214,248 @@ export declare const themes: {
|
|
|
3527
4214
|
readonly color: {
|
|
3528
4215
|
readonly white: "#ffffff";
|
|
3529
4216
|
readonly black: "#000000";
|
|
3530
|
-
readonly background:
|
|
3531
|
-
|
|
3532
|
-
|
|
3533
|
-
|
|
4217
|
+
readonly background: {
|
|
4218
|
+
readonly brand: "#996cda";
|
|
4219
|
+
readonly primary: "#191917";
|
|
4220
|
+
readonly secondary: "#232323";
|
|
4221
|
+
};
|
|
4222
|
+
readonly border: {
|
|
4223
|
+
readonly strong: "#ebebeb";
|
|
4224
|
+
readonly subtle: "#4c473d";
|
|
4225
|
+
};
|
|
4226
|
+
readonly feedback: {
|
|
4227
|
+
readonly danger: {
|
|
4228
|
+
readonly border: "#ff7964";
|
|
4229
|
+
readonly foreground: {
|
|
4230
|
+
readonly default: "#fcfbf2";
|
|
4231
|
+
readonly subtle: "#ff7964";
|
|
4232
|
+
};
|
|
4233
|
+
readonly surface: {
|
|
4234
|
+
readonly default: "#de2612";
|
|
4235
|
+
readonly subtle: "#521a16";
|
|
4236
|
+
};
|
|
4237
|
+
};
|
|
4238
|
+
readonly functional: {
|
|
4239
|
+
readonly border: "#b2afae";
|
|
4240
|
+
readonly foreground: {
|
|
4241
|
+
readonly default: "#fcfbf2";
|
|
4242
|
+
readonly subtle: "#b2afae";
|
|
4243
|
+
};
|
|
4244
|
+
readonly surface: {
|
|
4245
|
+
readonly default: "#888888";
|
|
4246
|
+
readonly subtle: "#232323";
|
|
4247
|
+
};
|
|
4248
|
+
};
|
|
4249
|
+
readonly info: {
|
|
4250
|
+
readonly border: "#6bb0ff";
|
|
4251
|
+
readonly foreground: {
|
|
4252
|
+
readonly default: "#fcfbf2";
|
|
4253
|
+
readonly subtle: "#6bb0ff";
|
|
4254
|
+
};
|
|
4255
|
+
readonly surface: {
|
|
4256
|
+
readonly default: "#1c6cd4";
|
|
4257
|
+
readonly subtle: "#042455";
|
|
4258
|
+
};
|
|
4259
|
+
};
|
|
4260
|
+
readonly positive: {
|
|
4261
|
+
readonly border: "#58ca93";
|
|
4262
|
+
readonly foreground: {
|
|
4263
|
+
readonly default: "#fcfbf2";
|
|
4264
|
+
readonly subtle: "#58ca93";
|
|
4265
|
+
};
|
|
4266
|
+
readonly surface: {
|
|
4267
|
+
readonly default: "#0f834a";
|
|
4268
|
+
readonly subtle: "#033d21";
|
|
4269
|
+
};
|
|
4270
|
+
};
|
|
4271
|
+
readonly warning: {
|
|
4272
|
+
readonly border: "#ff9639";
|
|
4273
|
+
readonly foreground: {
|
|
4274
|
+
readonly default: "#fcfbf2";
|
|
4275
|
+
readonly subtle: "#ff9639";
|
|
4276
|
+
};
|
|
4277
|
+
readonly surface: {
|
|
4278
|
+
readonly default: "#cb5b00";
|
|
4279
|
+
readonly subtle: "#6b2d00";
|
|
4280
|
+
};
|
|
4281
|
+
};
|
|
4282
|
+
};
|
|
4283
|
+
readonly focus: {
|
|
4284
|
+
readonly inverted: "#fcfbf2";
|
|
4285
|
+
readonly primary: "#ebebeb";
|
|
4286
|
+
};
|
|
4287
|
+
readonly icon: {
|
|
4288
|
+
readonly inverted: "#fcfbf2";
|
|
4289
|
+
readonly primary: "#ebebeb";
|
|
4290
|
+
};
|
|
4291
|
+
readonly interactive: {
|
|
4292
|
+
readonly affirmative: {
|
|
4293
|
+
readonly border: {
|
|
4294
|
+
readonly strong: "#ebebeb";
|
|
4295
|
+
readonly subtle: "#58ca93";
|
|
4296
|
+
};
|
|
4297
|
+
readonly foreground: {
|
|
4298
|
+
readonly strong: "#191917";
|
|
4299
|
+
readonly subtle: "#58ca93";
|
|
4300
|
+
};
|
|
4301
|
+
readonly surface: {
|
|
4302
|
+
readonly strong: {
|
|
4303
|
+
readonly active: "#58ca93";
|
|
4304
|
+
readonly default: "#19a660";
|
|
4305
|
+
readonly hover: "#36bf7d";
|
|
4306
|
+
};
|
|
4307
|
+
readonly subtle: {
|
|
4308
|
+
readonly active: "#033d21";
|
|
4309
|
+
readonly hover: "#002e18";
|
|
4310
|
+
};
|
|
4311
|
+
};
|
|
4312
|
+
};
|
|
4313
|
+
readonly brand: {
|
|
4314
|
+
readonly border: {
|
|
4315
|
+
readonly strong: "#ebebeb";
|
|
4316
|
+
};
|
|
4317
|
+
readonly foreground: {
|
|
4318
|
+
readonly strong: "#191917";
|
|
4319
|
+
};
|
|
4320
|
+
readonly surface: {
|
|
4321
|
+
readonly strong: {
|
|
4322
|
+
readonly active: "#c6b5e2";
|
|
4323
|
+
readonly default: "#996cda";
|
|
4324
|
+
readonly hover: "#af90de";
|
|
4325
|
+
};
|
|
4326
|
+
};
|
|
4327
|
+
};
|
|
4328
|
+
readonly destructive: {
|
|
4329
|
+
readonly border: {
|
|
4330
|
+
readonly strong: "#ebebeb";
|
|
4331
|
+
readonly subtle: "#ff7964";
|
|
4332
|
+
};
|
|
4333
|
+
readonly foreground: {
|
|
4334
|
+
readonly strong: "#191917";
|
|
4335
|
+
readonly subtle: "#ff7964";
|
|
4336
|
+
};
|
|
4337
|
+
readonly surface: {
|
|
4338
|
+
readonly strong: {
|
|
4339
|
+
readonly active: "#ff7964";
|
|
4340
|
+
readonly default: "#f4412a";
|
|
4341
|
+
readonly hover: "#ff634a";
|
|
4342
|
+
};
|
|
4343
|
+
readonly subtle: {
|
|
4344
|
+
readonly active: "#521a16";
|
|
4345
|
+
readonly hover: "#3b1512";
|
|
4346
|
+
};
|
|
4347
|
+
};
|
|
4348
|
+
};
|
|
4349
|
+
readonly functional: {
|
|
4350
|
+
readonly border: {
|
|
4351
|
+
readonly strong: "#ebebeb";
|
|
4352
|
+
readonly subtle: "#ebebeb";
|
|
4353
|
+
readonly inverted: "#f7f7f7";
|
|
4354
|
+
};
|
|
4355
|
+
readonly foreground: {
|
|
4356
|
+
readonly strong: "#fcfbf2";
|
|
4357
|
+
readonly subtle: "#ebebeb";
|
|
4358
|
+
readonly inverted: "#f7f7f7";
|
|
4359
|
+
};
|
|
4360
|
+
readonly surface: {
|
|
4361
|
+
readonly strong: {
|
|
4362
|
+
readonly active: "#d3d3d3";
|
|
4363
|
+
readonly default: "#919191";
|
|
4364
|
+
readonly hover: "#b2afae";
|
|
4365
|
+
};
|
|
4366
|
+
readonly subtle: {
|
|
4367
|
+
readonly active: "#4c4c4c";
|
|
4368
|
+
readonly hover: "#3a3837";
|
|
4369
|
+
readonly inverted: {
|
|
4370
|
+
readonly active: "#d3d3d3";
|
|
4371
|
+
readonly hover: "#ebebeb";
|
|
4372
|
+
};
|
|
4373
|
+
};
|
|
4374
|
+
};
|
|
4375
|
+
};
|
|
4376
|
+
readonly highlight: {
|
|
4377
|
+
readonly border: {
|
|
4378
|
+
readonly strong: "#f7f7f7";
|
|
4379
|
+
};
|
|
4380
|
+
readonly foreground: {
|
|
4381
|
+
readonly strong: "#101010";
|
|
4382
|
+
};
|
|
4383
|
+
readonly surface: {
|
|
4384
|
+
readonly strong: {
|
|
4385
|
+
readonly active: "#ffd885";
|
|
4386
|
+
readonly default: "#ffb921";
|
|
4387
|
+
readonly hover: "#ffc852";
|
|
4388
|
+
};
|
|
4389
|
+
};
|
|
4390
|
+
};
|
|
4391
|
+
readonly neutral: {
|
|
4392
|
+
readonly border: {
|
|
4393
|
+
readonly subtle: "#ebebeb";
|
|
4394
|
+
};
|
|
4395
|
+
readonly foreground: {
|
|
4396
|
+
readonly subtle: "#ebebeb";
|
|
4397
|
+
};
|
|
4398
|
+
readonly surface: {
|
|
4399
|
+
readonly subtle: {
|
|
4400
|
+
readonly active: "#30302c";
|
|
4401
|
+
readonly hover: "#282825";
|
|
4402
|
+
};
|
|
4403
|
+
};
|
|
4404
|
+
};
|
|
4405
|
+
};
|
|
3534
4406
|
readonly shadow: {
|
|
3535
|
-
readonly
|
|
3536
|
-
readonly
|
|
3537
|
-
readonly
|
|
3538
|
-
readonly
|
|
3539
|
-
readonly
|
|
3540
|
-
readonly
|
|
3541
|
-
readonly
|
|
3542
|
-
readonly
|
|
4407
|
+
readonly brand: "#7a42c8";
|
|
4408
|
+
readonly broadband: "#506c21";
|
|
4409
|
+
readonly cashback: "#8b2bc9";
|
|
4410
|
+
readonly default: "#f7f7f7";
|
|
4411
|
+
readonly energy: "#326e7a";
|
|
4412
|
+
readonly insurance: "#9b4c0e";
|
|
4413
|
+
readonly mobile: "#a7266d";
|
|
4414
|
+
readonly pig: "#8f358f";
|
|
4415
|
+
};
|
|
4416
|
+
readonly surface: {
|
|
4417
|
+
readonly brand: {
|
|
4418
|
+
readonly default: "#996cda";
|
|
4419
|
+
readonly strong: "#26164f";
|
|
4420
|
+
readonly subtle: "#442484";
|
|
4421
|
+
};
|
|
4422
|
+
readonly broadband: {
|
|
4423
|
+
readonly default: "#506c21";
|
|
4424
|
+
readonly subtle: "#35421c";
|
|
4425
|
+
};
|
|
4426
|
+
readonly cashback: {
|
|
4427
|
+
readonly default: "#8b2bc9";
|
|
4428
|
+
readonly subtle: "#522270";
|
|
4429
|
+
};
|
|
4430
|
+
readonly energy: {
|
|
4431
|
+
readonly default: "#326e7a";
|
|
4432
|
+
readonly subtle: "#254348";
|
|
4433
|
+
};
|
|
4434
|
+
readonly highlight: {
|
|
4435
|
+
readonly default: "#ffb921";
|
|
4436
|
+
readonly subtle: "#756230";
|
|
4437
|
+
};
|
|
4438
|
+
readonly insurance: {
|
|
4439
|
+
readonly default: "#9b4c0e";
|
|
4440
|
+
readonly subtle: "#5a3213";
|
|
4441
|
+
};
|
|
4442
|
+
readonly mobile: {
|
|
4443
|
+
readonly default: "#a7266d";
|
|
4444
|
+
readonly subtle: "#601f42";
|
|
4445
|
+
};
|
|
4446
|
+
readonly neutral: {
|
|
4447
|
+
readonly strong: "#232323";
|
|
4448
|
+
readonly subtle: "#191917";
|
|
4449
|
+
};
|
|
4450
|
+
readonly pig: {
|
|
4451
|
+
readonly default: "#8f358f";
|
|
4452
|
+
readonly subtle: "#5d2167";
|
|
4453
|
+
};
|
|
4454
|
+
};
|
|
4455
|
+
readonly text: {
|
|
4456
|
+
readonly inverted: "#191917";
|
|
4457
|
+
readonly primary: "#ebebeb";
|
|
4458
|
+
readonly secondary: "#b2afae";
|
|
3543
4459
|
};
|
|
3544
4460
|
readonly blue: {
|
|
3545
4461
|
readonly '0': "#f8fbff";
|
|
@@ -3618,17 +4534,17 @@ export declare const themes: {
|
|
|
3618
4534
|
};
|
|
3619
4535
|
readonly grey: {
|
|
3620
4536
|
readonly '0': "#ffffff";
|
|
3621
|
-
readonly '50': "#
|
|
3622
|
-
readonly '100': "#
|
|
3623
|
-
readonly '200': "#
|
|
4537
|
+
readonly '50': "#f7f7f7";
|
|
4538
|
+
readonly '100': "#ebebeb";
|
|
4539
|
+
readonly '200': "#d3d3d3";
|
|
3624
4540
|
readonly '300': "#b2afae";
|
|
3625
|
-
readonly '400': "#
|
|
3626
|
-
readonly '500': "#
|
|
3627
|
-
readonly '600': "#
|
|
3628
|
-
readonly '700': "#
|
|
3629
|
-
readonly '800': "#
|
|
3630
|
-
readonly '900': "#
|
|
3631
|
-
readonly '950': "#
|
|
4541
|
+
readonly '400': "#919191";
|
|
4542
|
+
readonly '500': "#888888";
|
|
4543
|
+
readonly '600': "#5b5b5b";
|
|
4544
|
+
readonly '700': "#4c4c4c";
|
|
4545
|
+
readonly '800': "#3f3f3f";
|
|
4546
|
+
readonly '900': "#3a3837";
|
|
4547
|
+
readonly '950': "#232323";
|
|
3632
4548
|
readonly '975': "#191919";
|
|
3633
4549
|
readonly '1000': "#101010";
|
|
3634
4550
|
};
|
|
@@ -3696,16 +4612,16 @@ export declare const themes: {
|
|
|
3696
4612
|
readonly purple: {
|
|
3697
4613
|
readonly '0': "#f7f6f9";
|
|
3698
4614
|
readonly '50': "#eeebf4";
|
|
3699
|
-
readonly '100': "#
|
|
3700
|
-
readonly '200': "#
|
|
3701
|
-
readonly '300': "#
|
|
3702
|
-
readonly '400': "#
|
|
3703
|
-
readonly '500': "#
|
|
3704
|
-
readonly '600': "#
|
|
4615
|
+
readonly '100': "#ddd5eb";
|
|
4616
|
+
readonly '200': "#c6b5e2";
|
|
4617
|
+
readonly '300': "#af90de";
|
|
4618
|
+
readonly '400': "#996cda";
|
|
4619
|
+
readonly '500': "#8851d6";
|
|
4620
|
+
readonly '600': "#8149ce";
|
|
3705
4621
|
readonly '700': "#7a42c8";
|
|
3706
|
-
readonly '800': "#
|
|
3707
|
-
readonly '900': "#
|
|
3708
|
-
readonly '950': "#
|
|
4622
|
+
readonly '800': "#5c2ca9";
|
|
4623
|
+
readonly '900': "#442484";
|
|
4624
|
+
readonly '950': "#331c68";
|
|
3709
4625
|
readonly '1000': "#26164f";
|
|
3710
4626
|
};
|
|
3711
4627
|
readonly red: {
|