@lunit/design-system 1.0.0-a.1 → 1.0.0-a.3
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/.babelrc.json +16 -0
- package/dist/cjs/components/Alert/index.js +2 -0
- package/dist/cjs/components/Alert/index.js.map +1 -0
- package/dist/cjs/components/Button/index.js +2 -0
- package/dist/cjs/components/Button/index.js.map +1 -0
- package/dist/cjs/components/Checkbox/index.js +2 -0
- package/dist/cjs/components/Checkbox/index.js.map +1 -0
- package/dist/cjs/components/Chip/index.js +2 -0
- package/dist/cjs/components/Chip/index.js.map +1 -0
- package/dist/cjs/components/DataTable/index.js +2 -0
- package/dist/cjs/components/DataTable/index.js.map +1 -0
- package/dist/cjs/components/DatePicker/index.js +2 -0
- package/dist/cjs/components/DatePicker/index.js.map +1 -0
- package/dist/cjs/components/Dropdown/index.js +2 -0
- package/dist/cjs/components/Dropdown/index.js.map +1 -0
- package/dist/cjs/components/FormLabel/index.js +2 -0
- package/dist/cjs/components/FormLabel/index.js.map +1 -0
- package/dist/cjs/components/Modal/index.js +2 -0
- package/dist/cjs/components/Modal/index.js.map +1 -0
- package/dist/cjs/components/Radio/index.js +2 -0
- package/dist/cjs/components/Radio/index.js.map +1 -0
- package/dist/cjs/components/RadioGroup/index.js +2 -0
- package/dist/cjs/components/RadioGroup/index.js.map +1 -0
- package/dist/cjs/components/TextField/index.js +2 -0
- package/dist/cjs/components/TextField/index.js.map +1 -0
- package/dist/cjs/components/Toggle/index.js +2 -0
- package/dist/cjs/components/Toggle/index.js.map +1 -0
- package/dist/cjs/components/ToggleButton/index.js +2 -0
- package/dist/cjs/components/ToggleButton/index.js.map +1 -0
- package/dist/cjs/components/Tooltip/index.js +2 -0
- package/dist/cjs/components/Tooltip/index.js.map +1 -0
- package/dist/cjs/index.js +2 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/components/Alert/Alert.js +19 -0
- package/dist/components/Alert/Alert.js.map +1 -0
- package/dist/components/Alert/Alert.styled.js +48 -0
- package/dist/components/Alert/Alert.styled.js.map +1 -0
- package/dist/components/Alert/Alert.types.js +2 -0
- package/dist/components/Alert/Alert.types.js.map +1 -0
- package/dist/components/Alert/Alert.utils..js +38 -0
- package/dist/components/Alert/Alert.utils..js.map +1 -0
- package/dist/components/Alert/index.js +1 -1
- package/dist/components/Alert/index.js.map +1 -1
- package/dist/components/Button/Button.js +9 -0
- package/dist/components/Button/Button.js.map +1 -0
- package/dist/components/Button/Button.styled.js +180 -0
- package/dist/components/Button/Button.styled.js.map +1 -0
- package/dist/components/Button/Button.types.js +2 -0
- package/dist/components/Button/Button.types.js.map +1 -0
- package/dist/components/Button/const.js +3 -0
- package/dist/components/Button/const.js.map +1 -0
- package/dist/components/Button/index.js +1 -1
- package/dist/components/Button/index.js.map +1 -1
- package/dist/components/Button/utils/getButtonPaddingBySizeAndKind.js +23 -0
- package/dist/components/Button/utils/getButtonPaddingBySizeAndKind.js.map +1 -0
- package/dist/components/Button/utils/getHoverStyle.js +7 -0
- package/dist/components/Button/utils/getHoverStyle.js.map +1 -0
- package/dist/components/Button/utils/getIconButtonPaddingBySizeAndKind.js +23 -0
- package/dist/components/Button/utils/getIconButtonPaddingBySizeAndKind.js.map +1 -0
- package/dist/components/Checkbox/Checkbox.js +49 -0
- package/dist/components/Checkbox/Checkbox.js.map +1 -0
- package/dist/components/Checkbox/index.js +1 -1
- package/dist/components/Checkbox/index.js.map +1 -1
- package/dist/components/Chip/Chip.js +70 -0
- package/dist/components/Chip/Chip.js.map +1 -0
- package/dist/components/Chip/Chip.styled.js +142 -0
- package/dist/components/Chip/Chip.styled.js.map +1 -0
- package/dist/components/Chip/Chip.types.js +2 -0
- package/dist/components/Chip/Chip.types.js.map +1 -0
- package/dist/components/Chip/consts.js +8 -0
- package/dist/components/Chip/consts.js.map +1 -0
- package/dist/components/Chip/index.js +1 -1
- package/dist/components/Chip/index.js.map +1 -1
- package/dist/components/DataTable/DataTable.js +7 -0
- package/dist/components/DataTable/DataTable.js.map +1 -0
- package/dist/components/DataTable/index.js +1 -1
- package/dist/components/DataTable/index.js.map +1 -1
- package/dist/components/DatePicker/DatePicker.js +7 -0
- package/dist/components/DatePicker/DatePicker.js.map +1 -0
- package/dist/components/DatePicker/index.js +1 -1
- package/dist/components/DatePicker/index.js.map +1 -1
- package/dist/components/Dropdown/Dropdown.js +7 -0
- package/dist/components/Dropdown/Dropdown.js.map +1 -0
- package/dist/components/Dropdown/index.js +1 -1
- package/dist/components/Dropdown/index.js.map +1 -1
- package/dist/components/FormLabel/FormLabel.js +7 -0
- package/dist/components/FormLabel/FormLabel.js.map +1 -0
- package/dist/components/FormLabel/FormLabel.styled.js +8 -0
- package/dist/components/FormLabel/FormLabel.styled.js.map +1 -0
- package/dist/components/FormLabel/index.js +1 -1
- package/dist/components/FormLabel/index.js.map +1 -1
- package/dist/components/Modal/Modal.js +7 -0
- package/dist/components/Modal/Modal.js.map +1 -0
- package/dist/components/Modal/index.js +1 -1
- package/dist/components/Modal/index.js.map +1 -1
- package/dist/components/Radio/Radio.js +43 -0
- package/dist/components/Radio/Radio.js.map +1 -0
- package/dist/components/Radio/index.js +1 -1
- package/dist/components/Radio/index.js.map +1 -1
- package/dist/components/RadioGroup/index.js +2 -1
- package/dist/components/RadioGroup/index.js.map +1 -1
- package/dist/components/TextField/TextField.js +19 -0
- package/dist/components/TextField/TextField.js.map +1 -0
- package/dist/components/TextField/TextField.style.js +245 -0
- package/dist/components/TextField/TextField.style.js.map +1 -0
- package/dist/components/TextField/TextField.types.js +2 -0
- package/dist/components/TextField/TextField.types.js.map +1 -0
- package/dist/components/TextField/TextFieldIcon.js +7 -0
- package/dist/components/TextField/TextFieldIcon.js.map +1 -0
- package/dist/components/TextField/index.js +1 -1
- package/dist/components/TextField/index.js.map +1 -1
- package/dist/components/Toast/Toast.js +26 -0
- package/dist/components/Toast/Toast.js.map +1 -0
- package/dist/components/Toast/Toast.styled.js +49 -0
- package/dist/components/Toast/Toast.styled.js.map +1 -0
- package/dist/components/Toast/Toast.types.js +2 -0
- package/dist/components/Toast/Toast.types.js.map +1 -0
- package/dist/components/Toast/Toast.utils.js +14 -0
- package/dist/components/Toast/Toast.utils.js.map +1 -0
- package/dist/components/Toast/index.js +2 -0
- package/dist/components/Toast/index.js.map +1 -0
- package/dist/components/Toggle/Toggle.js +13 -0
- package/dist/components/Toggle/Toggle.js.map +1 -0
- package/dist/components/Toggle/Toggle.styled.js +155 -0
- package/dist/components/Toggle/Toggle.styled.js.map +1 -0
- package/dist/components/Toggle/Toggle.types.js +2 -0
- package/dist/components/Toggle/Toggle.types.js.map +1 -0
- package/dist/components/Toggle/index.js +1 -1
- package/dist/components/Toggle/index.js.map +1 -1
- package/dist/components/ToggleButton/ToggleButton.js +12 -0
- package/dist/components/ToggleButton/ToggleButton.js.map +1 -0
- package/dist/components/ToggleButton/ToggleButton.styled.js +35 -0
- package/dist/components/ToggleButton/ToggleButton.styled.js.map +1 -0
- package/dist/components/ToggleButton/ToggleButton.types.js +2 -0
- package/dist/components/ToggleButton/ToggleButton.types.js.map +1 -0
- package/dist/components/ToggleButton/index.js +1 -1
- package/dist/components/ToggleButton/index.js.map +1 -1
- package/dist/components/ToggleButtonGroup/ToggleButtonGroup.js +7 -0
- package/dist/components/ToggleButtonGroup/ToggleButtonGroup.js.map +1 -0
- package/dist/components/ToggleButtonGroup/index.js +2 -0
- package/dist/components/ToggleButtonGroup/index.js.map +1 -0
- package/dist/components/Tooltip/Tooltip.js +7 -0
- package/dist/components/Tooltip/Tooltip.js.map +1 -0
- package/dist/components/Tooltip/index.js +1 -1
- package/dist/components/Tooltip/index.js.map +1 -1
- package/dist/components/index.js +7 -0
- package/dist/components/index.js.map +1 -0
- package/dist/foundation/Elevation/index.js +66 -0
- package/dist/foundation/Elevation/index.js.map +1 -0
- package/dist/foundation/Elevation/utils.js +9 -0
- package/dist/foundation/Elevation/utils.js.map +1 -0
- package/dist/foundation/Typography/index.js +62 -0
- package/dist/foundation/Typography/index.js.map +1 -0
- package/dist/foundation/Typography/tokens.js +155 -0
- package/dist/foundation/Typography/tokens.js.map +1 -0
- package/dist/foundation/colors/base/blue.js +26 -0
- package/dist/foundation/colors/base/blue.js.map +1 -0
- package/dist/foundation/colors/base/green.js +26 -0
- package/dist/foundation/colors/base/green.js.map +1 -0
- package/dist/foundation/colors/base/grey.js +52 -0
- package/dist/foundation/colors/base/grey.js.map +1 -0
- package/dist/foundation/colors/base/index.js +12 -0
- package/dist/foundation/colors/base/index.js.map +1 -0
- package/dist/foundation/colors/base/lunitGreen.js +26 -0
- package/dist/foundation/colors/base/lunitGreen.js.map +1 -0
- package/dist/foundation/colors/base/lunitTeal.js +26 -0
- package/dist/foundation/colors/base/lunitTeal.js.map +1 -0
- package/dist/foundation/colors/base/magenta.js +26 -0
- package/dist/foundation/colors/base/magenta.js.map +1 -0
- package/dist/foundation/colors/base/opacity.js +7 -0
- package/dist/foundation/colors/base/opacity.js.map +1 -0
- package/dist/foundation/colors/base/orange.js +26 -0
- package/dist/foundation/colors/base/orange.js.map +1 -0
- package/dist/foundation/colors/base/purple.js +26 -0
- package/dist/foundation/colors/base/purple.js.map +1 -0
- package/dist/foundation/colors/base/red.js +26 -0
- package/dist/foundation/colors/base/red.js.map +1 -0
- package/dist/foundation/colors/base/yellow.js +26 -0
- package/dist/foundation/colors/base/yellow.js.map +1 -0
- package/dist/foundation/colors/index.js +208 -0
- package/dist/foundation/colors/index.js.map +1 -0
- package/dist/foundation/colors/token/component.js +423 -0
- package/dist/foundation/colors/token/component.js.map +1 -0
- package/dist/foundation/colors/token/core.js +206 -0
- package/dist/foundation/colors/token/core.js.map +1 -0
- package/dist/foundation/colors/token/index.js +3 -0
- package/dist/foundation/colors/token/index.js.map +1 -0
- package/dist/foundation/colors/token/types.js +2 -0
- package/dist/foundation/colors/token/types.js.map +1 -0
- package/dist/foundation/colors/types.js +2 -0
- package/dist/foundation/colors/types.js.map +1 -0
- package/dist/foundation/index.js +13 -0
- package/dist/foundation/index.js.map +1 -0
- package/dist/foundation/spacing.js +2 -0
- package/dist/foundation/spacing.js.map +1 -0
- package/dist/index.js +17 -1
- package/dist/index.js.map +1 -1
- package/dist/theme.js +39 -0
- package/dist/theme.js.map +1 -0
- package/dist/types/components/Alert/Alert.d.ts +4 -0
- package/dist/types/components/Alert/Alert.styled.d.ts +6 -0
- package/dist/types/components/Alert/Alert.types.d.ts +9 -0
- package/dist/types/components/Alert/Alert.utils..d.ts +4 -0
- package/dist/types/components/Button/Button.d.ts +3 -0
- package/dist/{components → types/components}/Button/Button.styled.d.ts +26 -2
- package/dist/{components → types/components}/Button/Button.types.d.ts +4 -4
- package/dist/types/components/Button/utils/getHoverStyle.d.ts +6 -0
- package/dist/types/components/Chip/Chip.styled.d.ts +79 -0
- package/dist/{components → types/components}/Chip/Chip.types.d.ts +1 -1
- package/dist/types/components/TextField/TextField.d.ts +3 -0
- package/dist/types/components/TextField/TextField.style.d.ts +9 -0
- package/dist/types/components/TextField/TextField.types.d.ts +29 -0
- package/dist/types/components/TextField/TextFieldIcon.d.ts +8 -0
- package/dist/types/components/TextField/index.d.ts +2 -0
- package/dist/types/components/Toast/Toast.d.ts +4 -0
- package/dist/types/components/Toast/Toast.styled.d.ts +1 -0
- package/dist/types/components/Toast/Toast.types.d.ts +4 -0
- package/dist/types/components/Toast/Toast.utils.d.ts +2 -0
- package/dist/types/components/Toast/index.d.ts +1 -0
- package/dist/{components → types/components}/ToggleButton/ToggleButton.styled.d.ts +1 -1
- package/dist/{components → types/components}/ToggleButton/ToggleButton.types.d.ts +4 -4
- package/dist/{foundation → types/foundation}/colors/base/grey.d.ts +16 -0
- package/dist/{foundation → types/foundation}/colors/base/lunitGreen.d.ts +2 -2
- package/dist/{foundation → types/foundation}/colors/base/lunitTeal.d.ts +2 -2
- package/dist/{foundation → types/foundation}/colors/index.d.ts +42 -9
- package/dist/{foundation → types/foundation}/colors/types.d.ts +1 -3
- package/dist/{foundation → types/foundation}/index.d.ts +37 -5
- package/dist/{index.d.ts → types/index.d.ts} +1 -0
- package/package.json +37 -23
- package/src/components/Alert/Alert.styled.ts +60 -0
- package/src/components/Alert/Alert.tsx +53 -0
- package/src/components/Alert/Alert.types.ts +10 -0
- package/src/components/Alert/Alert.utils..ts +41 -0
- package/src/components/Alert/index.ts +1 -0
- package/src/components/Button/Button.styled.ts +232 -0
- package/src/components/Button/Button.tsx +50 -0
- package/src/components/Button/Button.types.ts +25 -0
- package/src/components/Button/const.ts +2 -0
- package/src/components/Button/index.ts +1 -0
- package/src/components/Button/utils/getButtonPaddingBySizeAndKind.ts +35 -0
- package/src/components/Button/utils/getHoverStyle.ts +7 -0
- package/src/components/Button/utils/getIconButtonPaddingBySizeAndKind.ts +38 -0
- package/src/components/Checkbox/Checkbox.tsx +67 -0
- package/src/components/Checkbox/index.ts +1 -0
- package/src/components/Chip/Chip.styled.ts +164 -0
- package/src/components/Chip/Chip.tsx +132 -0
- package/src/components/Chip/Chip.types.ts +56 -0
- package/src/components/Chip/consts.ts +7 -0
- package/src/components/Chip/index.ts +1 -0
- package/src/components/DataTable/DataTable.tsx +8 -0
- package/src/components/DataTable/index.ts +1 -0
- package/src/components/DatePicker/DatePicker.tsx +8 -0
- package/src/components/DatePicker/index.ts +1 -0
- package/src/components/Dropdown/Dropdown.tsx +11 -0
- package/src/components/Dropdown/index.ts +1 -0
- package/src/components/FormLabel/FormLabel.styled.ts +8 -0
- package/src/components/FormLabel/FormLabel.tsx +9 -0
- package/src/components/FormLabel/index.ts +1 -0
- package/src/components/Modal/Modal.tsx +8 -0
- package/src/components/Modal/index.ts +1 -0
- package/src/components/Radio/Radio.tsx +58 -0
- package/src/components/Radio/index.ts +1 -0
- package/src/components/RadioGroup/index.ts +2 -0
- package/src/components/TextField/TextField.style.ts +316 -0
- package/src/components/TextField/TextField.tsx +80 -0
- package/src/components/TextField/TextField.types.ts +38 -0
- package/src/components/TextField/TextFieldIcon.tsx +24 -0
- package/src/components/TextField/index.ts +7 -0
- package/src/components/Toast/Toast.styled.ts +49 -0
- package/src/components/Toast/Toast.tsx +66 -0
- package/src/components/Toast/Toast.types.ts +14 -0
- package/src/components/Toast/Toast.utils.ts +15 -0
- package/src/components/Toast/index.tsx +1 -0
- package/src/components/Toggle/Toggle.styled.ts +162 -0
- package/src/components/Toggle/Toggle.tsx +18 -0
- package/src/components/Toggle/Toggle.types.ts +14 -0
- package/src/components/Toggle/index.ts +1 -0
- package/src/components/ToggleButton/ToggleButton.styled.ts +58 -0
- package/src/components/ToggleButton/ToggleButton.tsx +89 -0
- package/src/components/ToggleButton/ToggleButton.types.ts +25 -0
- package/src/components/ToggleButton/index.ts +1 -0
- package/src/components/ToggleButtonGroup/ToggleButtonGroup.tsx +13 -0
- package/src/components/ToggleButtonGroup/index.tsx +1 -0
- package/src/components/Tooltip/Tooltip.tsx +9 -0
- package/src/components/Tooltip/index.ts +1 -0
- package/src/components/index.ts +9 -0
- package/src/foundation/Elevation/index.ts +72 -0
- package/src/foundation/Elevation/utils.ts +11 -0
- package/src/foundation/Typography/index.ts +96 -0
- package/src/foundation/Typography/tokens.ts +162 -0
- package/src/foundation/colors/base/blue.ts +27 -0
- package/src/foundation/colors/base/green.ts +27 -0
- package/src/foundation/colors/base/grey.ts +53 -0
- package/src/foundation/colors/base/index.ts +11 -0
- package/src/foundation/colors/base/lunitGreen.ts +27 -0
- package/src/foundation/colors/base/lunitTeal.ts +27 -0
- package/src/foundation/colors/base/magenta.ts +27 -0
- package/src/foundation/colors/base/opacity.ts +6 -0
- package/src/foundation/colors/base/orange.ts +27 -0
- package/src/foundation/colors/base/purple.ts +27 -0
- package/src/foundation/colors/base/red.ts +27 -0
- package/src/foundation/colors/base/yellow.ts +27 -0
- package/src/foundation/colors/index.ts +256 -0
- package/src/foundation/colors/token/component.ts +430 -0
- package/src/foundation/colors/token/core.ts +211 -0
- package/src/foundation/colors/token/index.ts +2 -0
- package/src/foundation/colors/token/types.ts +8 -0
- package/src/foundation/colors/types.ts +83 -0
- package/src/foundation/index.ts +25 -0
- package/src/foundation/spacing.ts +3 -0
- package/src/index.ts +18 -0
- package/src/stories/components/Alert/Alert.stories.tsx +157 -0
- package/src/stories/components/Button/BasicButton.stories.tsx +168 -0
- package/src/stories/components/Button/IconButton.stories.tsx +139 -0
- package/src/stories/components/Button/Kind.stories.tsx +540 -0
- package/src/stories/components/Chip/Chip.stories.tsx +208 -0
- package/src/stories/components/DataTable/DataTable.stories.tsx +15 -0
- package/src/stories/components/DatePicker/DatePicker.stories.tsx +15 -0
- package/src/stories/components/Dropdown/Dropdown.stories.tsx +21 -0
- package/src/stories/components/Modal/Modal.stories.tsx +15 -0
- package/src/stories/components/SelectControl/Checkbox.stories.tsx +256 -0
- package/src/stories/components/SelectControl/RadioGroup.stories.tsx +68 -0
- package/src/stories/components/SelectControl/RadioStatus.stories.tsx +93 -0
- package/src/stories/components/SelectControl/Toggle.stories.tsx +443 -0
- package/src/stories/components/TextField/TextFieldMulti.stories.tsx +137 -0
- package/src/stories/components/TextField/TextFieldSingle.stories.tsx +283 -0
- package/src/stories/components/TextField/TextFieldSize.stories.tsx +134 -0
- package/src/stories/components/Toast/Toast.stories.tsx +152 -0
- package/src/stories/components/ToggleButton/Basic.stories.tsx +346 -0
- package/src/stories/components/ToggleButton/Group.stories.tsx +221 -0
- package/src/stories/components/ToggleButton/ToggleButtonKind.stories.tsx +708 -0
- package/src/stories/components/ToggleButton/WithIcon.stories.tsx +292 -0
- package/src/stories/components/Tooltip/Tooltip.stories.tsx +15 -0
- package/src/stories/foundation/Elevation/Elevation.stories.tsx +268 -0
- package/src/stories/foundation/Elevation/styled.ts +12 -0
- package/src/stories/foundation/Typography/Typography.mdx +76 -0
- package/src/stories/foundation/Typography/Typography.stories.tsx +101 -0
- package/src/stories/foundation/Typography/TypographyExamples.stories.tsx +44 -0
- package/src/stories/foundation/Typography/TypographyGroup.tsx +71 -0
- package/src/stories/foundation/Typography/const.ts +25 -0
- package/src/stories/foundation/colors/Colors.stories.tsx +66 -0
- package/src/stories/foundation/colors/Mui.stories.tsx +18 -0
- package/src/stories/foundation/colors/Token.inComponent.stories.tsx +167 -0
- package/src/stories/foundation/colors/TokenPaletteTable.stories.tsx +28 -0
- package/src/stories/foundation/colors/TokenPaletteTable.tsx +127 -0
- package/src/stories/foundation/colors/styled.ts +39 -0
- package/src/theme.ts +46 -0
- package/src/types.d.ts +4 -0
- package/tsconfig.build.json +2 -0
- package/dist/components/Alert/Alert.d.ts +0 -2
- package/dist/components/Button/Button.d.ts +0 -3
- package/dist/components/Chip/Chip.styled.d.ts +0 -41
- package/dist/components/HelloWorld/HelloWorld.d.ts +0 -28
- package/dist/components/TextField/TextField.d.ts +0 -2
- package/dist/components/TextField/index.d.ts +0 -1
- package/webpack.config.js +0 -51
- /package/dist/{components → types/components}/Alert/index.d.ts +0 -0
- /package/dist/{components → types/components}/Button/const.d.ts +0 -0
- /package/dist/{components → types/components}/Button/index.d.ts +0 -0
- /package/dist/{components → types/components}/Button/utils/getButtonPaddingBySizeAndKind.d.ts +0 -0
- /package/dist/{components → types/components}/Button/utils/getIconButtonPaddingBySizeAndKind.d.ts +0 -0
- /package/dist/{components → types/components}/Checkbox/Checkbox.d.ts +0 -0
- /package/dist/{components → types/components}/Checkbox/index.d.ts +0 -0
- /package/dist/{components → types/components}/Chip/Chip.d.ts +0 -0
- /package/dist/{components → types/components}/Chip/consts.d.ts +0 -0
- /package/dist/{components → types/components}/Chip/index.d.ts +0 -0
- /package/dist/{components → types/components}/DataTable/DataTable.d.ts +0 -0
- /package/dist/{components → types/components}/DataTable/index.d.ts +0 -0
- /package/dist/{components → types/components}/DatePicker/DatePicker.d.ts +0 -0
- /package/dist/{components → types/components}/DatePicker/index.d.ts +0 -0
- /package/dist/{components → types/components}/Dropdown/Dropdown.d.ts +0 -0
- /package/dist/{components → types/components}/Dropdown/index.d.ts +0 -0
- /package/dist/{components → types/components}/FormLabel/FormLabel.d.ts +0 -0
- /package/dist/{components → types/components}/FormLabel/FormLabel.styled.d.ts +0 -0
- /package/dist/{components → types/components}/FormLabel/index.d.ts +0 -0
- /package/dist/{components → types/components}/Modal/Modal.d.ts +0 -0
- /package/dist/{components → types/components}/Modal/index.d.ts +0 -0
- /package/dist/{components → types/components}/Radio/Radio.d.ts +0 -0
- /package/dist/{components → types/components}/Radio/index.d.ts +0 -0
- /package/dist/{components → types/components}/RadioGroup/index.d.ts +0 -0
- /package/dist/{components → types/components}/Toggle/Toggle.d.ts +0 -0
- /package/dist/{components → types/components}/Toggle/Toggle.styled.d.ts +0 -0
- /package/dist/{components → types/components}/Toggle/Toggle.types.d.ts +0 -0
- /package/dist/{components → types/components}/Toggle/index.d.ts +0 -0
- /package/dist/{components → types/components}/ToggleButton/ToggleButton.d.ts +0 -0
- /package/dist/{components → types/components}/ToggleButton/index.d.ts +0 -0
- /package/dist/{components → types/components}/ToggleButtonGroup/ToggleButtonGroup.d.ts +0 -0
- /package/dist/{components → types/components}/ToggleButtonGroup/index.d.ts +0 -0
- /package/dist/{components → types/components}/Tooltip/Tooltip.d.ts +0 -0
- /package/dist/{components → types/components}/Tooltip/index.d.ts +0 -0
- /package/dist/{components → types/components}/index.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/Elevation/index.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/Elevation/utils.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/Typography/index.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/Typography/tokens.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/base/blue.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/base/green.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/base/index.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/base/magenta.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/base/opacity.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/base/orange.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/base/purple.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/base/red.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/base/yellow.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/token/component.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/token/core.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/token/index.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/colors/token/types.d.ts +0 -0
- /package/dist/{foundation → types/foundation}/spacing.d.ts +0 -0
- /package/dist/{theme.d.ts → types/theme.d.ts} +0 -0
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
import type { TypographyStyleOptions } from "@mui/material/styles/createTypography";
|
|
2
|
+
|
|
3
|
+
const fontWeights = {
|
|
4
|
+
"--font-weight-bold": 700,
|
|
5
|
+
"--font-weight-semibold": 600,
|
|
6
|
+
"--font-weight-medium": 500,
|
|
7
|
+
"--font-weight-regular": 400,
|
|
8
|
+
} as const;
|
|
9
|
+
|
|
10
|
+
const headline = {
|
|
11
|
+
"--headline1-font-weight": "var(--font-weight-semibold)",
|
|
12
|
+
"--headline1-font-size": "52px",
|
|
13
|
+
"--headline1-line-height": "68px",
|
|
14
|
+
"--headline2-font-weight": "var(--font-weight-bold)",
|
|
15
|
+
"--headline2-font-size": "38px",
|
|
16
|
+
"--headline2-line-height": "48px",
|
|
17
|
+
"--headline3-font-weight": "var(--font-weight-semibold)",
|
|
18
|
+
"--headline3-font-size": "24px",
|
|
19
|
+
"--headline3-line-height": "36px",
|
|
20
|
+
"--headline4-font-weight": "var(--font-weight-semibold)",
|
|
21
|
+
"--headline4-font-size": "20px",
|
|
22
|
+
"--headline4-line-height": "28px",
|
|
23
|
+
"--headline5-font-weight": "var(--font-weight-semibold)",
|
|
24
|
+
"--headline5-font-size": "16px",
|
|
25
|
+
"--headline5-line-height": "24px",
|
|
26
|
+
} as const;
|
|
27
|
+
|
|
28
|
+
const body = {
|
|
29
|
+
"--body1-16-semibold-font-weight": "var(--font-weight-semibold)",
|
|
30
|
+
"--body1-16-semibold-font-size": "16px",
|
|
31
|
+
"--body1-16-semibold-line-height": "24px",
|
|
32
|
+
"--body1-16-regular-font-weight": "var(--font-weight-regular)",
|
|
33
|
+
"--body1-16-regular-font-size": "16px",
|
|
34
|
+
"--body1-16-regular-line-height": "24px",
|
|
35
|
+
"--body2-14-bold-font-weight": "var(--font-weight-bold)",
|
|
36
|
+
"--body2-14-bold-font-size": "14px",
|
|
37
|
+
"--body2-14-bold-line-height": "20px",
|
|
38
|
+
"--body2-14-medium-font-weight": "var(--font-weight-medium)",
|
|
39
|
+
"--body2-14-medium-font-size": "14px",
|
|
40
|
+
"--body2-14-medium-line-height": "20px",
|
|
41
|
+
"--body2-14-regular-font-weight": "var(--font-weight-regular)",
|
|
42
|
+
"--body2-14-regular-font-size": "14px",
|
|
43
|
+
"--body2-14-regular-line-height": "20px",
|
|
44
|
+
"--body3-12-semibold-font-weight": "var(--font-weight-semibold)",
|
|
45
|
+
"--body3-12-semibold-font-size": "12.4px",
|
|
46
|
+
"--body3-12-semibold-line-height": "16px",
|
|
47
|
+
"--body3-12-regular-font-weight": "var(--font-weight-regular)",
|
|
48
|
+
"--body3-12-regular-font-size": "12.4px",
|
|
49
|
+
"--body3-12-regular-line-height": "16px",
|
|
50
|
+
} as const;
|
|
51
|
+
|
|
52
|
+
const etc = {
|
|
53
|
+
"--overline-font-weight": "var(--font-weight-medium)",
|
|
54
|
+
"--overline-font-size": "14px",
|
|
55
|
+
"--overline-line-height": "20px",
|
|
56
|
+
"--button1-font-weight": "var(--font-weight-medium)",
|
|
57
|
+
"--button1-font-size": "16px",
|
|
58
|
+
"--button1-line-height": "22px",
|
|
59
|
+
"--button2-font-weight": "var(--font-weight-medium)",
|
|
60
|
+
"--button2-font-size": "14px",
|
|
61
|
+
"--button2-line-height": "20px",
|
|
62
|
+
"--caption-font-weight": "var(--font-weight-medium)",
|
|
63
|
+
"--caption-font-size": "12px",
|
|
64
|
+
"--caption-line-height": "16px",
|
|
65
|
+
} as const;
|
|
66
|
+
|
|
67
|
+
const fontVariants: Record<string, TypographyStyleOptions> = {
|
|
68
|
+
headline1: {
|
|
69
|
+
fontWeight: "var(--headline1-font-weight)",
|
|
70
|
+
fontSize: "var(--headline1-font-size)",
|
|
71
|
+
lineHeight: "var(--headline1-line-height)",
|
|
72
|
+
},
|
|
73
|
+
headline2: {
|
|
74
|
+
fontWeight: "var(--headline2-font-weight)",
|
|
75
|
+
fontSize: "var(--headline2-font-size)",
|
|
76
|
+
lineHeight: "var(--headline2-line-height)",
|
|
77
|
+
},
|
|
78
|
+
headline3: {
|
|
79
|
+
fontWeight: "var(--headline3-font-weight)",
|
|
80
|
+
fontSize: "var(--headline3-font-size)",
|
|
81
|
+
lineHeight: "var(--headline3-line-height)",
|
|
82
|
+
},
|
|
83
|
+
headline4: {
|
|
84
|
+
fontWeight: "var(--headline4-font-weight)",
|
|
85
|
+
fontSize: "var(--headline4-font-size)",
|
|
86
|
+
lineHeight: "var(--headline4-line-height)",
|
|
87
|
+
},
|
|
88
|
+
headline5: {
|
|
89
|
+
fontWeight: "var(--headline5-font-weight)",
|
|
90
|
+
fontSize: "var(--headline5-font-size)",
|
|
91
|
+
lineHeight: "var(--headline5-line-height)",
|
|
92
|
+
},
|
|
93
|
+
body1_16_semibold: {
|
|
94
|
+
fontWeight: "var(--body1-16-semibold-font-weight)",
|
|
95
|
+
fontSize: "var(--body1-16-semibold-font-size)",
|
|
96
|
+
lineHeight: "var(--body1-16-semibold-line-height)",
|
|
97
|
+
},
|
|
98
|
+
body1_16_regular: {
|
|
99
|
+
fontWeight: "var(--body1-16-regular-font-weight)",
|
|
100
|
+
fontSize: "var(--body1-16-regular-font-size)",
|
|
101
|
+
lineHeight: "var(--body1-16-regular-line-height)",
|
|
102
|
+
},
|
|
103
|
+
body2_14_bold: {
|
|
104
|
+
fontWeight: "var(--body2-14-bold-font-weight)",
|
|
105
|
+
fontSize: "var(--body2-14-bold-font-size)",
|
|
106
|
+
lineHeight: "var(--body2-14-bold-line-height)",
|
|
107
|
+
},
|
|
108
|
+
body2_14_medium: {
|
|
109
|
+
fontWeight: "var(--body2-14-medium-font-weight)",
|
|
110
|
+
fontSize: "var(--body2-14-medium-font-size)",
|
|
111
|
+
lineHeight: "var(--body2-14-medium-line-height)",
|
|
112
|
+
},
|
|
113
|
+
body2_14_regular: {
|
|
114
|
+
fontWeight: "var(--body2-14-regular-font-weight)",
|
|
115
|
+
fontSize: "var(--body2-14-regular-font-size)",
|
|
116
|
+
lineHeight: "var(--body2-14-regular-line-height)",
|
|
117
|
+
},
|
|
118
|
+
body3_12_semibold: {
|
|
119
|
+
fontWeight: "var(--body3-12-semibold-font-weight)",
|
|
120
|
+
fontSize: "var(--body3-12-semibold-font-size)",
|
|
121
|
+
lineHeight: "var(--body3-12-semibold-line-height)",
|
|
122
|
+
},
|
|
123
|
+
body3_12_regular: {
|
|
124
|
+
fontWeight: "var(--body3-12-regular-font-weight)",
|
|
125
|
+
fontSize: "var(--body3-12-regular-font-size)",
|
|
126
|
+
lineHeight: "var(--body3-12-regular-line-height)",
|
|
127
|
+
},
|
|
128
|
+
overline: {
|
|
129
|
+
fontWeight: "var(--overline-font-weight)",
|
|
130
|
+
fontSize: "var(--overline-font-size)",
|
|
131
|
+
lineHeight: "var(--overline-line-height)",
|
|
132
|
+
letterSpacing: "1px",
|
|
133
|
+
textTransform: "uppercase",
|
|
134
|
+
},
|
|
135
|
+
button1: {
|
|
136
|
+
fontWeight: "var(--button1-font-weight)",
|
|
137
|
+
fontSize: "var(--button1-font-size)",
|
|
138
|
+
lineHeight: "var(--button1-line-height)",
|
|
139
|
+
textTransform: "capitalize",
|
|
140
|
+
},
|
|
141
|
+
button2: {
|
|
142
|
+
fontWeight: "var(--button2-font-weight)",
|
|
143
|
+
fontSize: "var(--button2-font-size)",
|
|
144
|
+
lineHeight: "var(--button2-line-height)",
|
|
145
|
+
letterSpacing: "0.2px",
|
|
146
|
+
textTransform: "capitalize",
|
|
147
|
+
},
|
|
148
|
+
caption: {
|
|
149
|
+
fontWeight: "var(--caption-font-weight)",
|
|
150
|
+
fontSize: "var(--caption-font-size)",
|
|
151
|
+
lineHeight: "var(--caption-line-height)",
|
|
152
|
+
},
|
|
153
|
+
};
|
|
154
|
+
|
|
155
|
+
export const cssVariables = {
|
|
156
|
+
...fontWeights,
|
|
157
|
+
...headline,
|
|
158
|
+
...body,
|
|
159
|
+
...etc,
|
|
160
|
+
};
|
|
161
|
+
|
|
162
|
+
export { fontVariants };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { grey } from "./grey";
|
|
2
|
+
|
|
3
|
+
export const blue = {
|
|
4
|
+
5: "#DAECFF",
|
|
5
|
+
10: "#D0E2FF",
|
|
6
|
+
20: "#9DCEFF",
|
|
7
|
+
30: "#78A9FF",
|
|
8
|
+
40: "#4589FF",
|
|
9
|
+
50: "#0F62FE",
|
|
10
|
+
60: "#0043CE",
|
|
11
|
+
70: "#0055AB",
|
|
12
|
+
80: "#001D6C",
|
|
13
|
+
90: "#002041",
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export const blueText = {
|
|
17
|
+
5: grey[95],
|
|
18
|
+
10: grey[95],
|
|
19
|
+
20: grey[95],
|
|
20
|
+
30: grey[95],
|
|
21
|
+
40: grey[95],
|
|
22
|
+
50: grey[5],
|
|
23
|
+
60: grey[5],
|
|
24
|
+
70: grey[5],
|
|
25
|
+
80: grey[5],
|
|
26
|
+
90: grey[5],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { grey } from "./grey";
|
|
2
|
+
|
|
3
|
+
export const green = {
|
|
4
|
+
5: "#EBFFF0",
|
|
5
|
+
10: "#B4EFC4",
|
|
6
|
+
20: "#6FDC8C",
|
|
7
|
+
30: "#42BE65",
|
|
8
|
+
40: "#24A148",
|
|
9
|
+
50: "#198038",
|
|
10
|
+
60: "#0E6027",
|
|
11
|
+
70: "#044317",
|
|
12
|
+
80: "#022D0D",
|
|
13
|
+
90: "#071908",
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export const greenText = {
|
|
17
|
+
5: grey[95],
|
|
18
|
+
10: grey[95],
|
|
19
|
+
20: grey[95],
|
|
20
|
+
30: grey[95],
|
|
21
|
+
40: grey[95],
|
|
22
|
+
50: grey[5],
|
|
23
|
+
60: grey[5],
|
|
24
|
+
70: grey[5],
|
|
25
|
+
80: grey[5],
|
|
26
|
+
90: grey[5],
|
|
27
|
+
};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
export const grey = {
|
|
2
|
+
0: "#FFFFFF",
|
|
3
|
+
5: "#FAFAFB",
|
|
4
|
+
10: "#F1F1F4",
|
|
5
|
+
15: "#DFDFE2",
|
|
6
|
+
20: "#C6C6C8",
|
|
7
|
+
30: "#AFAFB1",
|
|
8
|
+
40: "#99999B",
|
|
9
|
+
50: "#747477",
|
|
10
|
+
60: "#626264",
|
|
11
|
+
70: "#4E4E50",
|
|
12
|
+
75: "#404042",
|
|
13
|
+
80: "#333336",
|
|
14
|
+
85: "#2D2D2F",
|
|
15
|
+
90: "#1F1F21",
|
|
16
|
+
95: "#111113",
|
|
17
|
+
100: "#000000",
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export const greyText = {
|
|
21
|
+
0: grey[95],
|
|
22
|
+
5: grey[95],
|
|
23
|
+
10: grey[95],
|
|
24
|
+
15: grey[95],
|
|
25
|
+
20: grey[95],
|
|
26
|
+
30: grey[95],
|
|
27
|
+
40: grey[95],
|
|
28
|
+
50: grey[5],
|
|
29
|
+
60: grey[5],
|
|
30
|
+
70: grey[5],
|
|
31
|
+
80: grey[5],
|
|
32
|
+
85: grey[5],
|
|
33
|
+
90: grey[5],
|
|
34
|
+
95: grey[5],
|
|
35
|
+
100: grey[5],
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export const greyForMUI = {
|
|
39
|
+
50: grey[5],
|
|
40
|
+
100: grey[10],
|
|
41
|
+
200: grey[20],
|
|
42
|
+
300: grey[30],
|
|
43
|
+
400: grey[40],
|
|
44
|
+
500: grey[50],
|
|
45
|
+
600: grey[60],
|
|
46
|
+
700: grey[70],
|
|
47
|
+
800: grey[80],
|
|
48
|
+
900: grey[90],
|
|
49
|
+
A100: "#F3F3F3",
|
|
50
|
+
A200: "#C7C7C7",
|
|
51
|
+
A400: "#9A9A9A",
|
|
52
|
+
A700: "#4F4F4F",
|
|
53
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from "./blue";
|
|
2
|
+
export * from "./green";
|
|
3
|
+
export * from "./grey";
|
|
4
|
+
export * from "./lunitGreen";
|
|
5
|
+
export * from "./lunitTeal";
|
|
6
|
+
export * from "./magenta";
|
|
7
|
+
export * from "./orange";
|
|
8
|
+
export * from "./red";
|
|
9
|
+
export * from "./yellow";
|
|
10
|
+
export * from "./purple";
|
|
11
|
+
export * from "./opacity";
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { grey } from "./grey";
|
|
2
|
+
|
|
3
|
+
export const lunit_green = {
|
|
4
|
+
5: "#F5FBE7",
|
|
5
|
+
10: "#EFF8BC",
|
|
6
|
+
20: "#E5F39E",
|
|
7
|
+
30: "#E1EE91",
|
|
8
|
+
40: "#DCEB7A",
|
|
9
|
+
50: "#D2EA60",
|
|
10
|
+
60: "#CEE559",
|
|
11
|
+
70: "#CADE5C",
|
|
12
|
+
80: "#BED358",
|
|
13
|
+
90: "#B1C953",
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export const lunit_greenText = {
|
|
17
|
+
5: grey[95],
|
|
18
|
+
10: grey[95],
|
|
19
|
+
20: grey[95],
|
|
20
|
+
30: grey[95],
|
|
21
|
+
40: grey[95],
|
|
22
|
+
50: grey[95],
|
|
23
|
+
60: grey[95],
|
|
24
|
+
70: grey[95],
|
|
25
|
+
80: grey[95],
|
|
26
|
+
90: grey[95],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { grey } from "./grey";
|
|
2
|
+
|
|
3
|
+
export const lunit_teal = {
|
|
4
|
+
5: "#EAFAFF",
|
|
5
|
+
10: "#D1F7FF",
|
|
6
|
+
20: "#96EDFF",
|
|
7
|
+
30: "#30DFFC",
|
|
8
|
+
40: "#00C9EA",
|
|
9
|
+
50: "#01AED4",
|
|
10
|
+
60: "#048AB4",
|
|
11
|
+
70: "#016D8F",
|
|
12
|
+
80: "#05495F",
|
|
13
|
+
90: "#002930",
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export const lunit_tealText = {
|
|
17
|
+
5: lunit_teal[90],
|
|
18
|
+
10: lunit_teal[90],
|
|
19
|
+
20: grey[95],
|
|
20
|
+
30: grey[95],
|
|
21
|
+
40: grey[95],
|
|
22
|
+
50: grey[5],
|
|
23
|
+
60: grey[5],
|
|
24
|
+
70: grey[5],
|
|
25
|
+
80: grey[5],
|
|
26
|
+
90: lunit_teal[5],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { grey } from "./grey";
|
|
2
|
+
|
|
3
|
+
export const magenta = {
|
|
4
|
+
5: "#FFF0F7",
|
|
5
|
+
10: "#FFD6E8",
|
|
6
|
+
20: "#FAB2D3",
|
|
7
|
+
30: "#F681B7",
|
|
8
|
+
40: "#FF50A0",
|
|
9
|
+
50: "#E41976",
|
|
10
|
+
60: "#9F1853",
|
|
11
|
+
70: "#740937",
|
|
12
|
+
80: "#57042A",
|
|
13
|
+
90: "#2A0A18",
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export const magentaText = {
|
|
17
|
+
5: grey[95],
|
|
18
|
+
10: grey[95],
|
|
19
|
+
20: grey[95],
|
|
20
|
+
30: grey[95],
|
|
21
|
+
40: grey[95],
|
|
22
|
+
50: grey[5],
|
|
23
|
+
60: grey[5],
|
|
24
|
+
70: grey[5],
|
|
25
|
+
80: grey[5],
|
|
26
|
+
90: grey[5],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { grey } from "./grey";
|
|
2
|
+
|
|
3
|
+
export const orange = {
|
|
4
|
+
5: "#FFF2E8",
|
|
5
|
+
10: "#FFD9BE",
|
|
6
|
+
20: "#FFB784",
|
|
7
|
+
30: "#FF9B54",
|
|
8
|
+
40: "#F58636",
|
|
9
|
+
50: "#D36210",
|
|
10
|
+
60: "#AB4800",
|
|
11
|
+
70: "#6F3209",
|
|
12
|
+
80: "#3E1A00",
|
|
13
|
+
90: "#231000",
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export const orangeText = {
|
|
17
|
+
5: grey[95],
|
|
18
|
+
10: grey[95],
|
|
19
|
+
20: grey[95],
|
|
20
|
+
30: grey[95],
|
|
21
|
+
40: grey[95],
|
|
22
|
+
50: grey[5],
|
|
23
|
+
60: grey[5],
|
|
24
|
+
70: grey[5],
|
|
25
|
+
80: grey[5],
|
|
26
|
+
90: grey[5],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { grey } from "./grey";
|
|
2
|
+
|
|
3
|
+
export const purple = {
|
|
4
|
+
5: "#F6F2FF",
|
|
5
|
+
10: "#E6D7FF",
|
|
6
|
+
20: "#D4BBFF",
|
|
7
|
+
30: "#BE95FF",
|
|
8
|
+
40: "#9E6BF0",
|
|
9
|
+
50: "#7E41DA",
|
|
10
|
+
60: "#6B2FC1",
|
|
11
|
+
70: "#5D22B1",
|
|
12
|
+
80: "#441C7E",
|
|
13
|
+
90: "#1D0345",
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export const purpleText = {
|
|
17
|
+
5: grey[95],
|
|
18
|
+
10: grey[95],
|
|
19
|
+
20: grey[95],
|
|
20
|
+
30: grey[95],
|
|
21
|
+
40: grey[95],
|
|
22
|
+
50: grey[5],
|
|
23
|
+
60: grey[5],
|
|
24
|
+
70: grey[5],
|
|
25
|
+
80: grey[5],
|
|
26
|
+
90: grey[5],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { grey } from "./grey";
|
|
2
|
+
|
|
3
|
+
export const red = {
|
|
4
|
+
5: "#FFF1F1",
|
|
5
|
+
10: "#FFD7D9",
|
|
6
|
+
20: "#FFB3B8",
|
|
7
|
+
30: "#FF7077",
|
|
8
|
+
40: "#FA464F",
|
|
9
|
+
50: "#DA1E28",
|
|
10
|
+
60: "#A2191F",
|
|
11
|
+
70: "#750E13",
|
|
12
|
+
80: "#520408",
|
|
13
|
+
90: "#3E0600",
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export const redText = {
|
|
17
|
+
5: grey[95],
|
|
18
|
+
10: grey[95],
|
|
19
|
+
20: grey[95],
|
|
20
|
+
30: grey[95],
|
|
21
|
+
40: grey[95],
|
|
22
|
+
50: grey[5],
|
|
23
|
+
60: grey[5],
|
|
24
|
+
70: grey[5],
|
|
25
|
+
80: grey[5],
|
|
26
|
+
90: grey[5],
|
|
27
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { grey } from "./grey";
|
|
2
|
+
|
|
3
|
+
export const yellow = {
|
|
4
|
+
5: "#FCF4D6",
|
|
5
|
+
10: "#FFF9C7",
|
|
6
|
+
20: "#FFF296",
|
|
7
|
+
30: "#FFEA5D",
|
|
8
|
+
40: "#FFDE03",
|
|
9
|
+
50: "#E1B000",
|
|
10
|
+
60: "#A67B0E",
|
|
11
|
+
70: "#6E5002",
|
|
12
|
+
80: "#584106",
|
|
13
|
+
90: "#3B2B00",
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export const yellowText = {
|
|
17
|
+
5: grey[95],
|
|
18
|
+
10: grey[95],
|
|
19
|
+
20: grey[95],
|
|
20
|
+
30: grey[95],
|
|
21
|
+
40: grey[95],
|
|
22
|
+
50: grey[5],
|
|
23
|
+
60: grey[5],
|
|
24
|
+
70: grey[5],
|
|
25
|
+
80: grey[5],
|
|
26
|
+
90: grey[5],
|
|
27
|
+
};
|