@julseb-lib/react 0.1.3 → 0.1.5
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/.editorconfig +7 -0
- package/.prettierrc +5 -0
- package/README.md +1 -1
- package/eslint.config.js +177 -0
- package/index.html +14 -0
- package/package.json +41 -67
- package/plop/actions/index.ts +1 -0
- package/plop/actions/run-command.ts +21 -0
- package/plop/generators/component.ts +87 -0
- package/plop/generators/demo.ts +38 -0
- package/plop/generators/generator.ts +49 -0
- package/plop/generators/index.ts +6 -0
- package/plop/generators/preview.ts +58 -0
- package/plop/generators/subtype.ts +25 -0
- package/plop/partials/index.ts +2 -0
- package/plop/partials/kebab-name.ts +7 -0
- package/plop/partials/pascal-name.ts +7 -0
- package/plop/plopfile.ts +32 -0
- package/plop/templates/__preview__/preview-props.hbs +34 -0
- package/plop/templates/__preview__/preview.hbs +25 -0
- package/plop/templates/component/__preview__/preview.hbs +21 -0
- package/plop/templates/component/index.ts.hbs +1 -0
- package/plop/templates/component/types.ts.hbs +5 -0
- package/plop/templates/component/{{ pascalCase name }}.tsx.hbs +32 -0
- package/plop/templates/demo.hbs +9 -0
- package/plop/templates/generator.hbs +16 -0
- package/plop/templates/subtypes.hbs +3 -0
- package/plop/utils/addClosingBrackets.ts +13 -0
- package/plop/utils/addOpenBrackets.ts +13 -0
- package/plop/utils/all-components.ts +72 -0
- package/plop/utils/constants.ts +1 -0
- package/plop/utils/index.ts +5 -0
- package/plop/utils/surround-brackets.ts +12 -0
- package/public/favicon.svg +24 -0
- package/public/images/cover-img.avif +0 -0
- package/public/images/image-card.jpg +0 -0
- package/public/images/logo-fajny-css-white.svg +37 -0
- package/public/images/logo-fajny-css.svg +35 -0
- package/public/images/pic-avatar.jpg +0 -0
- package/public/images/slideshow-1.avif +0 -0
- package/public/images/slideshow-2.avif +0 -0
- package/public/images/slideshow-3.avif +0 -0
- package/public/images/slideshow-4.avif +0 -0
- package/public/vite.svg +1 -0
- package/src/App.tsx +6 -0
- package/src/components/ComponentPreview.tsx +46 -0
- package/src/components/GridItem.tsx +9 -0
- package/src/components/index.ts +4 -0
- package/src/components/layout/BasePage.tsx +27 -0
- package/src/components/layout/CoverLayout.tsx +97 -0
- package/src/components/layout/Nav.tsx +63 -0
- package/src/components/layout/Page.tsx +24 -0
- package/src/data/components.tsx +220 -0
- package/src/data/french-cities.ts +8683 -0
- package/src/data/index.ts +3 -0
- package/src/data/previews/styles/Colors.preview.tsx +94 -0
- package/src/data/previews/styles/Overlays.preview.tsx +48 -0
- package/src/data/previews/styles/Radiuses.preview.tsx +49 -0
- package/src/data/previews/styles/Shadows.preview.tsx +49 -0
- package/src/data/previews/styles/Spacers.preview.tsx +50 -0
- package/src/data/previews/styles/Theme.preview.tsx +32 -0
- package/src/data/site-data.ts +4 -0
- package/src/data/styles/colors.ts +1985 -0
- package/src/data/styles/index.ts +5 -0
- package/src/data/styles/overlays.ts +47 -0
- package/src/data/styles/radiuses.ts +68 -0
- package/src/data/styles/shadows.ts +61 -0
- package/src/data/styles/spacers.ts +54 -0
- package/src/data/types/index.ts +1 -0
- package/src/data/types/variables.ts +7 -0
- package/src/lib/Variables.ts +201 -0
- package/src/lib/components/Accordion/Accordion.tsx +73 -0
- package/src/lib/components/Accordion/AccordionContent.tsx +55 -0
- package/src/lib/components/Accordion/AccordionItem.tsx +66 -0
- package/src/lib/components/Accordion/AccordionTitle.tsx +79 -0
- package/src/lib/components/Accordion/__preview__/Accordion.preview.tsx +107 -0
- package/src/lib/components/Accordion/subtypes.ts +26 -0
- package/src/lib/components/Accordion/types.ts +37 -0
- package/src/lib/components/Alert/Alert.tsx +57 -0
- package/src/lib/components/Alert/__preview__/Alert.preview.tsx +72 -0
- package/src/lib/components/Alert/types.ts +8 -0
- package/src/lib/components/Aside/Aside.tsx +58 -0
- package/src/lib/components/Aside/__preview__/Aside.preview.tsx +59 -0
- package/src/lib/components/Aside/types.ts +6 -0
- package/src/lib/components/Autocomplete/Autocomplete.tsx +222 -0
- package/src/lib/components/Autocomplete/__preview__/Autocomplete.preview.tsx +181 -0
- package/src/lib/components/Autocomplete/__preview__/Preview.tsx +17 -0
- package/src/lib/components/Autocomplete/types.ts +35 -0
- package/src/lib/components/Avatar/Avatar.tsx +97 -0
- package/src/lib/components/Avatar/AvatarFn.tsx +44 -0
- package/src/lib/components/Avatar/__preview__/Avatar.preview.tsx +107 -0
- package/src/lib/components/Avatar/types.ts +37 -0
- package/src/lib/components/BackToTop/BackToTop.tsx +95 -0
- package/src/lib/components/BackToTop/__preview__/BackToTop.preview.tsx +115 -0
- package/src/lib/components/BackToTop/types.ts +9 -0
- package/src/lib/components/Badge/Badge.tsx +61 -0
- package/src/lib/components/Badge/__preview__/Badge.preview.tsx +84 -0
- package/src/lib/components/Badge/types.ts +7 -0
- package/src/lib/components/Breadcrumbs/Breadcrumbs.tsx +72 -0
- package/src/lib/components/Breadcrumbs/__preview__/Breadcrumbs.preview.tsx +55 -0
- package/src/lib/components/Breadcrumbs/types.ts +5 -0
- package/src/lib/components/Burger/Burger.tsx +103 -0
- package/src/lib/components/Burger/__preview__/Burger.preview.tsx +55 -0
- package/src/lib/components/Burger/__preview__/Preview.tsx +11 -0
- package/src/lib/components/Burger/types.ts +11 -0
- package/src/lib/components/Button/Button.tsx +108 -0
- package/src/lib/components/Button/__preview__/Button.preview.tsx +182 -0
- package/src/lib/components/Button/types.ts +30 -0
- package/src/lib/components/ButtonGroup/ButtonGroup.tsx +124 -0
- package/src/lib/components/ButtonGroup/__preview__/ButtonGroup.preview.tsx +101 -0
- package/src/lib/components/ButtonGroup/types.ts +28 -0
- package/src/lib/components/ButtonIcon/ButtonFn.tsx +74 -0
- package/src/lib/components/ButtonIcon/ButtonIcon.tsx +127 -0
- package/src/lib/components/ButtonIcon/__preview__/ButtonIcon.preview.tsx +239 -0
- package/src/lib/components/ButtonIcon/types.ts +52 -0
- package/src/lib/components/CodeContainer/CodeContainer.tsx +108 -0
- package/src/lib/components/CodeContainer/__preview__/CodeContainer.preview.tsx +280 -0
- package/src/lib/components/CodeContainer/types.ts +230 -0
- package/src/lib/components/Cover/Cover.tsx +91 -0
- package/src/lib/components/Cover/__preview__/Cover.preview.tsx +154 -0
- package/src/lib/components/Cover/types.ts +10 -0
- package/src/lib/components/DragList/DragList.tsx +111 -0
- package/src/lib/components/DragList/DragListItem.tsx +113 -0
- package/src/lib/components/DragList/__preview__/Draglist.preview.tsx +156 -0
- package/src/lib/components/DragList/types.ts +55 -0
- package/src/lib/components/Drawer/Drawer.tsx +145 -0
- package/src/lib/components/Drawer/__preview__/Drawer.preview.tsx +159 -0
- package/src/lib/components/Drawer/types.ts +24 -0
- package/src/lib/components/Dropdown/Dropdown.tsx +89 -0
- package/src/lib/components/Dropdown/DropdownItem.tsx +49 -0
- package/src/lib/components/Dropdown/__preview__/Dropdown.preview.tsx +83 -0
- package/src/lib/components/Dropdown/__preview__/Preview.tsx +52 -0
- package/src/lib/components/Dropdown/index.ts +2 -0
- package/src/lib/components/Dropdown/types.ts +35 -0
- package/src/lib/components/Fade/Fade.tsx +62 -0
- package/src/lib/components/Fade/__preview__/Fade.preview.tsx +33 -0
- package/src/lib/components/Fieldset/Fieldset.tsx +85 -0
- package/src/lib/components/Fieldset/__preview__/Fieldset.preview.tsx +99 -0
- package/src/lib/components/Fieldset/__preview__/Preview.tsx +70 -0
- package/src/lib/components/Fieldset/types.ts +15 -0
- package/src/lib/components/Flexbox/Flexbox.tsx +99 -0
- package/src/lib/components/Flexbox/__preview__/Flexbox.preview.tsx +155 -0
- package/src/lib/components/Flexbox/types.ts +23 -0
- package/src/lib/components/Form/Form.tsx +83 -0
- package/src/lib/components/Form/__preview__/Form.preview.tsx +124 -0
- package/src/lib/components/Form/types.ts +32 -0
- package/src/lib/components/Grid/Grid.tsx +98 -0
- package/src/lib/components/Grid/__preview__/Grid.preview.tsx +146 -0
- package/src/lib/components/Grid/types.ts +20 -0
- package/src/lib/components/Header/Header.tsx +232 -0
- package/src/lib/components/Header/HeaderSearch.tsx +50 -0
- package/src/lib/components/Header/__preview__/Header.preview.tsx +33 -0
- package/src/lib/components/Header/subtypes.ts +28 -0
- package/src/lib/components/Header/types.ts +57 -0
- package/src/lib/components/Highlight/Highlight.tsx +45 -0
- package/src/lib/components/Highlight/__preview__/Highlight.preview.tsx +60 -0
- package/src/lib/components/Highlight/types.ts +9 -0
- package/src/lib/components/Hr/Hr.tsx +48 -0
- package/src/lib/components/Hr/__preview__/Hr.preview.tsx +75 -0
- package/src/lib/components/Hr/types.ts +8 -0
- package/src/lib/components/IconMenu/IconMenu.module.css +239 -0
- package/src/lib/components/IconMenu/IconMenu.tsx +101 -0
- package/src/lib/components/IconMenu/IconMenuItem.tsx +53 -0
- package/src/lib/components/IconMenu/__preview__/IconMenu.preview.tsx +55 -0
- package/src/lib/components/IconMenu/index.ts +1 -0
- package/src/lib/components/IconMenu/types.ts +48 -0
- package/src/lib/components/Image/Image.tsx +92 -0
- package/src/lib/components/Image/__preview__/Image.preview.tsx +71 -0
- package/src/lib/components/Image/types.ts +25 -0
- package/src/lib/components/Input/Input.tsx +130 -0
- package/src/lib/components/Input/__preview__/Input.preview.tsx +237 -0
- package/src/lib/components/Input/__preview__/Previews.tsx +67 -0
- package/src/lib/components/Input/classes.ts +1 -0
- package/src/lib/components/Input/subtypes.ts +173 -0
- package/src/lib/components/Input/templates/ColorInput.tsx +40 -0
- package/src/lib/components/Input/templates/DateInput.tsx +63 -0
- package/src/lib/components/Input/templates/FileInput.tsx +42 -0
- package/src/lib/components/Input/templates/PasswordInput.tsx +73 -0
- package/src/lib/components/Input/templates/SearchInput.tsx +89 -0
- package/src/lib/components/Input/templates/SelectInput.tsx +79 -0
- package/src/lib/components/Input/templates/TextInput.tsx +58 -0
- package/src/lib/components/Input/templates/TextareaInput.tsx +27 -0
- package/src/lib/components/Input/templates/TimeInput.tsx +67 -0
- package/src/lib/components/Input/types.ts +22 -0
- package/src/lib/components/InputCheck/InputCheck.tsx +161 -0
- package/src/lib/components/InputCheck/__preview__/InputCheck.preview.tsx +84 -0
- package/src/lib/components/InputCheck/__preview__/Previews.tsx +136 -0
- package/src/lib/components/InputCheck/types.ts +27 -0
- package/src/lib/components/InputComponents/InputButton.tsx +26 -0
- package/src/lib/components/InputComponents/InputIcon.tsx +28 -0
- package/src/lib/components/InputComponents/InputList.tsx +53 -0
- package/src/lib/components/InputComponents/InputListItem.tsx +68 -0
- package/src/lib/components/InputComponents/InputPrefix.tsx +15 -0
- package/src/lib/components/InputComponents/InputSuffix.tsx +15 -0
- package/src/lib/components/InputComponents/InputValidation.tsx +32 -0
- package/src/lib/components/InputComponents/InputWithListWrapper.tsx +29 -0
- package/src/lib/components/InputComponents/InputWrapper.tsx +45 -0
- package/src/lib/components/InputComponents/classes.ts +101 -0
- package/src/lib/components/InputComponents/index.ts +11 -0
- package/src/lib/components/InputComponents/types.ts +63 -0
- package/src/lib/components/InputContainer/InputContainer.tsx +149 -0
- package/src/lib/components/InputContainer/types.ts +11 -0
- package/src/lib/components/InputCounter/InputCounter.tsx +141 -0
- package/src/lib/components/InputCounter/__preview__/InputCounter.preview.tsx +153 -0
- package/src/lib/components/InputCounter/__preview__/Preview.tsx +13 -0
- package/src/lib/components/InputCounter/types.ts +45 -0
- package/src/lib/components/InputImage/EmptyContainer.tsx +17 -0
- package/src/lib/components/InputImage/HoverContainer.tsx +21 -0
- package/src/lib/components/InputImage/InputImage.tsx +104 -0
- package/src/lib/components/InputImage/__preview__/InputImage.preview.tsx +133 -0
- package/src/lib/components/InputImage/__preview__/Preview.tsx +29 -0
- package/src/lib/components/InputImage/subtypes.ts +7 -0
- package/src/lib/components/InputImage/types.ts +24 -0
- package/src/lib/components/InputPhone/InputPhone.tsx +256 -0
- package/src/lib/components/InputPhone/__preview__/InputPhone.preview.tsx +165 -0
- package/src/lib/components/InputPhone/__preview__/Preview.tsx +42 -0
- package/src/lib/components/InputPhone/types.ts +32 -0
- package/src/lib/components/InputPin/InputPin.tsx +119 -0
- package/src/lib/components/InputPin/__preview__/InputPin.preview.tsx +154 -0
- package/src/lib/components/InputPin/types.ts +22 -0
- package/src/lib/components/InputSlider/InputSlider.tsx +176 -0
- package/src/lib/components/InputSlider/__preview__/InputSlider.preview.tsx +128 -0
- package/src/lib/components/InputSlider/__preview__/Preview.tsx +17 -0
- package/src/lib/components/InputSlider/types.ts +22 -0
- package/src/lib/components/Key/Key.tsx +84 -0
- package/src/lib/components/Key/__preview__/Key.preview.tsx +80 -0
- package/src/lib/components/Key/types.ts +16 -0
- package/src/lib/components/Linkify/Linkify.tsx +67 -0
- package/src/lib/components/Linkify/__preview__/Linkify.preview.tsx +33 -0
- package/src/lib/components/Linkify/types.ts +8 -0
- package/src/lib/components/ListGroup/ListGroup.tsx +96 -0
- package/src/lib/components/ListGroup/ListGroupItem.tsx +86 -0
- package/src/lib/components/ListGroup/ListGroupTitle.tsx +84 -0
- package/src/lib/components/ListGroup/__preview__/ListGroup.preview.tsx +246 -0
- package/src/lib/components/ListGroup/index.ts +3 -0
- package/src/lib/components/ListGroup/types.ts +69 -0
- package/src/lib/components/Loader/Loader.tsx +38 -0
- package/src/lib/components/Loader/__preview__/Loader.preview.tsx +38 -0
- package/src/lib/components/Loader/templates/LoaderOne.tsx +27 -0
- package/src/lib/components/Loader/templates/LoaderThree.tsx +47 -0
- package/src/lib/components/Loader/templates/LoaderTwo.tsx +61 -0
- package/src/lib/components/Loader/types.ts +13 -0
- package/src/lib/components/Loader/utils/gen-border-bottom.ts +95 -0
- package/src/lib/components/Main/Main.tsx +63 -0
- package/src/lib/components/Main/__preview__/Main.preview.tsx +67 -0
- package/src/lib/components/Main/types.ts +12 -0
- package/src/lib/components/MarkdownContainer/MarkdownContainer.tsx +50 -0
- package/src/lib/components/MarkdownContainer/__preview__/MarkdownContainer.preview.tsx +34 -0
- package/src/lib/components/MarkdownContainer/types.ts +8 -0
- package/src/lib/components/MarkdownEditor/MarkdownButtons.tsx +42 -0
- package/src/lib/components/MarkdownEditor/MarkdownEditor.tsx +186 -0
- package/src/lib/components/MarkdownEditor/MarkdownEditorTitles.tsx +86 -0
- package/src/lib/components/MarkdownEditor/MarkdownViewButtons.tsx +48 -0
- package/src/lib/components/MarkdownEditor/__preview__/MarkdownEditor.preview.tsx +143 -0
- package/src/lib/components/MarkdownEditor/buttons/icons.tsx +85 -0
- package/src/lib/components/MarkdownEditor/buttons/markdown-buttons.tsx +176 -0
- package/src/lib/components/MarkdownEditor/types.ts +42 -0
- package/src/lib/components/Masonry/Masonry.tsx +83 -0
- package/src/lib/components/Masonry/__preview__/Masonry.preview.tsx +58 -0
- package/src/lib/components/Masonry/types.ts +8 -0
- package/src/lib/components/Masonry/utils.tsx +28 -0
- package/src/lib/components/Modal/Modal.tsx +107 -0
- package/src/lib/components/Modal/__preview__/Modal.preview.tsx +125 -0
- package/src/lib/components/Modal/types.ts +21 -0
- package/src/lib/components/PageLoading/PageLoading.tsx +64 -0
- package/src/lib/components/PageLoading/__preview__/PageLoading.preview.tsx +66 -0
- package/src/lib/components/PageLoading/types.ts +13 -0
- package/src/lib/components/Pagination/Pagination.tsx +163 -0
- package/src/lib/components/Pagination/PaginationButton.tsx +65 -0
- package/src/lib/components/Pagination/__preview__/Pagination.preview.tsx +264 -0
- package/src/lib/components/Pagination/types.ts +56 -0
- package/src/lib/components/Paginator/Paginator.tsx +136 -0
- package/src/lib/components/Paginator/__preview__/Paginator.preview.tsx +212 -0
- package/src/lib/components/Paginator/types.ts +16 -0
- package/src/lib/components/ProgressBar/ProgressBar.tsx +90 -0
- package/src/lib/components/ProgressBar/__preview__/ProgressBar.preview.tsx +63 -0
- package/src/lib/components/ProgressBar/types.ts +14 -0
- package/src/lib/components/ProgressCircle/ProgressCircle.tsx +142 -0
- package/src/lib/components/ProgressCircle/__preview__/ProgressCircle.preview.tsx +107 -0
- package/src/lib/components/ProgressCircle/types.ts +32 -0
- package/src/lib/components/Rating/Rating.tsx +116 -0
- package/src/lib/components/Rating/__preview__/Rating.preview.tsx +133 -0
- package/src/lib/components/Rating/types.ts +25 -0
- package/src/lib/components/Section/Section.tsx +51 -0
- package/src/lib/components/Section/__preview__/Section.preview.tsx +35 -0
- package/src/lib/components/Section/types.ts +5 -0
- package/src/lib/components/Select/Select.tsx +191 -0
- package/src/lib/components/Select/__preview__/Select.preview.tsx +168 -0
- package/src/lib/components/Select/types.ts +23 -0
- package/src/lib/components/Skeleton/Skeleton.tsx +54 -0
- package/src/lib/components/Skeleton/SkeletonCard.tsx +57 -0
- package/src/lib/components/Skeleton/__preview__/Skeleton.preview.tsx +240 -0
- package/src/lib/components/Skeleton/index.ts +2 -0
- package/src/lib/components/Skeleton/types.ts +27 -0
- package/src/lib/components/Slideshow/Slideshow.tsx +324 -0
- package/src/lib/components/Slideshow/SlideshowButton.tsx +63 -0
- package/src/lib/components/Slideshow/SlideshowPagination.tsx +111 -0
- package/src/lib/components/Slideshow/__preview__/Slideshow.preview.tsx +133 -0
- package/src/lib/components/Slideshow/subtypes.ts +62 -0
- package/src/lib/components/Slideshow/types.ts +41 -0
- package/src/lib/components/Sticky/Sticky.tsx +58 -0
- package/src/lib/components/Sticky/__preview__/Sticky.preview.tsx +188 -0
- package/src/lib/components/Sticky/types.ts +5 -0
- package/src/lib/components/Table/Table.tsx +138 -0
- package/src/lib/components/Table/__preview__/Table.preview.tsx +173 -0
- package/src/lib/components/Table/index.ts +1 -0
- package/src/lib/components/Table/types.ts +43 -0
- package/src/lib/components/Tabs/Tabs.tsx +88 -0
- package/src/lib/components/Tabs/TabsButton.tsx +71 -0
- package/src/lib/components/Tabs/TabsButtonsContainer.tsx +58 -0
- package/src/lib/components/Tabs/TabsContainer.tsx +49 -0
- package/src/lib/components/Tabs/TabsContent.tsx +52 -0
- package/src/lib/components/Tabs/__preview__/Tabs.preview.tsx +155 -0
- package/src/lib/components/Tabs/index.ts +5 -0
- package/src/lib/components/Tabs/types.ts +46 -0
- package/src/lib/components/Tag/Tag.tsx +77 -0
- package/src/lib/components/Tag/__preview__/Tag.preview.tsx +128 -0
- package/src/lib/components/Tag/types.ts +13 -0
- package/src/lib/components/Text/Text.tsx +88 -0
- package/src/lib/components/Text/__preview__/Text.preview.tsx +97 -0
- package/src/lib/components/Text/__preview__/previews/Description.tsx +18 -0
- package/src/lib/components/Text/__preview__/previews/Ordered.tsx +13 -0
- package/src/lib/components/Text/__preview__/previews/Paragraphs.tsx +26 -0
- package/src/lib/components/Text/__preview__/previews/Quote.tsx +5 -0
- package/src/lib/components/Text/__preview__/previews/Small.tsx +5 -0
- package/src/lib/components/Text/__preview__/previews/TextDisplay.tsx +27 -0
- package/src/lib/components/Text/__preview__/previews/TextTitles.tsx +19 -0
- package/src/lib/components/Text/__preview__/previews/Unordered.tsx +13 -0
- package/src/lib/components/Text/templates/Blockquote.tsx +41 -0
- package/src/lib/components/Text/templates/Dl.tsx +42 -0
- package/src/lib/components/Text/templates/Em.tsx +40 -0
- package/src/lib/components/Text/templates/H1.tsx +44 -0
- package/src/lib/components/Text/templates/H2.tsx +44 -0
- package/src/lib/components/Text/templates/H3.tsx +44 -0
- package/src/lib/components/Text/templates/H4.tsx +44 -0
- package/src/lib/components/Text/templates/H5.tsx +44 -0
- package/src/lib/components/Text/templates/H6.tsx +41 -0
- package/src/lib/components/Text/templates/Ol.tsx +41 -0
- package/src/lib/components/Text/templates/P.tsx +40 -0
- package/src/lib/components/Text/templates/Small.tsx +40 -0
- package/src/lib/components/Text/templates/Strong.tsx +40 -0
- package/src/lib/components/Text/templates/Ul.tsx +41 -0
- package/src/lib/components/Text/types.ts +36 -0
- package/src/lib/components/Toast/Toast.tsx +112 -0
- package/src/lib/components/Toast/ToastContainer.tsx +43 -0
- package/src/lib/components/Toast/ToastFn.tsx +236 -0
- package/src/lib/components/Toast/__preview__/Toast.preview.tsx +115 -0
- package/src/lib/components/Toast/index.ts +3 -0
- package/src/lib/components/Toast/types.ts +18 -0
- package/src/lib/components/Toast/utils.ts +9 -0
- package/src/lib/components/Tooltip/Tooltip.tsx +190 -0
- package/src/lib/components/Tooltip/__preview__/Tooltip.preview.tsx +117 -0
- package/src/lib/components/Tooltip/types.ts +23 -0
- package/src/lib/components/Wrapper/Wrapper.tsx +75 -0
- package/src/lib/components/Wrapper/__preview__/Wrapper.preview.tsx +78 -0
- package/src/lib/components/Wrapper/types.ts +12 -0
- package/src/lib/context/Theme.context.tsx +66 -0
- package/src/lib/context/index.ts +1 -0
- package/src/lib/hooks/useClickOutside.tsx +50 -0
- package/src/lib/hooks/useCopyToClipboard.tsx +50 -0
- package/src/lib/hooks/useDebounce.tsx +37 -0
- package/src/lib/hooks/useExportData.tsx +78 -0
- package/src/lib/hooks/useFetch.tsx +42 -0
- package/src/lib/hooks/useForm.tsx +51 -0
- package/src/lib/hooks/useIsOverflow.ts +61 -0
- package/src/lib/hooks/useKeyPress.tsx +110 -0
- package/src/lib/hooks/useMaxWidth.tsx +40 -0
- package/src/lib/hooks/useMergeRefs.ts +45 -0
- package/src/lib/hooks/useMinWidth.tsx +40 -0
- package/src/lib/hooks/usePaginatedData.tsx +52 -0
- package/src/lib/hooks/usePagination.tsx +75 -0
- package/src/lib/hooks/useTouchScreen.tsx +34 -0
- package/src/lib/hooks/useTranslation.tsx +58 -0
- package/src/lib/index.css +443 -0
- package/src/lib/index.ts +126 -0
- package/src/lib/lib-utils/get-highlighted-text.tsx +30 -0
- package/src/lib/lib-utils/index.ts +3 -0
- package/src/lib/lib-utils/use-keyboard-navigation.tsx +79 -0
- package/src/lib/types/components-items-props.ts +207 -0
- package/src/lib/types/components-props.ts +63 -0
- package/src/lib/types/global.ts +855 -0
- package/src/lib/types/index.ts +4 -0
- package/src/lib/types/tailwind.ts +9041 -0
- package/src/lib/utils/clsx.tsx +6 -0
- package/src/lib/utils/design-tokens.ts +789 -0
- package/src/lib/utils/gen-align.ts +24 -0
- package/src/lib/utils/gen-bg-color.ts +158 -0
- package/src/lib/utils/gen-border-color.ts +110 -0
- package/src/lib/utils/gen-border-radius.ts +13 -0
- package/src/lib/utils/gen-border.ts +30 -0
- package/src/lib/utils/gen-box-shadow.ts +12 -0
- package/src/lib/utils/gen-button-color.ts +9 -0
- package/src/lib/utils/gen-gap.ts +34 -0
- package/src/lib/utils/gen-justify.ts +25 -0
- package/src/lib/utils/gen-link-color.ts +29 -0
- package/src/lib/utils/gen-max-width.ts +30 -0
- package/src/lib/utils/gen-object-fit.ts +9 -0
- package/src/lib/utils/gen-text-align.ts +10 -0
- package/src/lib/utils/gen-text-color.ts +111 -0
- package/src/lib/utils/gen-vertical-align.ts +12 -0
- package/src/lib/utils/index.ts +18 -0
- package/src/lib/utils/linkify-text.tsx +26 -0
- package/src/lib/utils/options-markdown.ts +60 -0
- package/src/lib/utils/tools.ts +15 -0
- package/src/main.tsx +11 -0
- package/src/pages/Component.tsx +29 -0
- package/src/pages/Homepage.tsx +53 -0
- package/src/pages/NotFound.tsx +10 -0
- package/src/pages/demos/AsideBothDemo.tsx +22 -0
- package/src/pages/demos/AsideDefaultDemo.tsx +18 -0
- package/src/pages/demos/AsideRightDemo.tsx +18 -0
- package/src/pages/demos/CoverBottomDemo.tsx +24 -0
- package/src/pages/demos/CoverBottomOverlayDemo.tsx +25 -0
- package/src/pages/demos/CoverCenterDemo.tsx +24 -0
- package/src/pages/demos/CoverCenterOverlayDemo.tsx +25 -0
- package/src/pages/demos/HeaderDemo.tsx +76 -0
- package/src/pages/demos/MainDefaultDemo.tsx +14 -0
- package/src/pages/demos/MainFormDemo.tsx +14 -0
- package/src/pages/demos/MainLargeDemo.tsx +14 -0
- package/src/pages/demos/PageLoadingDemo.tsx +10 -0
- package/src/routes/index.tsx +59 -0
- package/src/types/global.d.ts +11 -0
- package/src/vite-env.d.ts +1 -0
- package/tailwind.config.ts +19 -0
- package/tsconfig.app.json +28 -0
- package/tsconfig.json +7 -0
- package/tsconfig.node.json +25 -0
- package/vite.config.ts +53 -0
- package/dist/index.cjs.js +0 -4174
- package/dist/index.css +0 -1491
- package/dist/index.d.ts +0 -1
- package/dist/index.es.js +0 -21211
- package/dist/index.umd.js +0 -4180
- package/dist/lib/Mixins.tsx +0 -990
- package/dist/lib/Variables.ts +0 -266
- package/dist/lib/components/Accordion/Accordion.tsx +0 -83
- package/dist/lib/components/Accordion/AccordionButton.tsx +0 -70
- package/dist/lib/components/Accordion/AccordionContent.tsx +0 -26
- package/dist/lib/components/Accordion/AccordionItem.tsx +0 -72
- package/dist/lib/components/Accordion/styles.tsx +0 -163
- package/dist/lib/components/Accordion/subtypes.ts +0 -20
- package/dist/lib/components/Accordion/types.ts +0 -31
- package/dist/lib/components/Alert/Alert.tsx +0 -122
- package/dist/lib/components/Alert/styles.tsx +0 -37
- package/dist/lib/components/Alert/types.ts +0 -31
- package/dist/lib/components/Aside/Aside.tsx +0 -41
- package/dist/lib/components/Aside/styles.tsx +0 -47
- package/dist/lib/components/Aside/types.ts +0 -5
- package/dist/lib/components/Autocomplete/Autocomplete.tsx +0 -356
- package/dist/lib/components/Autocomplete/styles.tsx +0 -11
- package/dist/lib/components/Autocomplete/types.ts +0 -41
- package/dist/lib/components/Avatar/Avatar.tsx +0 -147
- package/dist/lib/components/Avatar/AvatarFunction.tsx +0 -119
- package/dist/lib/components/Avatar/styles.tsx +0 -88
- package/dist/lib/components/Avatar/types.ts +0 -84
- package/dist/lib/components/BackToTop/BackToTop.tsx +0 -104
- package/dist/lib/components/BackToTop/styles.tsx +0 -33
- package/dist/lib/components/BackToTop/types.ts +0 -6
- package/dist/lib/components/Badge/Badge.tsx +0 -99
- package/dist/lib/components/Badge/styles.tsx +0 -39
- package/dist/lib/components/Badge/types.ts +0 -32
- package/dist/lib/components/Breadcrumbs/BreadcrumbItem.tsx +0 -41
- package/dist/lib/components/Breadcrumbs/Breadcrumbs.tsx +0 -62
- package/dist/lib/components/Breadcrumbs/BreadcrumbsFn.tsx +0 -64
- package/dist/lib/components/Breadcrumbs/styles.tsx +0 -62
- package/dist/lib/components/Breadcrumbs/subtypes.ts +0 -10
- package/dist/lib/components/Breadcrumbs/types.ts +0 -29
- package/dist/lib/components/Burger/Burger.tsx +0 -62
- package/dist/lib/components/Burger/styles.tsx +0 -91
- package/dist/lib/components/Burger/types.ts +0 -11
- package/dist/lib/components/Button/Button.tsx +0 -136
- package/dist/lib/components/Button/styles.tsx +0 -30
- package/dist/lib/components/Button/subtypes.ts +0 -10
- package/dist/lib/components/Button/types.ts +0 -70
- package/dist/lib/components/ButtonGroup/ButtonGroup.tsx +0 -136
- package/dist/lib/components/ButtonGroup/ButtonGroupButton.tsx +0 -76
- package/dist/lib/components/ButtonGroup/ButtonGroupToggle.tsx +0 -88
- package/dist/lib/components/ButtonGroup/styles.tsx +0 -89
- package/dist/lib/components/ButtonGroup/subtypes.ts +0 -43
- package/dist/lib/components/ButtonGroup/types.ts +0 -34
- package/dist/lib/components/ButtonIcon/ButtonFunction.tsx +0 -84
- package/dist/lib/components/ButtonIcon/ButtonIcon.tsx +0 -140
- package/dist/lib/components/ButtonIcon/styles.tsx +0 -29
- package/dist/lib/components/ButtonIcon/subtypes.ts +0 -10
- package/dist/lib/components/ButtonIcon/types.ts +0 -88
- package/dist/lib/components/Card/Card.tsx +0 -132
- package/dist/lib/components/Card/index.ts +0 -1
- package/dist/lib/components/Card/styles.tsx +0 -77
- package/dist/lib/components/Card/types.ts +0 -29
- package/dist/lib/components/CodeContainer/CodeContainer.tsx +0 -133
- package/dist/lib/components/CodeContainer/styles.tsx +0 -63
- package/dist/lib/components/CodeContainer/types.ts +0 -233
- package/dist/lib/components/ComponentsMixins/ComponentsMixins.tsx +0 -434
- package/dist/lib/components/ComponentsMixins/hooks/useKeyboardNavigation.tsx +0 -79
- package/dist/lib/components/ComponentsMixins/index.ts +0 -3
- package/dist/lib/components/ComponentsMixins/types.ts +0 -35
- package/dist/lib/components/Cover/Cover.tsx +0 -79
- package/dist/lib/components/Cover/styles.tsx +0 -78
- package/dist/lib/components/Cover/types.ts +0 -12
- package/dist/lib/components/Datepicker/Calendar.tsx +0 -394
- package/dist/lib/components/Datepicker/Datepicker.tsx +0 -255
- package/dist/lib/components/Datepicker/data.ts +0 -31
- package/dist/lib/components/Datepicker/index.ts +0 -1
- package/dist/lib/components/Datepicker/styles.tsx +0 -454
- package/dist/lib/components/Datepicker/types.ts +0 -66
- package/dist/lib/components/DragList/DragList.tsx +0 -121
- package/dist/lib/components/DragList/DragListItem.tsx +0 -184
- package/dist/lib/components/DragList/styles.tsx +0 -73
- package/dist/lib/components/DragList/types.ts +0 -59
- package/dist/lib/components/Drawer/Drawer.tsx +0 -113
- package/dist/lib/components/Drawer/styles.tsx +0 -134
- package/dist/lib/components/Drawer/types.ts +0 -26
- package/dist/lib/components/Dropdown/Dropdown.tsx +0 -98
- package/dist/lib/components/Dropdown/DropdownContainer.tsx +0 -48
- package/dist/lib/components/Dropdown/DropdownItem.tsx +0 -97
- package/dist/lib/components/Dropdown/index.ts +0 -3
- package/dist/lib/components/Dropdown/styles.tsx +0 -155
- package/dist/lib/components/Dropdown/types.ts +0 -63
- package/dist/lib/components/Fade/Fade.tsx +0 -54
- package/dist/lib/components/Fade/styles.tsx +0 -17
- package/dist/lib/components/Fallback/Fallback.tsx +0 -40
- package/dist/lib/components/Fallback/index.ts +0 -1
- package/dist/lib/components/Fieldset/Fieldset.tsx +0 -111
- package/dist/lib/components/Fieldset/styles.tsx +0 -48
- package/dist/lib/components/Fieldset/types.ts +0 -32
- package/dist/lib/components/Flexbox/Flexbox.tsx +0 -73
- package/dist/lib/components/Flexbox/styles.tsx +0 -32
- package/dist/lib/components/Flexbox/types.ts +0 -25
- package/dist/lib/components/Footer/Footer.tsx +0 -103
- package/dist/lib/components/Footer/FooterLink.tsx +0 -31
- package/dist/lib/components/Footer/FooterLogo.tsx +0 -29
- package/dist/lib/components/Footer/index.ts +0 -1
- package/dist/lib/components/Footer/styles.tsx +0 -124
- package/dist/lib/components/Footer/subtypes.ts +0 -14
- package/dist/lib/components/Footer/types.ts +0 -70
- package/dist/lib/components/Form/Form.tsx +0 -157
- package/dist/lib/components/Form/styles.tsx +0 -22
- package/dist/lib/components/Form/types.ts +0 -30
- package/dist/lib/components/FullBleed/FullBleed.tsx +0 -48
- package/dist/lib/components/FullBleed/index.ts +0 -1
- package/dist/lib/components/FullBleed/styles.tsx +0 -30
- package/dist/lib/components/FullBleed/types.ts +0 -7
- package/dist/lib/components/Grid/Grid.tsx +0 -71
- package/dist/lib/components/Grid/styles.tsx +0 -29
- package/dist/lib/components/Grid/types.ts +0 -22
- package/dist/lib/components/Header/Header.tsx +0 -223
- package/dist/lib/components/Header/HeaderBurger.tsx +0 -52
- package/dist/lib/components/Header/HeaderLogo.tsx +0 -68
- package/dist/lib/components/Header/HeaderNav.tsx +0 -89
- package/dist/lib/components/Header/HeaderNavLink.tsx +0 -31
- package/dist/lib/components/Header/HeaderSearch.tsx +0 -81
- package/dist/lib/components/Header/styles.tsx +0 -350
- package/dist/lib/components/Header/subtypes.ts +0 -79
- package/dist/lib/components/Header/types.ts +0 -89
- package/dist/lib/components/Highlight/Highlight.tsx +0 -47
- package/dist/lib/components/Highlight/types.ts +0 -9
- package/dist/lib/components/Hr/Hr.tsx +0 -52
- package/dist/lib/components/Hr/styles.tsx +0 -27
- package/dist/lib/components/Hr/types.ts +0 -10
- package/dist/lib/components/Icon/Icon.tsx +0 -42
- package/dist/lib/components/Icon/index.ts +0 -1
- package/dist/lib/components/Icon/styles.tsx +0 -19
- package/dist/lib/components/Icon/types.ts +0 -13
- package/dist/lib/components/IconMenu/IconMenu.tsx +0 -148
- package/dist/lib/components/IconMenu/IconMenuItem.tsx +0 -75
- package/dist/lib/components/IconMenu/index.ts +0 -2
- package/dist/lib/components/IconMenu/styles.tsx +0 -114
- package/dist/lib/components/IconMenu/types.ts +0 -50
- package/dist/lib/components/Image/Image.tsx +0 -124
- package/dist/lib/components/Image/ImageFunction.tsx +0 -47
- package/dist/lib/components/Image/styles.tsx +0 -85
- package/dist/lib/components/Image/types.ts +0 -46
- package/dist/lib/components/Input/Input.tsx +0 -163
- package/dist/lib/components/Input/styles.tsx +0 -39
- package/dist/lib/components/Input/subtypes.ts +0 -166
- package/dist/lib/components/Input/templates/ColorInput.tsx +0 -34
- package/dist/lib/components/Input/templates/DateInput.tsx +0 -118
- package/dist/lib/components/Input/templates/FileInput.tsx +0 -55
- package/dist/lib/components/Input/templates/PasswordInput.tsx +0 -185
- package/dist/lib/components/Input/templates/SearchInput.tsx +0 -132
- package/dist/lib/components/Input/templates/SelectInput.tsx +0 -110
- package/dist/lib/components/Input/templates/TextInput.tsx +0 -110
- package/dist/lib/components/Input/templates/TextareaInput.tsx +0 -37
- package/dist/lib/components/Input/templates/TimeInput.tsx +0 -117
- package/dist/lib/components/Input/types.ts +0 -22
- package/dist/lib/components/InputCheck/InputCheck.tsx +0 -145
- package/dist/lib/components/InputCheck/styles.tsx +0 -282
- package/dist/lib/components/InputCheck/types.ts +0 -34
- package/dist/lib/components/InputComponents/components/InputAndListContainer.tsx +0 -42
- package/dist/lib/components/InputComponents/components/InputButton.tsx +0 -61
- package/dist/lib/components/InputComponents/components/InputContainer.tsx +0 -69
- package/dist/lib/components/InputComponents/components/InputIcon.tsx +0 -57
- package/dist/lib/components/InputComponents/components/InputLeftContainer.tsx +0 -28
- package/dist/lib/components/InputComponents/components/InputPrefix.tsx +0 -30
- package/dist/lib/components/InputComponents/components/InputRightContainer.tsx +0 -34
- package/dist/lib/components/InputComponents/components/InputSuffix.tsx +0 -30
- package/dist/lib/components/InputComponents/components/InputValidationHelper.tsx +0 -97
- package/dist/lib/components/InputComponents/components/InputValidationIcon.tsx +0 -65
- package/dist/lib/components/InputComponents/components/InputWrapper.tsx +0 -45
- package/dist/lib/components/InputComponents/components/ListInput.tsx +0 -42
- package/dist/lib/components/InputComponents/components/ListInputItem.tsx +0 -48
- package/dist/lib/components/InputComponents/index.ts +0 -13
- package/dist/lib/components/InputComponents/styles.tsx +0 -716
- package/dist/lib/components/InputComponents/types.ts +0 -262
- package/dist/lib/components/InputContainer/HelperBottom.tsx +0 -94
- package/dist/lib/components/InputContainer/InputContainer.tsx +0 -143
- package/dist/lib/components/InputContainer/styles.tsx +0 -87
- package/dist/lib/components/InputContainer/subtypes.ts +0 -8
- package/dist/lib/components/InputContainer/types.ts +0 -23
- package/dist/lib/components/InputCounter/InputCounter.tsx +0 -296
- package/dist/lib/components/InputCounter/styles.tsx +0 -51
- package/dist/lib/components/InputCounter/subtypes.ts +0 -7
- package/dist/lib/components/InputCounter/types.ts +0 -49
- package/dist/lib/components/InputImage/EmptyContainer.tsx +0 -40
- package/dist/lib/components/InputImage/HoverContainer.tsx +0 -47
- package/dist/lib/components/InputImage/InputImage.tsx +0 -160
- package/dist/lib/components/InputImage/styles.tsx +0 -113
- package/dist/lib/components/InputImage/subtypes.ts +0 -28
- package/dist/lib/components/InputImage/types.ts +0 -23
- package/dist/lib/components/InputPhone/InputPhone.tsx +0 -392
- package/dist/lib/components/InputPhone/styles.tsx +0 -216
- package/dist/lib/components/InputPhone/types.ts +0 -33
- package/dist/lib/components/InputPin/InputPin.tsx +0 -137
- package/dist/lib/components/InputPin/styles.tsx +0 -68
- package/dist/lib/components/InputPin/subtypes.ts +0 -9
- package/dist/lib/components/InputPin/types.ts +0 -29
- package/dist/lib/components/InputSlider/InputSlider.tsx +0 -193
- package/dist/lib/components/InputSlider/Slider.tsx +0 -43
- package/dist/lib/components/InputSlider/styles.tsx +0 -290
- package/dist/lib/components/InputSlider/types.ts +0 -13
- package/dist/lib/components/Key/Key.tsx +0 -46
- package/dist/lib/components/Key/styles.tsx +0 -27
- package/dist/lib/components/Key/types.ts +0 -9
- package/dist/lib/components/LibIcon/LibIcon.tsx +0 -34
- package/dist/lib/components/LibIcon/index.ts +0 -1
- package/dist/lib/components/LibIcon/types.ts +0 -7
- package/dist/lib/components/Link/Link.tsx +0 -88
- package/dist/lib/components/Link/index.ts +0 -1
- package/dist/lib/components/Link/types.ts +0 -7
- package/dist/lib/components/Linkify/Linkify.tsx +0 -58
- package/dist/lib/components/Linkify/types.ts +0 -6
- package/dist/lib/components/ListGroup/ListGroup.tsx +0 -110
- package/dist/lib/components/ListGroup/ListGroupItem.tsx +0 -171
- package/dist/lib/components/ListGroup/ListGroupTitle.tsx +0 -56
- package/dist/lib/components/ListGroup/index.ts +0 -3
- package/dist/lib/components/ListGroup/styles.tsx +0 -177
- package/dist/lib/components/ListGroup/types.ts +0 -106
- package/dist/lib/components/Loader/Loader.tsx +0 -45
- package/dist/lib/components/Loader/styles.tsx +0 -138
- package/dist/lib/components/Loader/templates/LoaderFour.tsx +0 -27
- package/dist/lib/components/Loader/templates/LoaderOne.tsx +0 -21
- package/dist/lib/components/Loader/templates/LoaderThree.tsx +0 -30
- package/dist/lib/components/Loader/templates/LoaderTwo.tsx +0 -25
- package/dist/lib/components/Loader/types.ts +0 -23
- package/dist/lib/components/Main/Main.tsx +0 -48
- package/dist/lib/components/Main/styles.tsx +0 -61
- package/dist/lib/components/Main/types.ts +0 -15
- package/dist/lib/components/MarkdownContainer/MarkdownContainer.tsx +0 -42
- package/dist/lib/components/MarkdownContainer/styles.tsx +0 -15
- package/dist/lib/components/MarkdownContainer/types.ts +0 -7
- package/dist/lib/components/MarkdownEditor/MarkdownEditor.tsx +0 -200
- package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtonTitles.tsx +0 -75
- package/dist/lib/components/MarkdownEditor/MdEditorButtons/EditorButtons.tsx +0 -73
- package/dist/lib/components/MarkdownEditor/MdEditorButtons/MarkdownButtons.tsx +0 -52
- package/dist/lib/components/MarkdownEditor/MdEditorInput.tsx +0 -88
- package/dist/lib/components/MarkdownEditor/markdown-buttons.tsx +0 -180
- package/dist/lib/components/MarkdownEditor/styles.tsx +0 -187
- package/dist/lib/components/MarkdownEditor/subtypes.ts +0 -54
- package/dist/lib/components/MarkdownEditor/types.ts +0 -57
- package/dist/lib/components/Masonry/Masonry.tsx +0 -73
- package/dist/lib/components/Masonry/styles.tsx +0 -22
- package/dist/lib/components/Masonry/types.ts +0 -8
- package/dist/lib/components/Masonry/utils.ts +0 -28
- package/dist/lib/components/Messaging/Message.tsx +0 -112
- package/dist/lib/components/Messaging/MessageForm.tsx +0 -153
- package/dist/lib/components/Messaging/MessagesContainer.tsx +0 -42
- package/dist/lib/components/Messaging/MessagesList.tsx +0 -140
- package/dist/lib/components/Messaging/Messaging.tsx +0 -123
- package/dist/lib/components/Messaging/index.ts +0 -5
- package/dist/lib/components/Messaging/styles.tsx +0 -176
- package/dist/lib/components/Messaging/types.ts +0 -119
- package/dist/lib/components/Meta/Meta.tsx +0 -125
- package/dist/lib/components/Meta/index.ts +0 -3
- package/dist/lib/components/Meta/types.ts +0 -17
- package/dist/lib/components/Modal/Modal.tsx +0 -134
- package/dist/lib/components/Modal/styles.tsx +0 -60
- package/dist/lib/components/Modal/types.ts +0 -36
- package/dist/lib/components/PageLayout/PageLayout.tsx +0 -96
- package/dist/lib/components/PageLayout/index.ts +0 -1
- package/dist/lib/components/PageLayout/types.ts +0 -45
- package/dist/lib/components/PageLoading/PageLoading.tsx +0 -67
- package/dist/lib/components/PageLoading/styles.tsx +0 -22
- package/dist/lib/components/PageLoading/types.ts +0 -13
- package/dist/lib/components/Pagination/Pagination.tsx +0 -262
- package/dist/lib/components/Pagination/PaginationButton.tsx +0 -52
- package/dist/lib/components/Pagination/styles.tsx +0 -70
- package/dist/lib/components/Pagination/types.ts +0 -55
- package/dist/lib/components/Paginator/Paginator.tsx +0 -169
- package/dist/lib/components/Paginator/styles.tsx +0 -34
- package/dist/lib/components/Paginator/types.ts +0 -14
- package/dist/lib/components/ProgressBar/ProgressBar.tsx +0 -74
- package/dist/lib/components/ProgressBar/styles.tsx +0 -76
- package/dist/lib/components/ProgressBar/types.ts +0 -11
- package/dist/lib/components/ProgressCircle/Circle.tsx +0 -29
- package/dist/lib/components/ProgressCircle/ProgressCircle.tsx +0 -96
- package/dist/lib/components/ProgressCircle/ProgressCircleFn.tsx +0 -42
- package/dist/lib/components/ProgressCircle/Value.tsx +0 -30
- package/dist/lib/components/ProgressCircle/clean-percentage.ts +0 -5
- package/dist/lib/components/ProgressCircle/styles.tsx +0 -53
- package/dist/lib/components/ProgressCircle/subtypes.ts +0 -9
- package/dist/lib/components/ProgressCircle/types.ts +0 -29
- package/dist/lib/components/Rating/Rating.tsx +0 -178
- package/dist/lib/components/Rating/styles.tsx +0 -50
- package/dist/lib/components/Rating/types.ts +0 -22
- package/dist/lib/components/ResetScroll/ResetScroll.tsx +0 -27
- package/dist/lib/components/ResetScroll/index.ts +0 -1
- package/dist/lib/components/Section/Section.tsx +0 -45
- package/dist/lib/components/Section/styles.tsx +0 -22
- package/dist/lib/components/Section/types.ts +0 -5
- package/dist/lib/components/Select/Select.tsx +0 -290
- package/dist/lib/components/Select/SelectButton.tsx +0 -52
- package/dist/lib/components/Select/styles.tsx +0 -20
- package/dist/lib/components/Select/subtypes.ts +0 -31
- package/dist/lib/components/Select/types.ts +0 -31
- package/dist/lib/components/Skeleton/Skeleton.tsx +0 -62
- package/dist/lib/components/Skeleton/SkeletonCard.tsx +0 -81
- package/dist/lib/components/Skeleton/SkeletonShine.tsx +0 -30
- package/dist/lib/components/Skeleton/index.ts +0 -3
- package/dist/lib/components/Skeleton/styles.tsx +0 -94
- package/dist/lib/components/Skeleton/subtypes.ts +0 -14
- package/dist/lib/components/Skeleton/types.ts +0 -37
- package/dist/lib/components/Slideshow/Slideshow.tsx +0 -191
- package/dist/lib/components/Slideshow/SlideshowButton.tsx +0 -98
- package/dist/lib/components/Slideshow/SlideshowPagination.tsx +0 -83
- package/dist/lib/components/Slideshow/styles.tsx +0 -359
- package/dist/lib/components/Slideshow/subtypes.ts +0 -20
- package/dist/lib/components/Slideshow/types.ts +0 -97
- package/dist/lib/components/SrOnly/SrOnly.tsx +0 -34
- package/dist/lib/components/SrOnly/index.ts +0 -1
- package/dist/lib/components/SrOnly/styles.tsx +0 -19
- package/dist/lib/components/SrOnly/types.ts +0 -3
- package/dist/lib/components/Stepper/Step.tsx +0 -122
- package/dist/lib/components/Stepper/Stepper.tsx +0 -92
- package/dist/lib/components/Stepper/index.ts +0 -2
- package/dist/lib/components/Stepper/styles.tsx +0 -113
- package/dist/lib/components/Stepper/types.ts +0 -42
- package/dist/lib/components/Sticky/Sticky.tsx +0 -44
- package/dist/lib/components/Sticky/styles.tsx +0 -13
- package/dist/lib/components/Sticky/types.ts +0 -5
- package/dist/lib/components/Table/TBody.tsx +0 -27
- package/dist/lib/components/Table/THead.tsx +0 -27
- package/dist/lib/components/Table/Table.tsx +0 -128
- package/dist/lib/components/Table/Td.tsx +0 -35
- package/dist/lib/components/Table/Tr.tsx +0 -23
- package/dist/lib/components/Table/index.ts +0 -5
- package/dist/lib/components/Table/styles.tsx +0 -112
- package/dist/lib/components/Table/types.ts +0 -40
- package/dist/lib/components/Tabs/TabButton.tsx +0 -54
- package/dist/lib/components/Tabs/TabItem.tsx +0 -45
- package/dist/lib/components/Tabs/Tabs.tsx +0 -140
- package/dist/lib/components/Tabs/TabsButtonsContainer.tsx +0 -48
- package/dist/lib/components/Tabs/TabsContainer.tsx +0 -36
- package/dist/lib/components/Tabs/index.ts +0 -5
- package/dist/lib/components/Tabs/styles.tsx +0 -176
- package/dist/lib/components/Tabs/types.ts +0 -48
- package/dist/lib/components/Tag/Tag.tsx +0 -101
- package/dist/lib/components/Tag/styles.tsx +0 -39
- package/dist/lib/components/Tag/types.ts +0 -41
- package/dist/lib/components/Text/Text.tsx +0 -71
- package/dist/lib/components/Text/styles.tsx +0 -250
- package/dist/lib/components/Text/subtypes.ts +0 -13
- package/dist/lib/components/Text/templates/Blockquote.tsx +0 -28
- package/dist/lib/components/Text/templates/Dl.tsx +0 -28
- package/dist/lib/components/Text/templates/Em.tsx +0 -28
- package/dist/lib/components/Text/templates/H1.tsx +0 -30
- package/dist/lib/components/Text/templates/H2.tsx +0 -30
- package/dist/lib/components/Text/templates/H3.tsx +0 -30
- package/dist/lib/components/Text/templates/H4.tsx +0 -30
- package/dist/lib/components/Text/templates/H5.tsx +0 -30
- package/dist/lib/components/Text/templates/H6.tsx +0 -28
- package/dist/lib/components/Text/templates/Ol.tsx +0 -28
- package/dist/lib/components/Text/templates/P.tsx +0 -28
- package/dist/lib/components/Text/templates/Small.tsx +0 -28
- package/dist/lib/components/Text/templates/Strong.tsx +0 -28
- package/dist/lib/components/Text/templates/Ul.tsx +0 -28
- package/dist/lib/components/Text/types.ts +0 -26
- package/dist/lib/components/TextIcon/TextIcon.tsx +0 -100
- package/dist/lib/components/TextIcon/index.ts +0 -1
- package/dist/lib/components/TextIcon/styles.tsx +0 -36
- package/dist/lib/components/TextIcon/types.ts +0 -19
- package/dist/lib/components/TextIcon/utils.ts +0 -56
- package/dist/lib/components/Timepicker/Timepicker.tsx +0 -306
- package/dist/lib/components/Timepicker/index.ts +0 -1
- package/dist/lib/components/Timepicker/styles.tsx +0 -32
- package/dist/lib/components/Timepicker/types.ts +0 -67
- package/dist/lib/components/Toast/Toast.tsx +0 -202
- package/dist/lib/components/Toast/Toaster.tsx +0 -156
- package/dist/lib/components/Toast/index.ts +0 -1
- package/dist/lib/components/Toast/styles.tsx +0 -247
- package/dist/lib/components/Toast/types.ts +0 -30
- package/dist/lib/components/Tooltip/Tooltip.tsx +0 -129
- package/dist/lib/components/Tooltip/styles.tsx +0 -149
- package/dist/lib/components/Tooltip/types.ts +0 -21
- package/dist/lib/components/Truncate/Truncate.tsx +0 -128
- package/dist/lib/components/Truncate/index.ts +0 -1
- package/dist/lib/components/Truncate/styles.tsx +0 -36
- package/dist/lib/components/Truncate/types.ts +0 -5
- package/dist/lib/components/Video/Video.tsx +0 -74
- package/dist/lib/components/Video/index.ts +0 -1
- package/dist/lib/components/Video/styles.tsx +0 -22
- package/dist/lib/components/Video/types.ts +0 -20
- package/dist/lib/components/Wrapper/Wrapper.tsx +0 -50
- package/dist/lib/components/Wrapper/styles.tsx +0 -33
- package/dist/lib/components/Wrapper/types.ts +0 -7
- package/dist/lib/components/Youtube/Youtube.tsx +0 -49
- package/dist/lib/components/Youtube/index.ts +0 -1
- package/dist/lib/components/Youtube/styles.tsx +0 -18
- package/dist/lib/components/Youtube/types.ts +0 -10
- package/dist/lib/context/Theme.context.tsx +0 -116
- package/dist/lib/context/Toaster/Toaster.context.tsx +0 -131
- package/dist/lib/context/Toaster/index.ts +0 -3
- package/dist/lib/context/Toaster/toast.reducer.ts +0 -34
- package/dist/lib/design-tokens.ts +0 -2217
- package/dist/lib/hooks/useClickOutside.tsx +0 -42
- package/dist/lib/hooks/useCopyToClipboard.tsx +0 -38
- package/dist/lib/hooks/useDebounce.tsx +0 -26
- package/dist/lib/hooks/useExportData.tsx +0 -65
- package/dist/lib/hooks/useFetch.tsx +0 -30
- package/dist/lib/hooks/useForm.tsx +0 -38
- package/dist/lib/hooks/useIsOverflow.ts +0 -46
- package/dist/lib/hooks/useKeyPress.tsx +0 -101
- package/dist/lib/hooks/useMaxWidth.tsx +0 -32
- package/dist/lib/hooks/useMergeRefs.ts +0 -36
- package/dist/lib/hooks/useMinWidth.tsx +0 -32
- package/dist/lib/hooks/usePaginatedData.tsx +0 -42
- package/dist/lib/hooks/usePagination.tsx +0 -122
- package/dist/lib/hooks/useTouchScreen.tsx +0 -25
- package/dist/lib/hooks/useTranslation.tsx +0 -43
- package/dist/lib/icons/ArrowUp.tsx +0 -31
- package/dist/lib/icons/Bold.tsx +0 -31
- package/dist/lib/icons/Calendar.tsx +0 -39
- package/dist/lib/icons/CaretDown.tsx +0 -31
- package/dist/lib/icons/Check.tsx +0 -31
- package/dist/lib/icons/CheckCircle.tsx +0 -37
- package/dist/lib/icons/ChevronDown.tsx +0 -31
- package/dist/lib/icons/ChevronLeft.tsx +0 -31
- package/dist/lib/icons/ChevronRight.tsx +0 -31
- package/dist/lib/icons/ChevronUp.tsx +0 -31
- package/dist/lib/icons/Clipboard.tsx +0 -31
- package/dist/lib/icons/Clock.tsx +0 -34
- package/dist/lib/icons/Close.tsx +0 -31
- package/dist/lib/icons/CloseCircle.tsx +0 -37
- package/dist/lib/icons/Code.tsx +0 -31
- package/dist/lib/icons/CodeBlock.tsx +0 -41
- package/dist/lib/icons/Comment.tsx +0 -41
- package/dist/lib/icons/Drag.tsx +0 -31
- package/dist/lib/icons/Edit.tsx +0 -37
- package/dist/lib/icons/EditorCode.tsx +0 -35
- package/dist/lib/icons/EditorLive.tsx +0 -35
- package/dist/lib/icons/EditorPreview.tsx +0 -35
- package/dist/lib/icons/Hide.tsx +0 -31
- package/dist/lib/icons/Image.tsx +0 -41
- package/dist/lib/icons/Italic.tsx +0 -31
- package/dist/lib/icons/Link.tsx +0 -35
- package/dist/lib/icons/Minus.tsx +0 -28
- package/dist/lib/icons/OrderedList.tsx +0 -31
- package/dist/lib/icons/Plus.tsx +0 -31
- package/dist/lib/icons/Quote.tsx +0 -31
- package/dist/lib/icons/Search.tsx +0 -37
- package/dist/lib/icons/Send.tsx +0 -31
- package/dist/lib/icons/Separator.tsx +0 -31
- package/dist/lib/icons/Show.tsx +0 -37
- package/dist/lib/icons/Star.tsx +0 -31
- package/dist/lib/icons/StarFull.tsx +0 -31
- package/dist/lib/icons/Strikethrough.tsx +0 -31
- package/dist/lib/icons/Underline.tsx +0 -31
- package/dist/lib/icons/UnorderedList.tsx +0 -31
- package/dist/lib/icons/index.ts +0 -39
- package/dist/lib/icons/styles.tsx +0 -17
- package/dist/lib/icons/types.ts +0 -9
- package/dist/lib/index.css +0 -1491
- package/dist/lib/index.ts +0 -159
- package/dist/lib/lib-utils/append-styles.ts +0 -7
- package/dist/lib/lib-utils/colors-maps.ts +0 -174
- package/dist/lib/lib-utils/generate-lib-tokens.ts +0 -38
- package/dist/lib/lib-utils/get-highlighted-text.tsx +0 -29
- package/dist/lib/lib-utils/get-icon-size-from-font.ts +0 -25
- package/dist/lib/lib-utils/index.ts +0 -9
- package/dist/lib/lib-utils/round-icon-size.ts +0 -5
- package/dist/lib/modules-declare.d.ts +0 -19
- package/dist/lib/types/component-items.ts +0 -511
- package/dist/lib/types/components-props.ts +0 -80
- package/dist/lib/types/generate-int-range.ts +0 -17
- package/dist/lib/types/global.ts +0 -436
- package/dist/lib/types/index.ts +0 -5
- package/dist/lib/types/theme.ts +0 -166
- package/dist/lib/utils/StyleSheetManager.tsx +0 -30
- package/dist/lib/utils/index.ts +0 -4
- package/dist/lib/utils/lib-tokens.json +0 -860
- package/dist/lib/utils/linkify-text.tsx +0 -26
- package/dist/lib/utils/options-markdown.ts +0 -132
- package/dist/lib/utils/set-default-theme.ts +0 -12
- package/dist/styles-BCSPldCD.js +0 -16
- package/dist/styles-CtcGw3Gv.cjs +0 -7
- /package/{license.md → LICENSE} +0 -0
- /package/{dist → src}/lib/components/Accordion/index.ts +0 -0
- /package/{dist → src}/lib/components/Alert/index.ts +0 -0
- /package/{dist → src}/lib/components/Aside/index.ts +0 -0
- /package/{dist → src}/lib/components/Autocomplete/index.ts +0 -0
- /package/{dist → src}/lib/components/Avatar/index.ts +0 -0
- /package/{dist → src}/lib/components/BackToTop/index.ts +0 -0
- /package/{dist → src}/lib/components/Badge/index.ts +0 -0
- /package/{dist → src}/lib/components/Breadcrumbs/index.ts +0 -0
- /package/{dist → src}/lib/components/Burger/index.ts +0 -0
- /package/{dist → src}/lib/components/Button/index.ts +0 -0
- /package/{dist → src}/lib/components/ButtonGroup/index.ts +0 -0
- /package/{dist → src}/lib/components/ButtonIcon/index.ts +0 -0
- /package/{dist → src}/lib/components/CodeContainer/index.ts +0 -0
- /package/{dist → src}/lib/components/Cover/index.ts +0 -0
- /package/{dist → src}/lib/components/DragList/index.ts +0 -0
- /package/{dist → src}/lib/components/Drawer/index.ts +0 -0
- /package/{dist → src}/lib/components/Fade/index.ts +0 -0
- /package/{dist → src}/lib/components/Fade/types.ts +0 -0
- /package/{dist → src}/lib/components/Fieldset/index.ts +0 -0
- /package/{dist → src}/lib/components/Flexbox/index.ts +0 -0
- /package/{dist → src}/lib/components/Form/index.ts +0 -0
- /package/{dist → src}/lib/components/Grid/index.ts +0 -0
- /package/{dist → src}/lib/components/Header/index.ts +0 -0
- /package/{dist → src}/lib/components/Highlight/index.ts +0 -0
- /package/{dist → src}/lib/components/Hr/index.ts +0 -0
- /package/{dist → src}/lib/components/Image/index.ts +0 -0
- /package/{dist → src}/lib/components/Input/index.ts +0 -0
- /package/{dist → src}/lib/components/InputCheck/index.ts +0 -0
- /package/{dist → src}/lib/components/InputContainer/index.ts +0 -0
- /package/{dist → src}/lib/components/InputCounter/index.ts +0 -0
- /package/{dist → src}/lib/components/InputImage/index.ts +0 -0
- /package/{dist → src}/lib/components/InputPhone/index.ts +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/countries.ts +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ac.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ad.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ae.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/af.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ag.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ai.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/al.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/am.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ao.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/aq.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ar.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/as.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/at.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/au.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/aw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ax.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/az.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ba.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bb.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bd.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/be.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bh.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bi.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bj.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bl.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bo.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bq.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/br.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bs.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bt.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bv.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/by.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/bz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ca.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cc.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cd.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cefta.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ch.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ci.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ck.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cl.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/co.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cp.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cv.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cx.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cy.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/cz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/de.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/dg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/dj.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/dk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/dm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/do.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/dz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ea.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ec.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ee.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/eg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/eh.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/er.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/es-ct.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/es-ga.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/es.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/et.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/eu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/fi.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/fj.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/fk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/fm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/fo.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/fr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ga.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gb-eng.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gb-nir.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gb-sct.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gb-wls.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gb.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gd.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ge.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gh.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gi.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gl.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gp.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gq.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gs.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gt.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/gy.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/hk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/hm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/hn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/hr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ht.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/hu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ic.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/id.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ie.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/il.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/im.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/in.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/io.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/iq.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ir.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/is.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/it.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/je.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/jm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/jo.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/jp.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ke.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/kg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/kh.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ki.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/km.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/kn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/kp.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/kr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/kw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ky.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/kz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/la.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/lb.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/lc.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/li.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/lk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/lr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ls.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/lt.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/lu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/lv.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ly.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ma.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mc.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/md.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/me.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mh.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ml.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mo.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mp.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mq.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ms.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mt.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mv.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mx.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/my.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/mz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/na.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/nc.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ne.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/nf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ng.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ni.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/nl.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/no.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/np.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/nr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/nu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/nz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/om.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pa.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pe.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ph.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pl.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ps.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pt.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/pw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/py.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/qa.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/re.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ro.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/rs.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ru.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/rw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sa.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sb.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sc.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sd.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/se.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sh.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/si.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sj.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sl.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/so.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ss.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/st.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sv.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sx.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sy.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/sz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ta.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tc.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/td.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/th.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tj.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tl.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/to.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tr.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tt.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tv.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tw.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/tz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ua.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ug.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/um.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/un.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/us.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/uy.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/uz.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/va.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/vc.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ve.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/vg.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/vi.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/vn.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/vu.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/wf.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ws.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/xk.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/xx.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/ye.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/yt.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/za.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/zm.svg +0 -0
- /package/{dist → src}/lib/components/InputPhone/utils/flags/zw.svg +0 -0
- /package/{dist → src}/lib/components/InputPin/index.ts +0 -0
- /package/{dist → src}/lib/components/InputSlider/index.ts +0 -0
- /package/{dist → src}/lib/components/Key/index.ts +0 -0
- /package/{dist → src}/lib/components/Linkify/index.ts +0 -0
- /package/{dist → src}/lib/components/Loader/index.ts +0 -0
- /package/{dist → src}/lib/components/Main/index.ts +0 -0
- /package/{dist → src}/lib/components/MarkdownContainer/index.ts +0 -0
- /package/{dist → src}/lib/components/MarkdownEditor/index.ts +0 -0
- /package/{dist → src}/lib/components/Masonry/index.ts +0 -0
- /package/{dist → src}/lib/components/Modal/index.ts +0 -0
- /package/{dist → src}/lib/components/PageLoading/index.ts +0 -0
- /package/{dist → src}/lib/components/Pagination/index.ts +0 -0
- /package/{dist → src}/lib/components/Paginator/index.ts +0 -0
- /package/{dist → src}/lib/components/ProgressBar/index.ts +0 -0
- /package/{dist → src}/lib/components/ProgressCircle/index.ts +0 -0
- /package/{dist → src}/lib/components/Rating/index.ts +0 -0
- /package/{dist → src}/lib/components/Section/index.ts +0 -0
- /package/{dist → src}/lib/components/Select/index.ts +0 -0
- /package/{dist → src}/lib/components/Slideshow/index.ts +0 -0
- /package/{dist → src}/lib/components/Sticky/index.ts +0 -0
- /package/{dist → src}/lib/components/Tag/index.ts +0 -0
- /package/{dist → src}/lib/components/Text/index.ts +0 -0
- /package/{dist → src}/lib/components/Tooltip/index.ts +0 -0
- /package/{dist → src}/lib/components/Wrapper/index.ts +0 -0
- /package/{dist → src}/lib/hooks/index.ts +0 -0
- /package/{dist → src}/lib/lib-utils/transfom-search-keys.ts +0 -0
- /package/{dist → src}/lib/types/require-at-least-one.ts +0 -0
|
@@ -0,0 +1,1985 @@
|
|
|
1
|
+
export type Color = {
|
|
2
|
+
name: string
|
|
3
|
+
variable: string
|
|
4
|
+
css: string
|
|
5
|
+
hex: string
|
|
6
|
+
rgb: string
|
|
7
|
+
twClass: string
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export const allColors: Array<Color> = [
|
|
11
|
+
{
|
|
12
|
+
name: "black",
|
|
13
|
+
variable: "COLORS.BLACK",
|
|
14
|
+
css: "var(--color-black)",
|
|
15
|
+
hex: "#000000",
|
|
16
|
+
rgb: "rgb(0, 0, 0)",
|
|
17
|
+
twClass: "bg-black",
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
name: "white",
|
|
21
|
+
variable: "COLORS.WHITE",
|
|
22
|
+
css: "var(--color-white)",
|
|
23
|
+
hex: "#FFFFFF",
|
|
24
|
+
rgb: "rgb(255, 255, 255)",
|
|
25
|
+
twClass: "bg-white",
|
|
26
|
+
},
|
|
27
|
+
// red
|
|
28
|
+
{
|
|
29
|
+
name: "red-50",
|
|
30
|
+
variable: "COLORS.RED_50",
|
|
31
|
+
css: "var(--color-red-50)",
|
|
32
|
+
hex: "#fef2f2",
|
|
33
|
+
rgb: "254, 242, 242",
|
|
34
|
+
twClass: "bg-red-50",
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
name: "red-100",
|
|
38
|
+
variable: "COLORS.RED_100",
|
|
39
|
+
css: "var(--color-red-100)",
|
|
40
|
+
hex: "#fee2e2",
|
|
41
|
+
rgb: "254, 226, 226",
|
|
42
|
+
twClass: "bg-red-100",
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
name: "red-200",
|
|
46
|
+
variable: "COLORS.RED_200",
|
|
47
|
+
css: "var(--color-red-200)",
|
|
48
|
+
hex: "#fecaca",
|
|
49
|
+
rgb: "254, 202, 202",
|
|
50
|
+
twClass: "bg-red-200",
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
name: "red-300",
|
|
54
|
+
variable: "COLORS.RED_300",
|
|
55
|
+
css: "var(--color-red-300)",
|
|
56
|
+
hex: "#fca5a5",
|
|
57
|
+
rgb: "252, 165, 165",
|
|
58
|
+
twClass: "bg-red-300",
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
name: "red-400",
|
|
62
|
+
variable: "COLORS.RED_400",
|
|
63
|
+
css: "var(--color-red-400)",
|
|
64
|
+
hex: "#f87171",
|
|
65
|
+
rgb: "248, 113, 113",
|
|
66
|
+
twClass: "bg-red-400",
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
name: "red-500",
|
|
70
|
+
variable: "COLORS.RED_500",
|
|
71
|
+
css: "var(--color-red-500)",
|
|
72
|
+
hex: "#ef4444",
|
|
73
|
+
rgb: "239, 68, 68",
|
|
74
|
+
twClass: "bg-red-500",
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
name: "red-600",
|
|
78
|
+
variable: "COLORS.RED_600",
|
|
79
|
+
css: "var(--color-red-600)",
|
|
80
|
+
hex: "#dc2626",
|
|
81
|
+
rgb: "220, 38, 38",
|
|
82
|
+
twClass: "bg-red-600",
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
name: "red-700",
|
|
86
|
+
variable: "COLORS.RED_700",
|
|
87
|
+
css: "var(--color-red-700)",
|
|
88
|
+
hex: "#b91c1c",
|
|
89
|
+
rgb: "185, 28, 28",
|
|
90
|
+
twClass: "bg-red-700",
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
name: "red-800",
|
|
94
|
+
variable: "COLORS.RED_800",
|
|
95
|
+
css: "var(--color-red-800)",
|
|
96
|
+
hex: "#991b1b",
|
|
97
|
+
rgb: "153, 27, 27",
|
|
98
|
+
twClass: "bg-red-800",
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
name: "red-900",
|
|
102
|
+
variable: "COLORS.RED_900",
|
|
103
|
+
css: "var(--color-red-900)",
|
|
104
|
+
hex: "#7f1d1d",
|
|
105
|
+
rgb: "127, 29, 29",
|
|
106
|
+
twClass: "bg-red-900",
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
name: "red-950",
|
|
110
|
+
variable: "COLORS.RED_950",
|
|
111
|
+
css: "var(--color-red-950)",
|
|
112
|
+
hex: "#450a0a",
|
|
113
|
+
rgb: "69, 10, 10",
|
|
114
|
+
twClass: "bg-red-950",
|
|
115
|
+
},
|
|
116
|
+
// orange
|
|
117
|
+
{
|
|
118
|
+
name: "orange-50",
|
|
119
|
+
variable: "COLORS.ORANGE_50",
|
|
120
|
+
css: "var(--color-orange-50)",
|
|
121
|
+
hex: "#fff7ed",
|
|
122
|
+
rgb: "255, 247, 237",
|
|
123
|
+
twClass: "bg-orange-50",
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
name: "orange-100",
|
|
127
|
+
variable: "COLORS.ORANGE_100",
|
|
128
|
+
css: "var(--color-orange-100)",
|
|
129
|
+
hex: "#ffedd5",
|
|
130
|
+
rgb: "255, 237, 213",
|
|
131
|
+
twClass: "bg-orange-100",
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
name: "orange-200",
|
|
135
|
+
variable: "COLORS.ORANGE_200",
|
|
136
|
+
css: "var(--color-orange-200)",
|
|
137
|
+
hex: "#fed7aa",
|
|
138
|
+
rgb: "254, 215, 170",
|
|
139
|
+
twClass: "bg-orange-200",
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
name: "orange-300",
|
|
143
|
+
variable: "COLORS.ORANGE_300",
|
|
144
|
+
css: "var(--color-orange-300)",
|
|
145
|
+
hex: "#fdba74",
|
|
146
|
+
rgb: "253, 186, 116",
|
|
147
|
+
twClass: "bg-orange-300",
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
name: "orange-400",
|
|
151
|
+
variable: "COLORS.ORANGE_400",
|
|
152
|
+
css: "var(--color-orange-400)",
|
|
153
|
+
hex: "#fb923c",
|
|
154
|
+
rgb: "251, 146, 60",
|
|
155
|
+
twClass: "bg-orange-400",
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
name: "orange-500",
|
|
159
|
+
variable: "COLORS.ORANGE_500",
|
|
160
|
+
css: "var(--color-orange-500)",
|
|
161
|
+
hex: "#f97316",
|
|
162
|
+
rgb: "249, 115, 22",
|
|
163
|
+
twClass: "bg-orange-500",
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
name: "orange-600",
|
|
167
|
+
variable: "COLORS.ORANGE_600",
|
|
168
|
+
css: "var(--color-orange-600)",
|
|
169
|
+
hex: "#ea580c",
|
|
170
|
+
rgb: "234, 88, 12",
|
|
171
|
+
twClass: "bg-orange-600",
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
name: "orange-700",
|
|
175
|
+
variable: "COLORS.ORANGE_700",
|
|
176
|
+
css: "var(--color-orange-700)",
|
|
177
|
+
hex: "#c2410c",
|
|
178
|
+
rgb: "194, 65, 12",
|
|
179
|
+
twClass: "bg-orange-700",
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
name: "orange-800",
|
|
183
|
+
variable: "COLORS.ORANGE_800",
|
|
184
|
+
css: "var(--color-orange-800)",
|
|
185
|
+
hex: "#9a3412",
|
|
186
|
+
rgb: "154, 52, 18",
|
|
187
|
+
twClass: "bg-orange-800",
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
name: "orange-900",
|
|
191
|
+
variable: "COLORS.ORANGE_900",
|
|
192
|
+
css: "var(--color-orange-900)",
|
|
193
|
+
hex: "#7c2d12",
|
|
194
|
+
rgb: "124, 45, 18",
|
|
195
|
+
twClass: "bg-orange-900",
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
name: "orange-950",
|
|
199
|
+
variable: "COLORS.ORANGE_950",
|
|
200
|
+
css: "var(--color-orange-950)",
|
|
201
|
+
hex: "#431407",
|
|
202
|
+
rgb: "67, 20, 7",
|
|
203
|
+
twClass: "bg-orange-950",
|
|
204
|
+
},
|
|
205
|
+
// amber
|
|
206
|
+
{
|
|
207
|
+
name: "amber-50",
|
|
208
|
+
variable: "COLORS.AMBER_50",
|
|
209
|
+
css: "var(--color-amber-50)",
|
|
210
|
+
hex: "#fffbeb",
|
|
211
|
+
rgb: "255, 251, 235",
|
|
212
|
+
twClass: "bg-amber-50",
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
name: "amber-100",
|
|
216
|
+
variable: "COLORS.AMBER_100",
|
|
217
|
+
css: "var(--color-amber-100)",
|
|
218
|
+
hex: "#fef3c7",
|
|
219
|
+
rgb: "254, 243, 199",
|
|
220
|
+
twClass: "bg-amber-100",
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
name: "amber-200",
|
|
224
|
+
variable: "COLORS.AMBER_200",
|
|
225
|
+
css: "var(--color-amber-200)",
|
|
226
|
+
hex: "#fde68a",
|
|
227
|
+
rgb: "253, 230, 138",
|
|
228
|
+
twClass: "bg-amber-200",
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
name: "amber-300",
|
|
232
|
+
variable: "COLORS.AMBER_300",
|
|
233
|
+
css: "var(--color-amber-300)",
|
|
234
|
+
hex: "#fcd34d",
|
|
235
|
+
rgb: "252, 211, 77",
|
|
236
|
+
twClass: "bg-amber-300",
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
name: "amber-400",
|
|
240
|
+
variable: "COLORS.AMBER_400",
|
|
241
|
+
css: "var(--color-amber-400)",
|
|
242
|
+
hex: "#fbbf24",
|
|
243
|
+
rgb: "251, 191, 36",
|
|
244
|
+
twClass: "bg-amber-400",
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
name: "amber-500",
|
|
248
|
+
variable: "COLORS.AMBER_500",
|
|
249
|
+
css: "var(--color-amber-500)",
|
|
250
|
+
hex: "#f59e42",
|
|
251
|
+
rgb: "245, 158, 66",
|
|
252
|
+
twClass: "bg-amber-500",
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
name: "amber-600",
|
|
256
|
+
variable: "COLORS.AMBER_600",
|
|
257
|
+
css: "var(--color-amber-600)",
|
|
258
|
+
hex: "#d97706",
|
|
259
|
+
rgb: "217, 119, 6",
|
|
260
|
+
twClass: "bg-amber-600",
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
name: "amber-700",
|
|
264
|
+
variable: "COLORS.AMBER_700",
|
|
265
|
+
css: "var(--color-amber-700)",
|
|
266
|
+
hex: "#b45309",
|
|
267
|
+
rgb: "180, 83, 9",
|
|
268
|
+
twClass: "bg-amber-700",
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
name: "amber-800",
|
|
272
|
+
variable: "COLORS.AMBER_800",
|
|
273
|
+
css: "var(--color-amber-800)",
|
|
274
|
+
hex: "#92400e",
|
|
275
|
+
rgb: "146, 64, 14",
|
|
276
|
+
twClass: "bg-amber-800",
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
name: "amber-900",
|
|
280
|
+
variable: "COLORS.AMBER_900",
|
|
281
|
+
css: "var(--color-amber-900)",
|
|
282
|
+
hex: "#78350f",
|
|
283
|
+
rgb: "120, 53, 15",
|
|
284
|
+
twClass: "bg-amber-900",
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
name: "amber-950",
|
|
288
|
+
variable: "COLORS.AMBER_950",
|
|
289
|
+
css: "var(--color-amber-950)",
|
|
290
|
+
hex: "#451a03",
|
|
291
|
+
rgb: "69, 26, 3",
|
|
292
|
+
twClass: "bg-amber-950",
|
|
293
|
+
},
|
|
294
|
+
// yellow
|
|
295
|
+
{
|
|
296
|
+
name: "yellow-50",
|
|
297
|
+
variable: "COLORS.YELLOW_50",
|
|
298
|
+
css: "var(--color-yellow-50)",
|
|
299
|
+
hex: "#fefce8",
|
|
300
|
+
rgb: "254, 252, 232",
|
|
301
|
+
twClass: "bg-yellow-50",
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
name: "yellow-100",
|
|
305
|
+
variable: "COLORS.YELLOW_100",
|
|
306
|
+
css: "var(--color-yellow-100)",
|
|
307
|
+
hex: "#fef9c3",
|
|
308
|
+
rgb: "254, 249, 195",
|
|
309
|
+
twClass: "bg-yellow-100",
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
name: "yellow-200",
|
|
313
|
+
variable: "COLORS.YELLOW_200",
|
|
314
|
+
css: "var(--color-yellow-200)",
|
|
315
|
+
hex: "#fef08a",
|
|
316
|
+
rgb: "254, 240, 138",
|
|
317
|
+
twClass: "bg-yellow-200",
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
name: "yellow-300",
|
|
321
|
+
variable: "COLORS.YELLOW_300",
|
|
322
|
+
css: "var(--color-yellow-300)",
|
|
323
|
+
hex: "#fde047",
|
|
324
|
+
rgb: "253, 224, 71",
|
|
325
|
+
twClass: "bg-yellow-300",
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
name: "yellow-400",
|
|
329
|
+
variable: "COLORS.YELLOW_400",
|
|
330
|
+
css: "var(--color-yellow-400)",
|
|
331
|
+
hex: "#facc15",
|
|
332
|
+
rgb: "250, 204, 21",
|
|
333
|
+
twClass: "bg-yellow-400",
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
name: "yellow-500",
|
|
337
|
+
variable: "COLORS.YELLOW_500",
|
|
338
|
+
css: "var(--color-yellow-500)",
|
|
339
|
+
hex: "#eab308",
|
|
340
|
+
rgb: "234, 179, 8",
|
|
341
|
+
twClass: "bg-yellow-500",
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
name: "yellow-600",
|
|
345
|
+
variable: "COLORS.YELLOW_600",
|
|
346
|
+
css: "var(--color-yellow-600)",
|
|
347
|
+
hex: "#ca8a04",
|
|
348
|
+
rgb: "202, 138, 4",
|
|
349
|
+
twClass: "bg-yellow-600",
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
name: "yellow-700",
|
|
353
|
+
variable: "COLORS.YELLOW_700",
|
|
354
|
+
css: "var(--color-yellow-700)",
|
|
355
|
+
hex: "#a16207",
|
|
356
|
+
rgb: "161, 98, 7",
|
|
357
|
+
twClass: "bg-yellow-700",
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
name: "yellow-800",
|
|
361
|
+
variable: "COLORS.YELLOW_800",
|
|
362
|
+
css: "var(--color-yellow-800)",
|
|
363
|
+
hex: "#854d0e",
|
|
364
|
+
rgb: "133, 77, 14",
|
|
365
|
+
twClass: "bg-yellow-800",
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
name: "yellow-900",
|
|
369
|
+
variable: "COLORS.YELLOW_900",
|
|
370
|
+
css: "var(--color-yellow-900)",
|
|
371
|
+
hex: "#713f12",
|
|
372
|
+
rgb: "113, 63, 18",
|
|
373
|
+
twClass: "bg-yellow-900",
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
name: "yellow-950",
|
|
377
|
+
variable: "COLORS.YELLOW_950",
|
|
378
|
+
css: "var(--color-yellow-950)",
|
|
379
|
+
hex: "#422006",
|
|
380
|
+
rgb: "66, 32, 6",
|
|
381
|
+
twClass: "bg-yellow-950",
|
|
382
|
+
},
|
|
383
|
+
// lime
|
|
384
|
+
{
|
|
385
|
+
name: "lime-50",
|
|
386
|
+
variable: "COLORS.LIME_50",
|
|
387
|
+
css: "var(--color-lime-50)",
|
|
388
|
+
hex: "#f7fee7",
|
|
389
|
+
rgb: "247, 254, 231",
|
|
390
|
+
twClass: "bg-lime-50",
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
name: "lime-100",
|
|
394
|
+
variable: "COLORS.LIME_100",
|
|
395
|
+
css: "var(--color-lime-100)",
|
|
396
|
+
hex: "#ecfccb",
|
|
397
|
+
rgb: "236, 252, 203",
|
|
398
|
+
twClass: "bg-lime-100",
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
name: "lime-200",
|
|
402
|
+
variable: "COLORS.LIME_200",
|
|
403
|
+
css: "var(--color-lime-200)",
|
|
404
|
+
hex: "#d9f99d",
|
|
405
|
+
rgb: "217, 249, 157",
|
|
406
|
+
twClass: "bg-lime-200",
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
name: "lime-300",
|
|
410
|
+
variable: "COLORS.LIME_300",
|
|
411
|
+
css: "var(--color-lime-300)",
|
|
412
|
+
hex: "#bef264",
|
|
413
|
+
rgb: "190, 242, 100",
|
|
414
|
+
twClass: "bg-lime-300",
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
name: "lime-400",
|
|
418
|
+
variable: "COLORS.LIME_400",
|
|
419
|
+
css: "var(--color-lime-400)",
|
|
420
|
+
hex: "#a3e635",
|
|
421
|
+
rgb: "163, 230, 53",
|
|
422
|
+
twClass: "bg-lime-400",
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
name: "lime-500",
|
|
426
|
+
variable: "COLORS.LIME_500",
|
|
427
|
+
css: "var(--color-lime-500)",
|
|
428
|
+
hex: "#84cc16",
|
|
429
|
+
rgb: "132, 204, 22",
|
|
430
|
+
twClass: "bg-lime-500",
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
name: "lime-600",
|
|
434
|
+
variable: "COLORS.LIME_600",
|
|
435
|
+
css: "var(--color-lime-600)",
|
|
436
|
+
hex: "#65a30d",
|
|
437
|
+
rgb: "101, 163, 13",
|
|
438
|
+
twClass: "bg-lime-600",
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
name: "lime-700",
|
|
442
|
+
variable: "COLORS.LIME_700",
|
|
443
|
+
css: "var(--color-lime-700)",
|
|
444
|
+
hex: "#4d7c0f",
|
|
445
|
+
rgb: "77, 124, 15",
|
|
446
|
+
twClass: "bg-lime-700",
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
name: "lime-800",
|
|
450
|
+
variable: "COLORS.LIME_800",
|
|
451
|
+
css: "var(--color-lime-800)",
|
|
452
|
+
hex: "#3f6212",
|
|
453
|
+
rgb: "63, 98, 18",
|
|
454
|
+
twClass: "bg-lime-800",
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
name: "lime-900",
|
|
458
|
+
variable: "COLORS.LIME_900",
|
|
459
|
+
css: "var(--color-lime-900)",
|
|
460
|
+
hex: "#365314",
|
|
461
|
+
rgb: "54, 83, 20",
|
|
462
|
+
twClass: "bg-lime-900",
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
name: "lime-950",
|
|
466
|
+
variable: "COLORS.LIME_950",
|
|
467
|
+
css: "var(--color-lime-950)",
|
|
468
|
+
hex: "#1a2e05",
|
|
469
|
+
rgb: "26, 46, 5",
|
|
470
|
+
twClass: "bg-lime-950",
|
|
471
|
+
},
|
|
472
|
+
// green
|
|
473
|
+
{
|
|
474
|
+
name: "green-50",
|
|
475
|
+
variable: "COLORS.GREEN_50",
|
|
476
|
+
css: "var(--color-green-50)",
|
|
477
|
+
hex: "#f0fdf4",
|
|
478
|
+
rgb: "240, 253, 244",
|
|
479
|
+
twClass: "bg-green-50",
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
name: "green-100",
|
|
483
|
+
variable: "COLORS.GREEN_100",
|
|
484
|
+
css: "var(--color-green-100)",
|
|
485
|
+
hex: "#dcfce7",
|
|
486
|
+
rgb: "220, 252, 231",
|
|
487
|
+
twClass: "bg-green-100",
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
name: "green-200",
|
|
491
|
+
variable: "COLORS.GREEN_200",
|
|
492
|
+
css: "var(--color-green-200)",
|
|
493
|
+
hex: "#bbf7d0",
|
|
494
|
+
rgb: "187, 247, 208",
|
|
495
|
+
twClass: "bg-green-200",
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
name: "green-300",
|
|
499
|
+
variable: "COLORS.GREEN_300",
|
|
500
|
+
css: "var(--color-green-300)",
|
|
501
|
+
hex: "#86efac",
|
|
502
|
+
rgb: "134, 239, 172",
|
|
503
|
+
twClass: "bg-green-300",
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
name: "green-400",
|
|
507
|
+
variable: "COLORS.GREEN_400",
|
|
508
|
+
css: "var(--color-green-400)",
|
|
509
|
+
hex: "#4ade80",
|
|
510
|
+
rgb: "74, 222, 128",
|
|
511
|
+
twClass: "bg-green-400",
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
name: "green-500",
|
|
515
|
+
variable: "COLORS.GREEN_500",
|
|
516
|
+
css: "var(--color-green-500)",
|
|
517
|
+
hex: "#22c55e",
|
|
518
|
+
rgb: "34, 197, 94",
|
|
519
|
+
twClass: "bg-green-500",
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
name: "green-600",
|
|
523
|
+
variable: "COLORS.GREEN_600",
|
|
524
|
+
css: "var(--color-green-600)",
|
|
525
|
+
hex: "#16a34a",
|
|
526
|
+
rgb: "22, 163, 74",
|
|
527
|
+
twClass: "bg-green-600",
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
name: "green-700",
|
|
531
|
+
variable: "COLORS.GREEN_700",
|
|
532
|
+
css: "var(--color-green-700)",
|
|
533
|
+
hex: "#15803d",
|
|
534
|
+
rgb: "21, 128, 61",
|
|
535
|
+
twClass: "bg-green-700",
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
name: "green-800",
|
|
539
|
+
variable: "COLORS.GREEN_800",
|
|
540
|
+
css: "var(--color-green-800)",
|
|
541
|
+
hex: "#166534",
|
|
542
|
+
rgb: "22, 101, 52",
|
|
543
|
+
twClass: "bg-green-800",
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
name: "green-900",
|
|
547
|
+
variable: "COLORS.GREEN_900",
|
|
548
|
+
css: "var(--color-green-900)",
|
|
549
|
+
hex: "#14532d",
|
|
550
|
+
rgb: "20, 83, 45",
|
|
551
|
+
twClass: "bg-green-900",
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
name: "green-950",
|
|
555
|
+
variable: "COLORS.GREEN_950",
|
|
556
|
+
css: "var(--color-green-950)",
|
|
557
|
+
hex: "#052e16",
|
|
558
|
+
rgb: "5, 46, 22",
|
|
559
|
+
twClass: "bg-green-950",
|
|
560
|
+
},
|
|
561
|
+
// emerald
|
|
562
|
+
{
|
|
563
|
+
name: "emerald-50",
|
|
564
|
+
variable: "COLORS.EMERALD_50",
|
|
565
|
+
css: "var(--color-emerald-50)",
|
|
566
|
+
hex: "#ecfdf5",
|
|
567
|
+
rgb: "236, 253, 245",
|
|
568
|
+
twClass: "bg-emerald-50",
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
name: "emerald-100",
|
|
572
|
+
variable: "COLORS.EMERALD_100",
|
|
573
|
+
css: "var(--color-emerald-100)",
|
|
574
|
+
hex: "#d1fae5",
|
|
575
|
+
rgb: "209, 250, 229",
|
|
576
|
+
twClass: "bg-emerald-100",
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
name: "emerald-200",
|
|
580
|
+
variable: "COLORS.EMERALD_200",
|
|
581
|
+
css: "var(--color-emerald-200)",
|
|
582
|
+
hex: "#a7f3d0",
|
|
583
|
+
rgb: "167, 243, 208",
|
|
584
|
+
twClass: "bg-emerald-200",
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
name: "emerald-300",
|
|
588
|
+
variable: "COLORS.EMERALD_300",
|
|
589
|
+
css: "var(--color-emerald-300)",
|
|
590
|
+
hex: "#6ee7b7",
|
|
591
|
+
rgb: "110, 231, 183",
|
|
592
|
+
twClass: "bg-emerald-300",
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
name: "emerald-400",
|
|
596
|
+
variable: "COLORS.EMERALD_400",
|
|
597
|
+
css: "var(--color-emerald-400)",
|
|
598
|
+
hex: "#34d399",
|
|
599
|
+
rgb: "52, 211, 153",
|
|
600
|
+
twClass: "bg-emerald-400",
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
name: "emerald-500",
|
|
604
|
+
variable: "COLORS.EMERALD_500",
|
|
605
|
+
css: "var(--color-emerald-500)",
|
|
606
|
+
hex: "#10b981",
|
|
607
|
+
rgb: "16, 185, 129",
|
|
608
|
+
twClass: "bg-emerald-500",
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
name: "emerald-600",
|
|
612
|
+
variable: "COLORS.EMERALD_600",
|
|
613
|
+
css: "var(--color-emerald-600)",
|
|
614
|
+
hex: "#059669",
|
|
615
|
+
rgb: "5, 150, 105",
|
|
616
|
+
twClass: "bg-emerald-600",
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
name: "emerald-700",
|
|
620
|
+
variable: "COLORS.EMERALD_700",
|
|
621
|
+
css: "var(--color-emerald-700)",
|
|
622
|
+
hex: "#047857",
|
|
623
|
+
rgb: "4, 120, 87",
|
|
624
|
+
twClass: "bg-emerald-700",
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
name: "emerald-800",
|
|
628
|
+
variable: "COLORS.EMERALD_800",
|
|
629
|
+
css: "var(--color-emerald-800)",
|
|
630
|
+
hex: "#065f46",
|
|
631
|
+
rgb: "6, 95, 70",
|
|
632
|
+
twClass: "bg-emerald-800",
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
name: "emerald-900",
|
|
636
|
+
variable: "COLORS.EMERALD_900",
|
|
637
|
+
css: "var(--color-emerald-900)",
|
|
638
|
+
hex: "#064e3b",
|
|
639
|
+
rgb: "6, 78, 59",
|
|
640
|
+
twClass: "bg-emerald-900",
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
name: "emerald-950",
|
|
644
|
+
variable: "COLORS.EMERALD_950",
|
|
645
|
+
css: "var(--color-emerald-950)",
|
|
646
|
+
hex: "#022c22",
|
|
647
|
+
rgb: "2, 44, 34",
|
|
648
|
+
twClass: "bg-emerald-950",
|
|
649
|
+
},
|
|
650
|
+
// teal
|
|
651
|
+
{
|
|
652
|
+
name: "teal-50",
|
|
653
|
+
variable: "COLORS.TEAL_50",
|
|
654
|
+
css: "var(--color-teal-50)",
|
|
655
|
+
hex: "#f0fdfa",
|
|
656
|
+
rgb: "240, 253, 250",
|
|
657
|
+
twClass: "bg-teal-50",
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
name: "teal-100",
|
|
661
|
+
variable: "COLORS.TEAL_100",
|
|
662
|
+
css: "var(--color-teal-100)",
|
|
663
|
+
hex: "#ccfbf1",
|
|
664
|
+
rgb: "204, 251, 241",
|
|
665
|
+
twClass: "bg-teal-100",
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
name: "teal-200",
|
|
669
|
+
variable: "COLORS.TEAL_200",
|
|
670
|
+
css: "var(--color-teal-200)",
|
|
671
|
+
hex: "#99f6e4",
|
|
672
|
+
rgb: "153, 246, 228",
|
|
673
|
+
twClass: "bg-teal-200",
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
name: "teal-300",
|
|
677
|
+
variable: "COLORS.TEAL_300",
|
|
678
|
+
css: "var(--color-teal-300)",
|
|
679
|
+
hex: "#5eead4",
|
|
680
|
+
rgb: "94, 234, 212",
|
|
681
|
+
twClass: "bg-teal-300",
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
name: "teal-400",
|
|
685
|
+
variable: "COLORS.TEAL_400",
|
|
686
|
+
css: "var(--color-teal-400)",
|
|
687
|
+
hex: "#2dd4bf",
|
|
688
|
+
rgb: "45, 212, 191",
|
|
689
|
+
twClass: "bg-teal-400",
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
name: "teal-500",
|
|
693
|
+
variable: "COLORS.TEAL_500",
|
|
694
|
+
css: "var(--color-teal-500)",
|
|
695
|
+
hex: "#14b8a6",
|
|
696
|
+
rgb: "20, 184, 166",
|
|
697
|
+
twClass: "bg-teal-500",
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
name: "teal-600",
|
|
701
|
+
variable: "COLORS.TEAL_600",
|
|
702
|
+
css: "var(--color-teal-600)",
|
|
703
|
+
hex: "#0d9488",
|
|
704
|
+
rgb: "13, 148, 136",
|
|
705
|
+
twClass: "bg-teal-600",
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
name: "teal-700",
|
|
709
|
+
variable: "COLORS.TEAL_700",
|
|
710
|
+
css: "var(--color-teal-700)",
|
|
711
|
+
hex: "#0f766e",
|
|
712
|
+
rgb: "15, 118, 110",
|
|
713
|
+
twClass: "bg-teal-700",
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
name: "teal-800",
|
|
717
|
+
variable: "COLORS.TEAL_800",
|
|
718
|
+
css: "var(--color-teal-800)",
|
|
719
|
+
hex: "#115e59",
|
|
720
|
+
rgb: "17, 94, 89",
|
|
721
|
+
twClass: "bg-teal-800",
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
name: "teal-900",
|
|
725
|
+
variable: "COLORS.TEAL_900",
|
|
726
|
+
css: "var(--color-teal-900)",
|
|
727
|
+
hex: "#134e4a",
|
|
728
|
+
rgb: "19, 78, 74",
|
|
729
|
+
twClass: "bg-teal-900",
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
name: "teal-950",
|
|
733
|
+
variable: "COLORS.TEAL_950",
|
|
734
|
+
css: "var(--color-teal-950)",
|
|
735
|
+
hex: "#042f2e",
|
|
736
|
+
rgb: "4, 47, 46",
|
|
737
|
+
twClass: "bg-teal-950",
|
|
738
|
+
},
|
|
739
|
+
// cyan
|
|
740
|
+
{
|
|
741
|
+
name: "cyan-50",
|
|
742
|
+
variable: "COLORS.CYAN_50",
|
|
743
|
+
css: "var(--color-cyan-50)",
|
|
744
|
+
hex: "#ecfeff",
|
|
745
|
+
rgb: "236, 254, 255",
|
|
746
|
+
twClass: "bg-cyan-50",
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
name: "cyan-100",
|
|
750
|
+
variable: "COLORS.CYAN_100",
|
|
751
|
+
css: "var(--color-cyan-100)",
|
|
752
|
+
hex: "#cffafe",
|
|
753
|
+
rgb: "207, 250, 254",
|
|
754
|
+
twClass: "bg-cyan-100",
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
name: "cyan-200",
|
|
758
|
+
variable: "COLORS.CYAN_200",
|
|
759
|
+
css: "var(--color-cyan-200)",
|
|
760
|
+
hex: "#a5f3fc",
|
|
761
|
+
rgb: "165, 243, 252",
|
|
762
|
+
twClass: "bg-cyan-200",
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
name: "cyan-300",
|
|
766
|
+
variable: "COLORS.CYAN_300",
|
|
767
|
+
css: "var(--color-cyan-300)",
|
|
768
|
+
hex: "#67e8f9",
|
|
769
|
+
rgb: "103, 232, 249",
|
|
770
|
+
twClass: "bg-cyan-300",
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
name: "cyan-400",
|
|
774
|
+
variable: "COLORS.CYAN_400",
|
|
775
|
+
css: "var(--color-cyan-400)",
|
|
776
|
+
hex: "#22d3ee",
|
|
777
|
+
rgb: "34, 211, 238",
|
|
778
|
+
twClass: "bg-cyan-400",
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
name: "cyan-500",
|
|
782
|
+
variable: "COLORS.CYAN_500",
|
|
783
|
+
css: "var(--color-cyan-500)",
|
|
784
|
+
hex: "#06b6d4",
|
|
785
|
+
rgb: "6, 182, 212",
|
|
786
|
+
twClass: "bg-cyan-500",
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
name: "cyan-600",
|
|
790
|
+
variable: "COLORS.CYAN_600",
|
|
791
|
+
css: "var(--color-cyan-600)",
|
|
792
|
+
hex: "#0891b2",
|
|
793
|
+
rgb: "8, 145, 178",
|
|
794
|
+
twClass: "bg-cyan-600",
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
name: "cyan-700",
|
|
798
|
+
variable: "COLORS.CYAN_700",
|
|
799
|
+
css: "var(--color-cyan-700)",
|
|
800
|
+
hex: "#0e7490",
|
|
801
|
+
rgb: "14, 116, 144",
|
|
802
|
+
twClass: "bg-cyan-700",
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
name: "cyan-800",
|
|
806
|
+
variable: "COLORS.CYAN_800",
|
|
807
|
+
css: "var(--color-cyan-800)",
|
|
808
|
+
hex: "#155e75",
|
|
809
|
+
rgb: "21, 94, 117",
|
|
810
|
+
twClass: "bg-cyan-800",
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
name: "cyan-900",
|
|
814
|
+
variable: "COLORS.CYAN_900",
|
|
815
|
+
css: "var(--color-cyan-900)",
|
|
816
|
+
hex: "#164e63",
|
|
817
|
+
rgb: "22, 78, 99",
|
|
818
|
+
twClass: "bg-cyan-900",
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
name: "cyan-950",
|
|
822
|
+
variable: "COLORS.CYAN_950",
|
|
823
|
+
css: "var(--color-cyan-950)",
|
|
824
|
+
hex: "#083344",
|
|
825
|
+
rgb: "8, 51, 68",
|
|
826
|
+
twClass: "bg-cyan-950",
|
|
827
|
+
},
|
|
828
|
+
// sky
|
|
829
|
+
{
|
|
830
|
+
name: "sky-50",
|
|
831
|
+
variable: "COLORS.SKY_50",
|
|
832
|
+
css: "var(--color-sky-50)",
|
|
833
|
+
hex: "#f0f9ff",
|
|
834
|
+
rgb: "240, 249, 255",
|
|
835
|
+
twClass: "bg-sky-50",
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
name: "sky-100",
|
|
839
|
+
variable: "COLORS.SKY_100",
|
|
840
|
+
css: "var(--color-sky-100)",
|
|
841
|
+
hex: "#e0f2fe",
|
|
842
|
+
rgb: "224, 242, 254",
|
|
843
|
+
twClass: "bg-sky-100",
|
|
844
|
+
},
|
|
845
|
+
{
|
|
846
|
+
name: "sky-200",
|
|
847
|
+
variable: "COLORS.SKY_200",
|
|
848
|
+
css: "var(--color-sky-200)",
|
|
849
|
+
hex: "#bae6fd",
|
|
850
|
+
rgb: "186, 230, 253",
|
|
851
|
+
twClass: "bg-sky-200",
|
|
852
|
+
},
|
|
853
|
+
{
|
|
854
|
+
name: "sky-300",
|
|
855
|
+
variable: "COLORS.SKY_300",
|
|
856
|
+
css: "var(--color-sky-300)",
|
|
857
|
+
hex: "#7dd3fc",
|
|
858
|
+
rgb: "125, 211, 252",
|
|
859
|
+
twClass: "bg-sky-300",
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
name: "sky-400",
|
|
863
|
+
variable: "COLORS.SKY_400",
|
|
864
|
+
css: "var(--color-sky-400)",
|
|
865
|
+
hex: "#38bdf8",
|
|
866
|
+
rgb: "56, 189, 248",
|
|
867
|
+
twClass: "bg-sky-400",
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
name: "sky-500",
|
|
871
|
+
variable: "COLORS.SKY_500",
|
|
872
|
+
css: "var(--color-sky-500)",
|
|
873
|
+
hex: "#0ea5e9",
|
|
874
|
+
rgb: "14, 165, 233",
|
|
875
|
+
twClass: "bg-sky-500",
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
name: "sky-600",
|
|
879
|
+
variable: "COLORS.SKY_600",
|
|
880
|
+
css: "var(--color-sky-600)",
|
|
881
|
+
hex: "#0284c7",
|
|
882
|
+
rgb: "2, 132, 199",
|
|
883
|
+
twClass: "bg-sky-600",
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
name: "sky-700",
|
|
887
|
+
variable: "COLORS.SKY_700",
|
|
888
|
+
css: "var(--color-sky-700)",
|
|
889
|
+
hex: "#0369a1",
|
|
890
|
+
rgb: "3, 105, 161",
|
|
891
|
+
twClass: "bg-sky-700",
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
name: "sky-800",
|
|
895
|
+
variable: "COLORS.SKY_800",
|
|
896
|
+
css: "var(--color-sky-800)",
|
|
897
|
+
hex: "#075985",
|
|
898
|
+
rgb: "7, 89, 133",
|
|
899
|
+
twClass: "bg-sky-800",
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
name: "sky-900",
|
|
903
|
+
variable: "COLORS.SKY_900",
|
|
904
|
+
css: "var(--color-sky-900)",
|
|
905
|
+
hex: "#0c4a6e",
|
|
906
|
+
rgb: "12, 74, 110",
|
|
907
|
+
twClass: "bg-sky-900",
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
name: "sky-950",
|
|
911
|
+
variable: "COLORS.SKY_950",
|
|
912
|
+
css: "var(--color-sky-950)",
|
|
913
|
+
hex: "#082f49",
|
|
914
|
+
rgb: "8, 47, 73",
|
|
915
|
+
twClass: "bg-sky-950",
|
|
916
|
+
},
|
|
917
|
+
// blue
|
|
918
|
+
{
|
|
919
|
+
name: "blue-50",
|
|
920
|
+
variable: "COLORS.BLUE_50",
|
|
921
|
+
css: "var(--color-blue-50)",
|
|
922
|
+
hex: "#eff6ff",
|
|
923
|
+
rgb: "239, 246, 255",
|
|
924
|
+
twClass: "bg-blue-50",
|
|
925
|
+
},
|
|
926
|
+
{
|
|
927
|
+
name: "blue-100",
|
|
928
|
+
variable: "COLORS.BLUE_100",
|
|
929
|
+
css: "var(--color-blue-100)",
|
|
930
|
+
hex: "#dbeafe",
|
|
931
|
+
rgb: "219, 234, 254",
|
|
932
|
+
twClass: "bg-blue-100",
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
name: "blue-200",
|
|
936
|
+
variable: "COLORS.BLUE_200",
|
|
937
|
+
css: "var(--color-blue-200)",
|
|
938
|
+
hex: "#bfdbfe",
|
|
939
|
+
rgb: "191, 219, 254",
|
|
940
|
+
twClass: "bg-blue-200",
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
name: "blue-300",
|
|
944
|
+
variable: "COLORS.BLUE_300",
|
|
945
|
+
css: "var(--color-blue-300)",
|
|
946
|
+
hex: "#93c5fd",
|
|
947
|
+
rgb: "147, 197, 253",
|
|
948
|
+
twClass: "bg-blue-300",
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
name: "blue-400",
|
|
952
|
+
variable: "COLORS.BLUE_400",
|
|
953
|
+
css: "var(--color-blue-400)",
|
|
954
|
+
hex: "#60a5fa",
|
|
955
|
+
rgb: "96, 165, 250",
|
|
956
|
+
twClass: "bg-blue-400",
|
|
957
|
+
},
|
|
958
|
+
{
|
|
959
|
+
name: "blue-500",
|
|
960
|
+
variable: "COLORS.BLUE_500",
|
|
961
|
+
css: "var(--color-blue-500)",
|
|
962
|
+
hex: "#3b82f6",
|
|
963
|
+
rgb: "59, 130, 246",
|
|
964
|
+
twClass: "bg-blue-500",
|
|
965
|
+
},
|
|
966
|
+
{
|
|
967
|
+
name: "blue-600",
|
|
968
|
+
variable: "COLORS.BLUE_600",
|
|
969
|
+
css: "var(--color-blue-600)",
|
|
970
|
+
hex: "#2563eb",
|
|
971
|
+
rgb: "37, 99, 235",
|
|
972
|
+
twClass: "bg-blue-600",
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
name: "blue-700",
|
|
976
|
+
variable: "COLORS.BLUE_700",
|
|
977
|
+
css: "var(--color-blue-700)",
|
|
978
|
+
hex: "#1d4ed8",
|
|
979
|
+
rgb: "29, 78, 216",
|
|
980
|
+
twClass: "bg-blue-700",
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
name: "blue-800",
|
|
984
|
+
variable: "COLORS.BLUE_800",
|
|
985
|
+
css: "var(--color-blue-800)",
|
|
986
|
+
hex: "#1e40af",
|
|
987
|
+
rgb: "30, 64, 175",
|
|
988
|
+
twClass: "bg-blue-800",
|
|
989
|
+
},
|
|
990
|
+
{
|
|
991
|
+
name: "blue-900",
|
|
992
|
+
variable: "COLORS.BLUE_900",
|
|
993
|
+
css: "var(--color-blue-900)",
|
|
994
|
+
hex: "#1e3a8a",
|
|
995
|
+
rgb: "30, 58, 138",
|
|
996
|
+
twClass: "bg-blue-900",
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
name: "blue-950",
|
|
1000
|
+
variable: "COLORS.BLUE_950",
|
|
1001
|
+
css: "var(--color-blue-950)",
|
|
1002
|
+
hex: "#172554",
|
|
1003
|
+
rgb: "23, 37, 84",
|
|
1004
|
+
twClass: "bg-blue-950",
|
|
1005
|
+
},
|
|
1006
|
+
// indigo
|
|
1007
|
+
{
|
|
1008
|
+
name: "indigo-50",
|
|
1009
|
+
variable: "COLORS.INDIGO_50",
|
|
1010
|
+
css: "var(--color-indigo-50)",
|
|
1011
|
+
hex: "#eef2ff",
|
|
1012
|
+
rgb: "238, 242, 255",
|
|
1013
|
+
twClass: "bg-indigo-50",
|
|
1014
|
+
},
|
|
1015
|
+
{
|
|
1016
|
+
name: "indigo-100",
|
|
1017
|
+
variable: "COLORS.INDIGO_100",
|
|
1018
|
+
css: "var(--color-indigo-100)",
|
|
1019
|
+
hex: "#e0e7ff",
|
|
1020
|
+
rgb: "224, 231, 255",
|
|
1021
|
+
twClass: "bg-indigo-100",
|
|
1022
|
+
},
|
|
1023
|
+
{
|
|
1024
|
+
name: "indigo-200",
|
|
1025
|
+
variable: "COLORS.INDIGO_200",
|
|
1026
|
+
css: "var(--color-indigo-200)",
|
|
1027
|
+
hex: "#c7d2fe",
|
|
1028
|
+
rgb: "199, 210, 254",
|
|
1029
|
+
twClass: "bg-indigo-200",
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
name: "indigo-300",
|
|
1033
|
+
variable: "COLORS.INDIGO_300",
|
|
1034
|
+
css: "var(--color-indigo-300)",
|
|
1035
|
+
hex: "#a5b4fc",
|
|
1036
|
+
rgb: "165, 180, 252",
|
|
1037
|
+
twClass: "bg-indigo-300",
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
name: "indigo-400",
|
|
1041
|
+
variable: "COLORS.INDIGO_400",
|
|
1042
|
+
css: "var(--color-indigo-400)",
|
|
1043
|
+
hex: "#818cf8",
|
|
1044
|
+
rgb: "129, 140, 248",
|
|
1045
|
+
twClass: "bg-indigo-400",
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
name: "indigo-500",
|
|
1049
|
+
variable: "COLORS.INDIGO_500",
|
|
1050
|
+
css: "var(--color-indigo-500)",
|
|
1051
|
+
hex: "#6366f1",
|
|
1052
|
+
rgb: "99, 102, 241",
|
|
1053
|
+
twClass: "bg-indigo-500",
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
name: "indigo-600",
|
|
1057
|
+
variable: "COLORS.INDIGO_600",
|
|
1058
|
+
css: "var(--color-indigo-600)",
|
|
1059
|
+
hex: "#4f46e5",
|
|
1060
|
+
rgb: "79, 70, 229",
|
|
1061
|
+
twClass: "bg-indigo-600",
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
name: "indigo-700",
|
|
1065
|
+
variable: "COLORS.INDIGO_700",
|
|
1066
|
+
css: "var(--color-indigo-700)",
|
|
1067
|
+
hex: "#4338ca",
|
|
1068
|
+
rgb: "67, 56, 202",
|
|
1069
|
+
twClass: "bg-indigo-700",
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
name: "indigo-800",
|
|
1073
|
+
variable: "COLORS.INDIGO_800",
|
|
1074
|
+
css: "var(--color-indigo-800)",
|
|
1075
|
+
hex: "#3730a3",
|
|
1076
|
+
rgb: "55, 48, 163",
|
|
1077
|
+
twClass: "bg-indigo-800",
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
name: "indigo-900",
|
|
1081
|
+
variable: "COLORS.INDIGO_900",
|
|
1082
|
+
css: "var(--color-indigo-900)",
|
|
1083
|
+
hex: "#312e81",
|
|
1084
|
+
rgb: "49, 46, 129",
|
|
1085
|
+
twClass: "bg-indigo-900",
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
name: "indigo-950",
|
|
1089
|
+
variable: "COLORS.INDIGO_950",
|
|
1090
|
+
css: "var(--color-indigo-950)",
|
|
1091
|
+
hex: "#1e1b4b",
|
|
1092
|
+
rgb: "30, 27, 75",
|
|
1093
|
+
twClass: "bg-indigo-950",
|
|
1094
|
+
},
|
|
1095
|
+
// violet
|
|
1096
|
+
{
|
|
1097
|
+
name: "violet-50",
|
|
1098
|
+
variable: "COLORS.VIOLET_50",
|
|
1099
|
+
css: "var(--color-violet-50)",
|
|
1100
|
+
hex: "#f5f3ff",
|
|
1101
|
+
rgb: "245, 243, 255",
|
|
1102
|
+
twClass: "bg-violet-50",
|
|
1103
|
+
},
|
|
1104
|
+
{
|
|
1105
|
+
name: "violet-100",
|
|
1106
|
+
variable: "COLORS.VIOLET_100",
|
|
1107
|
+
css: "var(--color-violet-100)",
|
|
1108
|
+
hex: "#ede9fe",
|
|
1109
|
+
rgb: "237, 233, 254",
|
|
1110
|
+
twClass: "bg-violet-100",
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
name: "violet-200",
|
|
1114
|
+
variable: "COLORS.VIOLET_200",
|
|
1115
|
+
css: "var(--color-violet-200)",
|
|
1116
|
+
hex: "#ddd6fe",
|
|
1117
|
+
rgb: "221, 214, 254",
|
|
1118
|
+
twClass: "bg-violet-200",
|
|
1119
|
+
},
|
|
1120
|
+
{
|
|
1121
|
+
name: "violet-300",
|
|
1122
|
+
variable: "COLORS.VIOLET_300",
|
|
1123
|
+
css: "var(--color-violet-300)",
|
|
1124
|
+
hex: "#c4b5fd",
|
|
1125
|
+
rgb: "196, 181, 253",
|
|
1126
|
+
twClass: "bg-violet-300",
|
|
1127
|
+
},
|
|
1128
|
+
{
|
|
1129
|
+
name: "violet-400",
|
|
1130
|
+
variable: "COLORS.VIOLET_400",
|
|
1131
|
+
css: "var(--color-violet-400)",
|
|
1132
|
+
hex: "#a78bfa",
|
|
1133
|
+
rgb: "167, 139, 250",
|
|
1134
|
+
twClass: "bg-violet-400",
|
|
1135
|
+
},
|
|
1136
|
+
{
|
|
1137
|
+
name: "violet-500",
|
|
1138
|
+
variable: "COLORS.VIOLET_500",
|
|
1139
|
+
css: "var(--color-violet-500)",
|
|
1140
|
+
hex: "#8b5cf6",
|
|
1141
|
+
rgb: "139, 92, 246",
|
|
1142
|
+
twClass: "bg-violet-500",
|
|
1143
|
+
},
|
|
1144
|
+
{
|
|
1145
|
+
name: "violet-600",
|
|
1146
|
+
variable: "COLORS.VIOLET_600",
|
|
1147
|
+
css: "var(--color-violet-600)",
|
|
1148
|
+
hex: "#7c3aed",
|
|
1149
|
+
rgb: "124, 58, 237",
|
|
1150
|
+
twClass: "bg-violet-600",
|
|
1151
|
+
},
|
|
1152
|
+
{
|
|
1153
|
+
name: "violet-700",
|
|
1154
|
+
variable: "COLORS.VIOLET_700",
|
|
1155
|
+
css: "var(--color-violet-700)",
|
|
1156
|
+
hex: "#6d28d9",
|
|
1157
|
+
rgb: "109, 40, 217",
|
|
1158
|
+
twClass: "bg-violet-700",
|
|
1159
|
+
},
|
|
1160
|
+
{
|
|
1161
|
+
name: "violet-800",
|
|
1162
|
+
variable: "COLORS.VIOLET_800",
|
|
1163
|
+
css: "var(--color-violet-800)",
|
|
1164
|
+
hex: "#5b21b6",
|
|
1165
|
+
rgb: "91, 33, 182",
|
|
1166
|
+
twClass: "bg-violet-800",
|
|
1167
|
+
},
|
|
1168
|
+
{
|
|
1169
|
+
name: "violet-900",
|
|
1170
|
+
variable: "COLORS.VIOLET_900",
|
|
1171
|
+
css: "var(--color-violet-900)",
|
|
1172
|
+
hex: "#4c1d95",
|
|
1173
|
+
rgb: "76, 29, 149",
|
|
1174
|
+
twClass: "bg-violet-900",
|
|
1175
|
+
},
|
|
1176
|
+
{
|
|
1177
|
+
name: "violet-950",
|
|
1178
|
+
variable: "COLORS.VIOLET_950",
|
|
1179
|
+
css: "var(--color-violet-950)",
|
|
1180
|
+
hex: "#2e1065",
|
|
1181
|
+
rgb: "46, 16, 101",
|
|
1182
|
+
twClass: "bg-violet-950",
|
|
1183
|
+
},
|
|
1184
|
+
// purple
|
|
1185
|
+
{
|
|
1186
|
+
name: "purple-50",
|
|
1187
|
+
variable: "COLORS.PURPLE_50",
|
|
1188
|
+
css: "var(--color-purple-50)",
|
|
1189
|
+
hex: "#faf5ff",
|
|
1190
|
+
rgb: "250, 245, 255",
|
|
1191
|
+
twClass: "bg-purple-50",
|
|
1192
|
+
},
|
|
1193
|
+
{
|
|
1194
|
+
name: "purple-100",
|
|
1195
|
+
variable: "COLORS.PURPLE_100",
|
|
1196
|
+
css: "var(--color-purple-100)",
|
|
1197
|
+
hex: "#f3e8ff",
|
|
1198
|
+
rgb: "243, 232, 255",
|
|
1199
|
+
twClass: "bg-purple-100",
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
name: "purple-200",
|
|
1203
|
+
variable: "COLORS.PURPLE_200",
|
|
1204
|
+
css: "var(--color-purple-200)",
|
|
1205
|
+
hex: "#e9d5ff",
|
|
1206
|
+
rgb: "233, 213, 255",
|
|
1207
|
+
twClass: "bg-purple-200",
|
|
1208
|
+
},
|
|
1209
|
+
{
|
|
1210
|
+
name: "purple-300",
|
|
1211
|
+
variable: "COLORS.PURPLE_300",
|
|
1212
|
+
css: "var(--color-purple-300)",
|
|
1213
|
+
hex: "#d8b4fe",
|
|
1214
|
+
rgb: "216, 180, 254",
|
|
1215
|
+
twClass: "bg-purple-300",
|
|
1216
|
+
},
|
|
1217
|
+
{
|
|
1218
|
+
name: "purple-400",
|
|
1219
|
+
variable: "COLORS.PURPLE_400",
|
|
1220
|
+
css: "var(--color-purple-400)",
|
|
1221
|
+
hex: "#c084fc",
|
|
1222
|
+
rgb: "192, 132, 252",
|
|
1223
|
+
twClass: "bg-purple-400",
|
|
1224
|
+
},
|
|
1225
|
+
{
|
|
1226
|
+
name: "purple-500",
|
|
1227
|
+
variable: "COLORS.PURPLE_500",
|
|
1228
|
+
css: "var(--color-purple-500)",
|
|
1229
|
+
hex: "#a855f7",
|
|
1230
|
+
rgb: "168, 85, 247",
|
|
1231
|
+
twClass: "bg-purple-500",
|
|
1232
|
+
},
|
|
1233
|
+
{
|
|
1234
|
+
name: "purple-600",
|
|
1235
|
+
variable: "COLORS.PURPLE_600",
|
|
1236
|
+
css: "var(--color-purple-600)",
|
|
1237
|
+
hex: "#9333ea",
|
|
1238
|
+
rgb: "147, 51, 234",
|
|
1239
|
+
twClass: "bg-purple-600",
|
|
1240
|
+
},
|
|
1241
|
+
{
|
|
1242
|
+
name: "purple-700",
|
|
1243
|
+
variable: "COLORS.PURPLE_700",
|
|
1244
|
+
css: "var(--color-purple-700)",
|
|
1245
|
+
hex: "#7e22ce",
|
|
1246
|
+
rgb: "126, 34, 206",
|
|
1247
|
+
twClass: "bg-purple-700",
|
|
1248
|
+
},
|
|
1249
|
+
{
|
|
1250
|
+
name: "purple-800",
|
|
1251
|
+
variable: "COLORS.PURPLE_800",
|
|
1252
|
+
css: "var(--color-purple-800)",
|
|
1253
|
+
hex: "#6d28d9",
|
|
1254
|
+
rgb: "109, 40, 217",
|
|
1255
|
+
twClass: "bg-purple-800",
|
|
1256
|
+
},
|
|
1257
|
+
{
|
|
1258
|
+
name: "purple-900",
|
|
1259
|
+
variable: "COLORS.PURPLE_900",
|
|
1260
|
+
css: "var(--color-purple-900)",
|
|
1261
|
+
hex: "#581c87",
|
|
1262
|
+
rgb: "88, 28, 135",
|
|
1263
|
+
twClass: "bg-purple-900",
|
|
1264
|
+
},
|
|
1265
|
+
{
|
|
1266
|
+
name: "purple-950",
|
|
1267
|
+
variable: "COLORS.PURPLE_950",
|
|
1268
|
+
css: "var(--color-purple-950)",
|
|
1269
|
+
hex: "#3b0764",
|
|
1270
|
+
rgb: "59, 7, 100",
|
|
1271
|
+
twClass: "bg-purple-950",
|
|
1272
|
+
},
|
|
1273
|
+
// fuchsia
|
|
1274
|
+
{
|
|
1275
|
+
name: "fuchsia-50",
|
|
1276
|
+
variable: "COLORS.FUCHSIA_50",
|
|
1277
|
+
css: "var(--color-fuchsia-50)",
|
|
1278
|
+
hex: "#fdf4ff",
|
|
1279
|
+
rgb: "253, 244, 255",
|
|
1280
|
+
twClass: "bg-fuchsia-50",
|
|
1281
|
+
},
|
|
1282
|
+
{
|
|
1283
|
+
name: "fuchsia-100",
|
|
1284
|
+
variable: "COLORS.FUCHSIA_100",
|
|
1285
|
+
css: "var(--color-fuchsia-100)",
|
|
1286
|
+
hex: "#fae8ff",
|
|
1287
|
+
rgb: "250, 232, 255",
|
|
1288
|
+
twClass: "bg-fuchsia-100",
|
|
1289
|
+
},
|
|
1290
|
+
{
|
|
1291
|
+
name: "fuchsia-200",
|
|
1292
|
+
variable: "COLORS.FUCHSIA_200",
|
|
1293
|
+
css: "var(--color-fuchsia-200)",
|
|
1294
|
+
hex: "#f5d0fe",
|
|
1295
|
+
rgb: "245, 208, 254",
|
|
1296
|
+
twClass: "bg-fuchsia-200",
|
|
1297
|
+
},
|
|
1298
|
+
{
|
|
1299
|
+
name: "fuchsia-300",
|
|
1300
|
+
variable: "COLORS.FUCHSIA_300",
|
|
1301
|
+
css: "var(--color-fuchsia-300)",
|
|
1302
|
+
hex: "#f0abfc",
|
|
1303
|
+
rgb: "240, 171, 252",
|
|
1304
|
+
twClass: "bg-fuchsia-300",
|
|
1305
|
+
},
|
|
1306
|
+
{
|
|
1307
|
+
name: "fuchsia-400",
|
|
1308
|
+
variable: "COLORS.FUCHSIA_400",
|
|
1309
|
+
css: "var(--color-fuchsia-400)",
|
|
1310
|
+
hex: "#e879f9",
|
|
1311
|
+
rgb: "232, 121, 249",
|
|
1312
|
+
twClass: "bg-fuchsia-400",
|
|
1313
|
+
},
|
|
1314
|
+
{
|
|
1315
|
+
name: "fuchsia-500",
|
|
1316
|
+
variable: "COLORS.FUCHSIA_500",
|
|
1317
|
+
css: "var(--color-fuchsia-500)",
|
|
1318
|
+
hex: "#d946ef",
|
|
1319
|
+
rgb: "217, 70, 239",
|
|
1320
|
+
twClass: "bg-fuchsia-500",
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
name: "fuchsia-600",
|
|
1324
|
+
variable: "COLORS.FUCHSIA_600",
|
|
1325
|
+
css: "var(--color-fuchsia-600)",
|
|
1326
|
+
hex: "#c026d3",
|
|
1327
|
+
rgb: "192, 38, 211",
|
|
1328
|
+
twClass: "bg-fuchsia-600",
|
|
1329
|
+
},
|
|
1330
|
+
{
|
|
1331
|
+
name: "fuchsia-700",
|
|
1332
|
+
variable: "COLORS.FUCHSIA_700",
|
|
1333
|
+
css: "var(--color-fuchsia-700)",
|
|
1334
|
+
hex: "#a21caf",
|
|
1335
|
+
rgb: "162, 28, 175",
|
|
1336
|
+
twClass: "bg-fuchsia-700",
|
|
1337
|
+
},
|
|
1338
|
+
{
|
|
1339
|
+
name: "fuchsia-800",
|
|
1340
|
+
variable: "COLORS.FUCHSIA_800",
|
|
1341
|
+
css: "var(--color-fuchsia-800)",
|
|
1342
|
+
hex: "#86198f",
|
|
1343
|
+
rgb: "134, 25, 143",
|
|
1344
|
+
twClass: "bg-fuchsia-800",
|
|
1345
|
+
},
|
|
1346
|
+
{
|
|
1347
|
+
name: "fuchsia-900",
|
|
1348
|
+
variable: "COLORS.FUCHSIA_900",
|
|
1349
|
+
css: "var(--color-fuchsia-900)",
|
|
1350
|
+
hex: "#701a75",
|
|
1351
|
+
rgb: "112, 26, 117",
|
|
1352
|
+
twClass: "bg-fuchsia-900",
|
|
1353
|
+
},
|
|
1354
|
+
{
|
|
1355
|
+
name: "fuchsia-950",
|
|
1356
|
+
variable: "COLORS.FUCHSIA_950",
|
|
1357
|
+
css: "var(--color-fuchsia-950)",
|
|
1358
|
+
hex: "#4a044e",
|
|
1359
|
+
rgb: "74, 4, 78",
|
|
1360
|
+
twClass: "bg-fuchsia-950",
|
|
1361
|
+
},
|
|
1362
|
+
// pink
|
|
1363
|
+
{
|
|
1364
|
+
name: "pink-50",
|
|
1365
|
+
variable: "COLORS.PINK_50",
|
|
1366
|
+
css: "var(--color-pink-50)",
|
|
1367
|
+
hex: "#fdf2f8",
|
|
1368
|
+
rgb: "253, 242, 248",
|
|
1369
|
+
twClass: "bg-pink-50",
|
|
1370
|
+
},
|
|
1371
|
+
{
|
|
1372
|
+
name: "pink-100",
|
|
1373
|
+
variable: "COLORS.PINK_100",
|
|
1374
|
+
css: "var(--color-pink-100)",
|
|
1375
|
+
hex: "#fce7f3",
|
|
1376
|
+
rgb: "252, 231, 243",
|
|
1377
|
+
twClass: "bg-pink-100",
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
name: "pink-200",
|
|
1381
|
+
variable: "COLORS.PINK_200",
|
|
1382
|
+
css: "var(--color-pink-200)",
|
|
1383
|
+
hex: "#fbcfe8",
|
|
1384
|
+
rgb: "251, 207, 232",
|
|
1385
|
+
twClass: "bg-pink-200",
|
|
1386
|
+
},
|
|
1387
|
+
{
|
|
1388
|
+
name: "pink-300",
|
|
1389
|
+
variable: "COLORS.PINK_300",
|
|
1390
|
+
css: "var(--color-pink-300)",
|
|
1391
|
+
hex: "#f9a8d4",
|
|
1392
|
+
rgb: "249, 168, 212",
|
|
1393
|
+
twClass: "bg-pink-300",
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
name: "pink-400",
|
|
1397
|
+
variable: "COLORS.PINK_400",
|
|
1398
|
+
css: "var(--color-pink-400)",
|
|
1399
|
+
hex: "#f472b6",
|
|
1400
|
+
rgb: "244, 114, 182",
|
|
1401
|
+
twClass: "bg-pink-400",
|
|
1402
|
+
},
|
|
1403
|
+
{
|
|
1404
|
+
name: "pink-500",
|
|
1405
|
+
variable: "COLORS.PINK_500",
|
|
1406
|
+
css: "var(--color-pink-500)",
|
|
1407
|
+
hex: "#ec4899",
|
|
1408
|
+
rgb: "236, 72, 153",
|
|
1409
|
+
twClass: "bg-pink-500",
|
|
1410
|
+
},
|
|
1411
|
+
{
|
|
1412
|
+
name: "pink-600",
|
|
1413
|
+
variable: "COLORS.PINK_600",
|
|
1414
|
+
css: "var(--color-pink-600)",
|
|
1415
|
+
hex: "#db2777",
|
|
1416
|
+
rgb: "219, 39, 119",
|
|
1417
|
+
twClass: "bg-pink-600",
|
|
1418
|
+
},
|
|
1419
|
+
{
|
|
1420
|
+
name: "pink-700",
|
|
1421
|
+
variable: "COLORS.PINK_700",
|
|
1422
|
+
css: "var(--color-pink-700)",
|
|
1423
|
+
hex: "#be185d",
|
|
1424
|
+
rgb: "190, 24, 93",
|
|
1425
|
+
twClass: "bg-pink-700",
|
|
1426
|
+
},
|
|
1427
|
+
{
|
|
1428
|
+
name: "pink-800",
|
|
1429
|
+
variable: "COLORS.PINK_800",
|
|
1430
|
+
css: "var(--color-pink-800)",
|
|
1431
|
+
hex: "#9d174d",
|
|
1432
|
+
rgb: "157, 23, 77",
|
|
1433
|
+
twClass: "bg-pink-800",
|
|
1434
|
+
},
|
|
1435
|
+
{
|
|
1436
|
+
name: "pink-900",
|
|
1437
|
+
variable: "COLORS.PINK_900",
|
|
1438
|
+
css: "var(--color-pink-900)",
|
|
1439
|
+
hex: "#831843",
|
|
1440
|
+
rgb: "131, 24, 67",
|
|
1441
|
+
twClass: "bg-pink-900",
|
|
1442
|
+
},
|
|
1443
|
+
{
|
|
1444
|
+
name: "pink-950",
|
|
1445
|
+
variable: "COLORS.PINK_950",
|
|
1446
|
+
css: "var(--color-pink-950)",
|
|
1447
|
+
hex: "#500724",
|
|
1448
|
+
rgb: "80, 7, 36",
|
|
1449
|
+
twClass: "bg-pink-950",
|
|
1450
|
+
},
|
|
1451
|
+
// rose
|
|
1452
|
+
{
|
|
1453
|
+
name: "rose-50",
|
|
1454
|
+
variable: "COLORS.ROSE_50",
|
|
1455
|
+
css: "var(--color-rose-50)",
|
|
1456
|
+
hex: "#fff1f2",
|
|
1457
|
+
rgb: "255, 241, 242",
|
|
1458
|
+
twClass: "bg-rose-50",
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
name: "rose-100",
|
|
1462
|
+
variable: "COLORS.ROSE_100",
|
|
1463
|
+
css: "var(--color-rose-100)",
|
|
1464
|
+
hex: "#ffe4e6",
|
|
1465
|
+
rgb: "255, 228, 230",
|
|
1466
|
+
twClass: "bg-rose-100",
|
|
1467
|
+
},
|
|
1468
|
+
{
|
|
1469
|
+
name: "rose-200",
|
|
1470
|
+
variable: "COLORS.ROSE_200",
|
|
1471
|
+
css: "var(--color-rose-200)",
|
|
1472
|
+
hex: "#fecdd3",
|
|
1473
|
+
rgb: "254, 205, 211",
|
|
1474
|
+
twClass: "bg-rose-200",
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
name: "rose-300",
|
|
1478
|
+
variable: "COLORS.ROSE_300",
|
|
1479
|
+
css: "var(--color-rose-300)",
|
|
1480
|
+
hex: "#fda4af",
|
|
1481
|
+
rgb: "253, 164, 175",
|
|
1482
|
+
twClass: "bg-rose-300",
|
|
1483
|
+
},
|
|
1484
|
+
{
|
|
1485
|
+
name: "rose-400",
|
|
1486
|
+
variable: "COLORS.ROSE_400",
|
|
1487
|
+
css: "var(--color-rose-400)",
|
|
1488
|
+
hex: "#fb7185",
|
|
1489
|
+
rgb: "251, 113, 133",
|
|
1490
|
+
twClass: "bg-rose-400",
|
|
1491
|
+
},
|
|
1492
|
+
{
|
|
1493
|
+
name: "rose-500",
|
|
1494
|
+
variable: "COLORS.ROSE_500",
|
|
1495
|
+
css: "var(--color-rose-500)",
|
|
1496
|
+
hex: "#f43f5e",
|
|
1497
|
+
rgb: "244, 63, 94",
|
|
1498
|
+
twClass: "bg-rose-500",
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
name: "rose-600",
|
|
1502
|
+
variable: "COLORS.ROSE_600",
|
|
1503
|
+
css: "var(--color-rose-600)",
|
|
1504
|
+
hex: "#e11d48",
|
|
1505
|
+
rgb: "225, 29, 72",
|
|
1506
|
+
twClass: "bg-rose-600",
|
|
1507
|
+
},
|
|
1508
|
+
{
|
|
1509
|
+
name: "rose-700",
|
|
1510
|
+
variable: "COLORS.ROSE_700",
|
|
1511
|
+
css: "var(--color-rose-700)",
|
|
1512
|
+
hex: "#be123c",
|
|
1513
|
+
rgb: "190, 18, 60",
|
|
1514
|
+
twClass: "bg-rose-700",
|
|
1515
|
+
},
|
|
1516
|
+
{
|
|
1517
|
+
name: "rose-800",
|
|
1518
|
+
variable: "COLORS.ROSE_800",
|
|
1519
|
+
css: "var(--color-rose-800)",
|
|
1520
|
+
hex: "#9f1239",
|
|
1521
|
+
rgb: "159, 18, 57",
|
|
1522
|
+
twClass: "bg-rose-800",
|
|
1523
|
+
},
|
|
1524
|
+
{
|
|
1525
|
+
name: "rose-900",
|
|
1526
|
+
variable: "COLORS.ROSE_900",
|
|
1527
|
+
css: "var(--color-rose-900)",
|
|
1528
|
+
hex: "#881337",
|
|
1529
|
+
rgb: "136, 19, 55",
|
|
1530
|
+
twClass: "bg-rose-900",
|
|
1531
|
+
},
|
|
1532
|
+
{
|
|
1533
|
+
name: "rose-950",
|
|
1534
|
+
variable: "COLORS.ROSE_950",
|
|
1535
|
+
css: "var(--color-rose-950)",
|
|
1536
|
+
hex: "#4c0519",
|
|
1537
|
+
rgb: "76, 5, 25",
|
|
1538
|
+
twClass: "bg-rose-950",
|
|
1539
|
+
},
|
|
1540
|
+
// slate
|
|
1541
|
+
{
|
|
1542
|
+
name: "slate-50",
|
|
1543
|
+
variable: "COLORS.SLATE_50",
|
|
1544
|
+
css: "var(--color-slate-50)",
|
|
1545
|
+
hex: "#f8fafc",
|
|
1546
|
+
rgb: "248, 250, 252",
|
|
1547
|
+
twClass: "bg-slate-50",
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
name: "slate-100",
|
|
1551
|
+
variable: "COLORS.SLATE_100",
|
|
1552
|
+
css: "var(--color-slate-100)",
|
|
1553
|
+
hex: "#f1f5f9",
|
|
1554
|
+
rgb: "241, 245, 249",
|
|
1555
|
+
twClass: "bg-slate-100",
|
|
1556
|
+
},
|
|
1557
|
+
{
|
|
1558
|
+
name: "slate-200",
|
|
1559
|
+
variable: "COLORS.SLATE_200",
|
|
1560
|
+
css: "var(--color-slate-200)",
|
|
1561
|
+
hex: "#e2e8f0",
|
|
1562
|
+
rgb: "226, 232, 240",
|
|
1563
|
+
twClass: "bg-slate-200",
|
|
1564
|
+
},
|
|
1565
|
+
{
|
|
1566
|
+
name: "slate-300",
|
|
1567
|
+
variable: "COLORS.SLATE_300",
|
|
1568
|
+
css: "var(--color-slate-300)",
|
|
1569
|
+
hex: "#cbd5e1",
|
|
1570
|
+
rgb: "203, 213, 225",
|
|
1571
|
+
twClass: "bg-slate-300",
|
|
1572
|
+
},
|
|
1573
|
+
{
|
|
1574
|
+
name: "slate-400",
|
|
1575
|
+
variable: "COLORS.SLATE_400",
|
|
1576
|
+
css: "var(--color-slate-400)",
|
|
1577
|
+
hex: "#94a3b8",
|
|
1578
|
+
rgb: "148, 163, 184",
|
|
1579
|
+
twClass: "bg-slate-400",
|
|
1580
|
+
},
|
|
1581
|
+
{
|
|
1582
|
+
name: "slate-500",
|
|
1583
|
+
variable: "COLORS.SLATE_500",
|
|
1584
|
+
css: "var(--color-slate-500)",
|
|
1585
|
+
hex: "#64748b",
|
|
1586
|
+
rgb: "100, 116, 139",
|
|
1587
|
+
twClass: "bg-slate-500",
|
|
1588
|
+
},
|
|
1589
|
+
{
|
|
1590
|
+
name: "slate-600",
|
|
1591
|
+
variable: "COLORS.SLATE_600",
|
|
1592
|
+
css: "var(--color-slate-600)",
|
|
1593
|
+
hex: "#475569",
|
|
1594
|
+
rgb: "71, 85, 105",
|
|
1595
|
+
twClass: "bg-slate-600",
|
|
1596
|
+
},
|
|
1597
|
+
{
|
|
1598
|
+
name: "slate-700",
|
|
1599
|
+
variable: "COLORS.SLATE_700",
|
|
1600
|
+
css: "var(--color-slate-700)",
|
|
1601
|
+
hex: "#334155",
|
|
1602
|
+
rgb: "51, 65, 85",
|
|
1603
|
+
twClass: "bg-slate-700",
|
|
1604
|
+
},
|
|
1605
|
+
{
|
|
1606
|
+
name: "slate-800",
|
|
1607
|
+
variable: "COLORS.SLATE_800",
|
|
1608
|
+
css: "var(--color-slate-800)",
|
|
1609
|
+
hex: "#1e293b",
|
|
1610
|
+
rgb: "30, 41, 59",
|
|
1611
|
+
twClass: "bg-slate-800",
|
|
1612
|
+
},
|
|
1613
|
+
{
|
|
1614
|
+
name: "slate-900",
|
|
1615
|
+
variable: "COLORS.SLATE_900",
|
|
1616
|
+
css: "var(--color-slate-900)",
|
|
1617
|
+
hex: "#0f172a",
|
|
1618
|
+
rgb: "15, 23, 42",
|
|
1619
|
+
twClass: "bg-slate-900",
|
|
1620
|
+
},
|
|
1621
|
+
{
|
|
1622
|
+
name: "slate-950",
|
|
1623
|
+
variable: "COLORS.SLATE_950",
|
|
1624
|
+
css: "var(--color-slate-950)",
|
|
1625
|
+
hex: "#020617",
|
|
1626
|
+
rgb: "2, 6, 23",
|
|
1627
|
+
twClass: "bg-slate-950",
|
|
1628
|
+
},
|
|
1629
|
+
// gray
|
|
1630
|
+
{
|
|
1631
|
+
name: "gray-50",
|
|
1632
|
+
variable: "COLORS.GRAY_50",
|
|
1633
|
+
css: "var(--color-gray-50)",
|
|
1634
|
+
hex: "#f9fafb",
|
|
1635
|
+
rgb: "249, 250, 251",
|
|
1636
|
+
twClass: "bg-gray-50",
|
|
1637
|
+
},
|
|
1638
|
+
{
|
|
1639
|
+
name: "gray-100",
|
|
1640
|
+
variable: "COLORS.GRAY_100",
|
|
1641
|
+
css: "var(--color-gray-100)",
|
|
1642
|
+
hex: "#f3f4f6",
|
|
1643
|
+
rgb: "243, 244, 246",
|
|
1644
|
+
twClass: "bg-gray-100",
|
|
1645
|
+
},
|
|
1646
|
+
{
|
|
1647
|
+
name: "gray-200",
|
|
1648
|
+
variable: "COLORS.GRAY_200",
|
|
1649
|
+
css: "var(--color-gray-200)",
|
|
1650
|
+
hex: "#e5e7eb",
|
|
1651
|
+
rgb: "229, 231, 235",
|
|
1652
|
+
twClass: "bg-gray-200",
|
|
1653
|
+
},
|
|
1654
|
+
{
|
|
1655
|
+
name: "gray-300",
|
|
1656
|
+
variable: "COLORS.GRAY_300",
|
|
1657
|
+
css: "var(--color-gray-300)",
|
|
1658
|
+
hex: "#d1d5db",
|
|
1659
|
+
rgb: "209, 213, 219",
|
|
1660
|
+
twClass: "bg-gray-300",
|
|
1661
|
+
},
|
|
1662
|
+
{
|
|
1663
|
+
name: "gray-400",
|
|
1664
|
+
variable: "COLORS.GRAY_400",
|
|
1665
|
+
css: "var(--color-gray-400)",
|
|
1666
|
+
hex: "#9ca3af",
|
|
1667
|
+
rgb: "156, 163, 175",
|
|
1668
|
+
twClass: "bg-gray-400",
|
|
1669
|
+
},
|
|
1670
|
+
{
|
|
1671
|
+
name: "gray-500",
|
|
1672
|
+
variable: "COLORS.GRAY_500",
|
|
1673
|
+
css: "var(--color-gray-500)",
|
|
1674
|
+
hex: "#6b7280",
|
|
1675
|
+
rgb: "107, 114, 128",
|
|
1676
|
+
twClass: "bg-gray-500",
|
|
1677
|
+
},
|
|
1678
|
+
{
|
|
1679
|
+
name: "gray-600",
|
|
1680
|
+
variable: "COLORS.GRAY_600",
|
|
1681
|
+
css: "var(--color-gray-600)",
|
|
1682
|
+
hex: "#4b5563",
|
|
1683
|
+
rgb: "75, 85, 99",
|
|
1684
|
+
twClass: "bg-gray-600",
|
|
1685
|
+
},
|
|
1686
|
+
{
|
|
1687
|
+
name: "gray-700",
|
|
1688
|
+
variable: "COLORS.GRAY_700",
|
|
1689
|
+
css: "var(--color-gray-700)",
|
|
1690
|
+
hex: "#374151",
|
|
1691
|
+
rgb: "55, 65, 81",
|
|
1692
|
+
twClass: "bg-gray-700",
|
|
1693
|
+
},
|
|
1694
|
+
{
|
|
1695
|
+
name: "gray-800",
|
|
1696
|
+
variable: "COLORS.GRAY_800",
|
|
1697
|
+
css: "var(--color-gray-800)",
|
|
1698
|
+
hex: "#1f2937",
|
|
1699
|
+
rgb: "31, 41, 55",
|
|
1700
|
+
twClass: "bg-gray-800",
|
|
1701
|
+
},
|
|
1702
|
+
{
|
|
1703
|
+
name: "gray-900",
|
|
1704
|
+
variable: "COLORS.GRAY_900",
|
|
1705
|
+
css: "var(--color-gray-900)",
|
|
1706
|
+
hex: "#111827",
|
|
1707
|
+
rgb: "17, 24, 39",
|
|
1708
|
+
twClass: "bg-gray-900",
|
|
1709
|
+
},
|
|
1710
|
+
{
|
|
1711
|
+
name: "gray-950",
|
|
1712
|
+
variable: "COLORS.GRAY_950",
|
|
1713
|
+
css: "var(--color-gray-950)",
|
|
1714
|
+
hex: "#030712",
|
|
1715
|
+
rgb: "3, 7, 18",
|
|
1716
|
+
twClass: "bg-gray-950",
|
|
1717
|
+
},
|
|
1718
|
+
// zinc
|
|
1719
|
+
{
|
|
1720
|
+
name: "zinc-50",
|
|
1721
|
+
variable: "COLORS.ZINC_50",
|
|
1722
|
+
css: "var(--color-zinc-50)",
|
|
1723
|
+
hex: "#fafafa",
|
|
1724
|
+
rgb: "250, 250, 250",
|
|
1725
|
+
twClass: "bg-zinc-50",
|
|
1726
|
+
},
|
|
1727
|
+
{
|
|
1728
|
+
name: "zinc-100",
|
|
1729
|
+
variable: "COLORS.ZINC_100",
|
|
1730
|
+
css: "var(--color-zinc-100)",
|
|
1731
|
+
hex: "#f4f4f5",
|
|
1732
|
+
rgb: "244, 244, 245",
|
|
1733
|
+
twClass: "bg-zinc-100",
|
|
1734
|
+
},
|
|
1735
|
+
{
|
|
1736
|
+
name: "zinc-200",
|
|
1737
|
+
variable: "COLORS.ZINC_200",
|
|
1738
|
+
css: "var(--color-zinc-200)",
|
|
1739
|
+
hex: "#e4e4e7",
|
|
1740
|
+
rgb: "228, 228, 231",
|
|
1741
|
+
twClass: "bg-zinc-200",
|
|
1742
|
+
},
|
|
1743
|
+
{
|
|
1744
|
+
name: "zinc-300",
|
|
1745
|
+
variable: "COLORS.ZINC_300",
|
|
1746
|
+
css: "var(--color-zinc-300)",
|
|
1747
|
+
hex: "#d4d4d8",
|
|
1748
|
+
rgb: "212, 212, 216",
|
|
1749
|
+
twClass: "bg-zinc-300",
|
|
1750
|
+
},
|
|
1751
|
+
{
|
|
1752
|
+
name: "zinc-400",
|
|
1753
|
+
variable: "COLORS.ZINC_400",
|
|
1754
|
+
css: "var(--color-zinc-400)",
|
|
1755
|
+
hex: "#a1a1aa",
|
|
1756
|
+
rgb: "161, 161, 170",
|
|
1757
|
+
twClass: "bg-zinc-400",
|
|
1758
|
+
},
|
|
1759
|
+
{
|
|
1760
|
+
name: "zinc-500",
|
|
1761
|
+
variable: "COLORS.ZINC_500",
|
|
1762
|
+
css: "var(--color-zinc-500)",
|
|
1763
|
+
hex: "#71717a",
|
|
1764
|
+
rgb: "113, 113, 122",
|
|
1765
|
+
twClass: "bg-zinc-500",
|
|
1766
|
+
},
|
|
1767
|
+
{
|
|
1768
|
+
name: "zinc-600",
|
|
1769
|
+
variable: "COLORS.ZINC_600",
|
|
1770
|
+
css: "var(--color-zinc-600)",
|
|
1771
|
+
hex: "#52525b",
|
|
1772
|
+
rgb: "82, 82, 91",
|
|
1773
|
+
twClass: "bg-zinc-600",
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
name: "zinc-700",
|
|
1777
|
+
variable: "COLORS.ZINC_700",
|
|
1778
|
+
css: "var(--color-zinc-700)",
|
|
1779
|
+
hex: "#3f3f46",
|
|
1780
|
+
rgb: "63, 63, 70",
|
|
1781
|
+
twClass: "bg-zinc-700",
|
|
1782
|
+
},
|
|
1783
|
+
{
|
|
1784
|
+
name: "zinc-800",
|
|
1785
|
+
variable: "COLORS.ZINC_800",
|
|
1786
|
+
css: "var(--color-zinc-800)",
|
|
1787
|
+
hex: "#27272a",
|
|
1788
|
+
rgb: "39, 39, 42",
|
|
1789
|
+
twClass: "bg-zinc-800",
|
|
1790
|
+
},
|
|
1791
|
+
{
|
|
1792
|
+
name: "zinc-900",
|
|
1793
|
+
variable: "COLORS.ZINC_900",
|
|
1794
|
+
css: "var(--color-zinc-900)",
|
|
1795
|
+
hex: "#18181b",
|
|
1796
|
+
rgb: "24, 24, 27",
|
|
1797
|
+
twClass: "bg-zinc-900",
|
|
1798
|
+
},
|
|
1799
|
+
{
|
|
1800
|
+
name: "zinc-950",
|
|
1801
|
+
variable: "COLORS.ZINC_950",
|
|
1802
|
+
css: "var(--color-zinc-950)",
|
|
1803
|
+
hex: "#09090b",
|
|
1804
|
+
rgb: "9, 9, 11",
|
|
1805
|
+
twClass: "bg-zinc-950",
|
|
1806
|
+
},
|
|
1807
|
+
// neutral
|
|
1808
|
+
{
|
|
1809
|
+
name: "neutral-50",
|
|
1810
|
+
variable: "COLORS.NEUTRAL_50",
|
|
1811
|
+
css: "var(--color-neutral-50)",
|
|
1812
|
+
hex: "#fafafa",
|
|
1813
|
+
rgb: "250, 250, 250",
|
|
1814
|
+
twClass: "bg-neutral-50",
|
|
1815
|
+
},
|
|
1816
|
+
{
|
|
1817
|
+
name: "neutral-100",
|
|
1818
|
+
variable: "COLORS.NEUTRAL_100",
|
|
1819
|
+
css: "var(--color-neutral-100)",
|
|
1820
|
+
hex: "#f5f5f5",
|
|
1821
|
+
rgb: "245, 245, 245",
|
|
1822
|
+
twClass: "bg-neutral-100",
|
|
1823
|
+
},
|
|
1824
|
+
{
|
|
1825
|
+
name: "neutral-200",
|
|
1826
|
+
variable: "COLORS.NEUTRAL_200",
|
|
1827
|
+
css: "var(--color-neutral-200)",
|
|
1828
|
+
hex: "#e5e5e5",
|
|
1829
|
+
rgb: "229, 229, 229",
|
|
1830
|
+
twClass: "bg-neutral-200",
|
|
1831
|
+
},
|
|
1832
|
+
{
|
|
1833
|
+
name: "neutral-300",
|
|
1834
|
+
variable: "COLORS.NEUTRAL_300",
|
|
1835
|
+
css: "var(--color-neutral-300)",
|
|
1836
|
+
hex: "#d4d4d4",
|
|
1837
|
+
rgb: "212, 212, 212",
|
|
1838
|
+
twClass: "bg-neutral-300",
|
|
1839
|
+
},
|
|
1840
|
+
{
|
|
1841
|
+
name: "neutral-400",
|
|
1842
|
+
variable: "COLORS.NEUTRAL_400",
|
|
1843
|
+
css: "var(--color-neutral-400)",
|
|
1844
|
+
hex: "#a3a3a3",
|
|
1845
|
+
rgb: "163, 163, 163",
|
|
1846
|
+
twClass: "bg-neutral-400",
|
|
1847
|
+
},
|
|
1848
|
+
{
|
|
1849
|
+
name: "neutral-500",
|
|
1850
|
+
variable: "COLORS.NEUTRAL_500",
|
|
1851
|
+
css: "var(--color-neutral-500)",
|
|
1852
|
+
hex: "#737373",
|
|
1853
|
+
rgb: "115, 115, 115",
|
|
1854
|
+
twClass: "bg-neutral-500",
|
|
1855
|
+
},
|
|
1856
|
+
{
|
|
1857
|
+
name: "neutral-600",
|
|
1858
|
+
variable: "COLORS.NEUTRAL_600",
|
|
1859
|
+
css: "var(--color-neutral-600)",
|
|
1860
|
+
hex: "#525252",
|
|
1861
|
+
rgb: "82, 82, 82",
|
|
1862
|
+
twClass: "bg-neutral-600",
|
|
1863
|
+
},
|
|
1864
|
+
{
|
|
1865
|
+
name: "neutral-700",
|
|
1866
|
+
variable: "COLORS.NEUTRAL_700",
|
|
1867
|
+
css: "var(--color-neutral-700)",
|
|
1868
|
+
hex: "#404040",
|
|
1869
|
+
rgb: "64, 64, 64",
|
|
1870
|
+
twClass: "bg-neutral-700",
|
|
1871
|
+
},
|
|
1872
|
+
{
|
|
1873
|
+
name: "neutral-800",
|
|
1874
|
+
variable: "COLORS.NEUTRAL_800",
|
|
1875
|
+
css: "var(--color-neutral-800)",
|
|
1876
|
+
hex: "#262626",
|
|
1877
|
+
rgb: "38, 38, 38",
|
|
1878
|
+
twClass: "bg-neutral-800",
|
|
1879
|
+
},
|
|
1880
|
+
{
|
|
1881
|
+
name: "neutral-900",
|
|
1882
|
+
variable: "COLORS.NEUTRAL_900",
|
|
1883
|
+
css: "var(--color-neutral-900)",
|
|
1884
|
+
hex: "#171717",
|
|
1885
|
+
rgb: "23, 23, 23",
|
|
1886
|
+
twClass: "bg-neutral-900",
|
|
1887
|
+
},
|
|
1888
|
+
{
|
|
1889
|
+
name: "neutral-950",
|
|
1890
|
+
variable: "COLORS.NEUTRAL_950",
|
|
1891
|
+
css: "var(--color-neutral-950)",
|
|
1892
|
+
hex: "#0a0a0a",
|
|
1893
|
+
rgb: "10, 10, 10",
|
|
1894
|
+
twClass: "bg-neutral-950",
|
|
1895
|
+
},
|
|
1896
|
+
// stone
|
|
1897
|
+
{
|
|
1898
|
+
name: "stone-50",
|
|
1899
|
+
variable: "COLORS.STONE_50",
|
|
1900
|
+
css: "var(--color-stone-50)",
|
|
1901
|
+
hex: "#fafaf9",
|
|
1902
|
+
rgb: "250, 250, 249",
|
|
1903
|
+
twClass: "bg-stone-50",
|
|
1904
|
+
},
|
|
1905
|
+
{
|
|
1906
|
+
name: "stone-100",
|
|
1907
|
+
variable: "COLORS.STONE_100",
|
|
1908
|
+
css: "var(--color-stone-100)",
|
|
1909
|
+
hex: "#f5f5f4",
|
|
1910
|
+
rgb: "245, 245, 244",
|
|
1911
|
+
twClass: "bg-stone-100",
|
|
1912
|
+
},
|
|
1913
|
+
{
|
|
1914
|
+
name: "stone-200",
|
|
1915
|
+
variable: "COLORS.STONE_200",
|
|
1916
|
+
css: "var(--color-stone-200)",
|
|
1917
|
+
hex: "#e7e5e4",
|
|
1918
|
+
rgb: "231, 229, 228",
|
|
1919
|
+
twClass: "bg-stone-200",
|
|
1920
|
+
},
|
|
1921
|
+
{
|
|
1922
|
+
name: "stone-300",
|
|
1923
|
+
variable: "COLORS.STONE_300",
|
|
1924
|
+
css: "var(--color-stone-300)",
|
|
1925
|
+
hex: "#d6d3d1",
|
|
1926
|
+
rgb: "214, 211, 209",
|
|
1927
|
+
twClass: "bg-stone-300",
|
|
1928
|
+
},
|
|
1929
|
+
{
|
|
1930
|
+
name: "stone-400",
|
|
1931
|
+
variable: "COLORS.STONE_400",
|
|
1932
|
+
css: "var(--color-stone-400)",
|
|
1933
|
+
hex: "#a8a29e",
|
|
1934
|
+
rgb: "168, 162, 158",
|
|
1935
|
+
twClass: "bg-stone-400",
|
|
1936
|
+
},
|
|
1937
|
+
{
|
|
1938
|
+
name: "stone-500",
|
|
1939
|
+
variable: "COLORS.STONE_500",
|
|
1940
|
+
css: "var(--color-stone-500)",
|
|
1941
|
+
hex: "#78716c",
|
|
1942
|
+
rgb: "120, 113, 108",
|
|
1943
|
+
twClass: "bg-stone-500",
|
|
1944
|
+
},
|
|
1945
|
+
{
|
|
1946
|
+
name: "stone-600",
|
|
1947
|
+
variable: "COLORS.STONE_600",
|
|
1948
|
+
css: "var(--color-stone-600)",
|
|
1949
|
+
hex: "#57534e",
|
|
1950
|
+
rgb: "87, 83, 78",
|
|
1951
|
+
twClass: "bg-stone-600",
|
|
1952
|
+
},
|
|
1953
|
+
{
|
|
1954
|
+
name: "stone-700",
|
|
1955
|
+
variable: "COLORS.STONE_700",
|
|
1956
|
+
css: "var(--color-stone-700)",
|
|
1957
|
+
hex: "#44403c",
|
|
1958
|
+
rgb: "68, 64, 60",
|
|
1959
|
+
twClass: "bg-stone-700",
|
|
1960
|
+
},
|
|
1961
|
+
{
|
|
1962
|
+
name: "stone-800",
|
|
1963
|
+
variable: "COLORS.STONE_800",
|
|
1964
|
+
css: "var(--color-stone-800)",
|
|
1965
|
+
hex: "#292524",
|
|
1966
|
+
rgb: "41, 37, 36",
|
|
1967
|
+
twClass: "bg-stone-800",
|
|
1968
|
+
},
|
|
1969
|
+
{
|
|
1970
|
+
name: "stone-900",
|
|
1971
|
+
variable: "COLORS.STONE_900",
|
|
1972
|
+
css: "var(--color-stone-900)",
|
|
1973
|
+
hex: "#1c1917",
|
|
1974
|
+
rgb: "28, 25, 23",
|
|
1975
|
+
twClass: "bg-stone-900",
|
|
1976
|
+
},
|
|
1977
|
+
{
|
|
1978
|
+
name: "stone-950",
|
|
1979
|
+
variable: "COLORS.STONE_950",
|
|
1980
|
+
css: "var(--color-stone-950)",
|
|
1981
|
+
hex: "#0c0a09",
|
|
1982
|
+
rgb: "12, 10, 9",
|
|
1983
|
+
twClass: "bg-stone-950",
|
|
1984
|
+
},
|
|
1985
|
+
]
|