dst-rg 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitlab-ci.yml +43 -0
- package/.storybook/main.ts +15 -0
- package/.storybook/preview.ts +15 -0
- package/README.md +254 -0
- package/components.json +21 -0
- package/dist/Avatar.png +0 -0
- package/dist/assets/index-CCq7hmG3.js +186 -0
- package/dist/assets/index-Mg-hjQGu.css +1 -0
- package/dist/index.html +15 -0
- package/dist/test.png +0 -0
- package/dist/vite.svg +1 -0
- package/eslint.config.js +29 -0
- package/index.html +14 -0
- package/package.json +102 -0
- package/postcss.config.mjs +11 -0
- package/rollup.config.mjs +55 -0
- package/src/assets/react.svg +1 -0
- package/src/assets/style/animation.css +27 -0
- package/src/assets/style/box-shadow.css +25 -0
- package/src/assets/style/colors.css +402 -0
- package/src/assets/style/dark-theme.css +288 -0
- package/src/assets/style/font-size.css +14 -0
- package/src/assets/style/gradient.css +3 -0
- package/src/assets/style/index.css +12 -0
- package/src/assets/style/light-theme.css +148 -0
- package/src/assets/style/line-height.css +13 -0
- package/src/assets/style/max-width.css +5 -0
- package/src/assets/style/radius.css +13 -0
- package/src/assets/style/utility-colors.css +166 -0
- package/src/components/Accordion/_.stories.tsx +75 -0
- package/src/components/Accordion/_.test.tsx +77 -0
- package/src/components/Accordion/index.tsx +47 -0
- package/src/components/Accordion/type.ts +24 -0
- package/src/components/Avatar/_.stories.tsx +179 -0
- package/src/components/Avatar/_.style.ts +40 -0
- package/src/components/Avatar/_.test.tsx +150 -0
- package/src/components/Avatar/_.types.ts +66 -0
- package/src/components/Avatar/index.tsx +63 -0
- package/src/components/Badge/_.stories.tsx +75 -0
- package/src/components/Badge/_.style.ts +53 -0
- package/src/components/Badge/_.test.tsx +27 -0
- package/src/components/Badge/_.types.ts +11 -0
- package/src/components/Badge/index.tsx +42 -0
- package/src/components/Breadcrumbs/_.stories.tsx +95 -0
- package/src/components/Breadcrumbs/_.test.tsx +29 -0
- package/src/components/Breadcrumbs/_.type.ts +15 -0
- package/src/components/Breadcrumbs/index.tsx +103 -0
- package/src/components/Button/_.stories.tsx +85 -0
- package/src/components/Button/_.style.ts +56 -0
- package/src/components/Button/_.test.tsx +103 -0
- package/src/components/Button/_.types.ts +14 -0
- package/src/components/Button/index.tsx +70 -0
- package/src/components/Checkbox/_.stories.tsx +96 -0
- package/src/components/Checkbox/_.style.ts +24 -0
- package/src/components/Checkbox/_.test.tsx +85 -0
- package/src/components/Checkbox/_.types.ts +23 -0
- package/src/components/Checkbox/index.tsx +93 -0
- package/src/components/CheckboxGroup/PaymentCard/_.stories.tsx +104 -0
- package/src/components/CheckboxGroup/PaymentCard/_.style.ts +28 -0
- package/src/components/CheckboxGroup/PaymentCard/_.test.tsx +58 -0
- package/src/components/CheckboxGroup/PaymentCard/_.types.ts +28 -0
- package/src/components/CheckboxGroup/PaymentCard/index.tsx +71 -0
- package/src/components/CheckboxGroup/PlanCard/_.stories.tsx +165 -0
- package/src/components/CheckboxGroup/PlanCard/_.style.ts +32 -0
- package/src/components/CheckboxGroup/PlanCard/_.test.tsx +54 -0
- package/src/components/CheckboxGroup/PlanCard/_.types.ts +35 -0
- package/src/components/CheckboxGroup/PlanCard/index.tsx +53 -0
- package/src/components/CheckboxGroup/UserCard/_.stories.tsx +89 -0
- package/src/components/CheckboxGroup/UserCard/_.style.ts +42 -0
- package/src/components/CheckboxGroup/UserCard/_.test.tsx +66 -0
- package/src/components/CheckboxGroup/UserCard/_.types.ts +26 -0
- package/src/components/CheckboxGroup/UserCard/index.tsx +75 -0
- package/src/components/Dropdown/_.stories.tsx +180 -0
- package/src/components/Dropdown/_.style.ts +108 -0
- package/src/components/Dropdown/_.test.tsx +334 -0
- package/src/components/Dropdown/_.types.ts +12 -0
- package/src/components/Dropdown/index.tsx +130 -0
- package/src/components/FileUpload/_.stories.tsx +74 -0
- package/src/components/FileUpload/_.style.ts +0 -0
- package/src/components/FileUpload/_.test.tsx +222 -0
- package/src/components/FileUpload/_.types.ts +53 -0
- package/src/components/FileUpload/index.tsx +44 -0
- package/src/components/ImageMagnify/_.stories.tsx +226 -0
- package/src/components/ImageMagnify/_.style.ts +109 -0
- package/src/components/ImageMagnify/_.types.ts +44 -0
- package/src/components/ImageMagnify/index.tsx +204 -0
- package/src/components/Input/_.stories.tsx +177 -0
- package/src/components/Input/_.style.ts +79 -0
- package/src/components/Input/_.test.tsx +146 -0
- package/src/components/Input/_.types.ts +66 -0
- package/src/components/Input/index.tsx +231 -0
- package/src/components/InputTags/_.stories.tsx +51 -0
- package/src/components/InputTags/_.style.ts +28 -0
- package/src/components/InputTags/_.test.tsx +123 -0
- package/src/components/InputTags/_.types.ts +26 -0
- package/src/components/InputTags/index.tsx +140 -0
- package/src/components/Message/_.stories.tsx +79 -0
- package/src/components/Message/_.style.ts +87 -0
- package/src/components/Message/_.test.tsx +73 -0
- package/src/components/Message/_.types.ts +13 -0
- package/src/components/Message/index.tsx +57 -0
- package/src/components/Metric/_.stories.tsx +142 -0
- package/src/components/Metric/_.style.ts +14 -0
- package/src/components/Metric/_.test.tsx +166 -0
- package/src/components/Metric/_.types.ts +18 -0
- package/src/components/Metric/index.tsx +100 -0
- package/src/components/Modal/_.stories.tsx +93 -0
- package/src/components/Modal/_.style.ts +31 -0
- package/src/components/Modal/_.test.tsx +90 -0
- package/src/components/Modal/_.types.ts +14 -0
- package/src/components/Modal/index.tsx +82 -0
- package/src/components/Pagination/_.stories.tsx +118 -0
- package/src/components/Pagination/_.test.tsx +51 -0
- package/src/components/Pagination/index.tsx +256 -0
- package/src/components/Pagination/type.ts +48 -0
- package/src/components/PriceSlider/_.stories.tsx +107 -0
- package/src/components/PriceSlider/_.test.tsx +63 -0
- package/src/components/PriceSlider/_.type.tsx +19 -0
- package/src/components/PriceSlider/index.tsx +86 -0
- package/src/components/Progress/_.stories.tsx +93 -0
- package/src/components/Progress/_.style.ts +15 -0
- package/src/components/Progress/_.test.tsx +34 -0
- package/src/components/Progress/_.types.ts +17 -0
- package/src/components/Progress/index.tsx +173 -0
- package/src/components/Radio/_.stories.tsx +391 -0
- package/src/components/Radio/_.style.ts +33 -0
- package/src/components/Radio/_.test.tsx +77 -0
- package/src/components/Radio/_.types.ts +14 -0
- package/src/components/Radio/index.tsx +59 -0
- package/src/components/Select/_.stories.tsx +308 -0
- package/src/components/Select/_.style.ts +5 -0
- package/src/components/Select/_.types.ts +24 -0
- package/src/components/Select/index.tsx +172 -0
- package/src/components/Switch/_.stories.tsx +61 -0
- package/src/components/Switch/_.test.tsx +69 -0
- package/src/components/Switch/_.type.ts +12 -0
- package/src/components/Switch/index.tsx +70 -0
- package/src/components/Tabs/_.stories.tsx +508 -0
- package/src/components/Tabs/_.style.ts +63 -0
- package/src/components/Tabs/_.test.tsx +174 -0
- package/src/components/Tabs/_.type.ts +19 -0
- package/src/components/Tabs/index.tsx +35 -0
- package/src/components/Tag/_.stories.tsx +78 -0
- package/src/components/Tag/_.style.ts +71 -0
- package/src/components/Tag/_.test.tsx +44 -0
- package/src/components/Tag/_.types.ts +27 -0
- package/src/components/Tag/index.tsx +46 -0
- package/src/components/TextArea/_.stories.tsx +62 -0
- package/src/components/TextArea/_.style.ts +11 -0
- package/src/components/TextArea/_.test.tsx +43 -0
- package/src/components/TextArea/_.types.ts +29 -0
- package/src/components/TextArea/index.tsx +83 -0
- package/src/components/Toast/_.style.tsx +27 -0
- package/src/components/Toast/_.type.ts +30 -0
- package/src/components/Toast/_.utils.ts +23 -0
- package/src/components/Toast/container.tsx +171 -0
- package/src/components/Toast/index.tsx +29 -0
- package/src/components/Tooltip/_.stories.tsx +106 -0
- package/src/components/Tooltip/_.style.ts +27 -0
- package/src/components/Tooltip/_.test.tsx +54 -0
- package/src/components/Tooltip/_.types.ts +31 -0
- package/src/components/Tooltip/index.tsx +80 -0
- package/src/components/developers/AmirHossein.tsx +149 -0
- package/src/components/developers/Fardin.tsx +130 -0
- package/src/components/developers/Maryam.tsx +260 -0
- package/src/components/developers/Milad.tsx +431 -0
- package/src/components/developers/Rasoul.tsx +198 -0
- package/src/components/index.ts +28 -0
- package/src/components/ui/accordion.tsx +162 -0
- package/src/components/ui/avatars-component/avatar-description.tsx +30 -0
- package/src/components/ui/avatars-component/avatar-groups.tsx +68 -0
- package/src/components/ui/avatars-component/avatar-single.tsx +50 -0
- package/src/components/ui/card.tsx +92 -0
- package/src/components/ui/checkbox-group/plan-card/basic/_.test.tsx +66 -0
- package/src/components/ui/checkbox-group/plan-card/basic/index.tsx +70 -0
- package/src/components/ui/checkbox-group/plan-card/with-header/_.test.tsx +110 -0
- package/src/components/ui/checkbox-group/plan-card/with-header/header.test.tsx +96 -0
- package/src/components/ui/checkbox-group/plan-card/with-header/header.tsx +74 -0
- package/src/components/ui/checkbox-group/plan-card/with-header/index.tsx +65 -0
- package/src/components/ui/file-content/File-content.tsx +43 -0
- package/src/components/ui/file-uploader-components/file-uploader-box.tsx +76 -0
- package/src/components/ui/file-uploader-components/file-uploader-item.tsx +64 -0
- package/src/components/ui/icon-wrapper/_.test.tsx +60 -0
- package/src/components/ui/icon-wrapper/index.tsx +19 -0
- package/src/components/ui/input-component/input-label.tsx +11 -0
- package/src/components/ui/number.tsx +18 -0
- package/src/components/ui/pagination/card-minimal-center-align.tsx +96 -0
- package/src/components/ui/pagination/card-minimal-right-aligne.tsx +90 -0
- package/src/components/ui/pagination/default-pagination.tsx +128 -0
- package/src/components/ui/pagination/get-pagination-item.tsx +36 -0
- package/src/components/ui/pagination/pagination-card-button-group-aligned.tsx +94 -0
- package/src/components/ui/pagination/pagination-card-minimal-left-aligned.tsx +90 -0
- package/src/components/ui/pagination/pagination-content.tsx +15 -0
- package/src/components/ui/pagination/pagination-item.tsx +11 -0
- package/src/components/ui/pagination/pagination-link.tsx +42 -0
- package/src/components/ui/tab-components/tabs-content.tsx +15 -0
- package/src/components/ui/tab-components/tabs-list.tsx +27 -0
- package/src/components/ui/tab-components/tabs-trigger.tsx +25 -0
- package/src/components/ui/text-content-wrapper.tsx +36 -0
- package/src/hooks/useClickOutside.ts +23 -0
- package/src/icons/general/ArrowLeft.tsx +31 -0
- package/src/icons/general/ArrowRight.tsx +31 -0
- package/src/icons/general/activity-heart.tsx +31 -0
- package/src/icons/general/activity.tsx +31 -0
- package/src/icons/general/anchor.tsx +31 -0
- package/src/icons/general/archive.tsx +31 -0
- package/src/icons/general/arrow-left.tsx +25 -0
- package/src/icons/general/arrow-right.tsx +25 -0
- package/src/icons/general/asterisk-01.tsx +31 -0
- package/src/icons/general/asterisk-02.tsx +31 -0
- package/src/icons/general/at-sign.tsx +31 -0
- package/src/icons/general/attention-mark.tsx +43 -0
- package/src/icons/general/bookmark-add.tsx +31 -0
- package/src/icons/general/bookmark.tsx +31 -0
- package/src/icons/general/chevron-left.tsx +25 -0
- package/src/icons/general/chevron-right.tsx +25 -0
- package/src/icons/general/circle-minues.tsx +25 -0
- package/src/icons/general/circle-plus.tsx +25 -0
- package/src/icons/general/circle-question-mark.tsx +32 -0
- package/src/icons/general/circle.tsx +32 -0
- package/src/icons/general/copy.tsx +43 -0
- package/src/icons/general/email.tsx +32 -0
- package/src/icons/general/home.tsx +25 -0
- package/src/icons/general/layer.tsx +36 -0
- package/src/icons/general/leading.tsx +19 -0
- package/src/icons/general/master-card.tsx +37 -0
- package/src/icons/general/minus.tsx +36 -0
- package/src/icons/general/plus.tsx +19 -0
- package/src/icons/general/remove.tsx +32 -0
- package/src/icons/general/slash-divider.tsx +26 -0
- package/src/icons/general/tick-box.tsx +37 -0
- package/src/icons/general/trailing.tsx +19 -0
- package/src/icons/general/unkown-format.tsx +25 -0
- package/src/icons/general/visa-card.tsx +38 -0
- package/src/icons/general/x-close.tsx +35 -0
- package/src/icons/icons.type.ts +7 -0
- package/src/index.css +21 -0
- package/src/index.ts +3 -0
- package/src/lib/utils.ts +6 -0
- package/src/lib/zIndexUtils.ts +2 -0
- package/src/main.tsx +50 -0
- package/src/vite-env.d.ts +1 -0
- package/tests/setup.ts +8 -0
- package/tsconfig.app.json +31 -0
- package/tsconfig.json +7 -0
- package/tsconfig.node.json +24 -0
- package/tsconfig.rollup.json +12 -0
- package/vite.config.ts +20 -0
- package/vitest.config.ts +47 -0
|
@@ -0,0 +1,402 @@
|
|
|
1
|
+
@theme inline {
|
|
2
|
+
/* base */
|
|
3
|
+
--color-base-white: #fff;
|
|
4
|
+
--color-base-black: #000;
|
|
5
|
+
/* gray light mode */
|
|
6
|
+
--color-gray-light-25: #fcfcfd;
|
|
7
|
+
--color-gray-light-50: #f9fafb;
|
|
8
|
+
--color-gray-light-100: #f2f4f7;
|
|
9
|
+
--color-gray-light-200: #e4e7ec;
|
|
10
|
+
--color-gray-light-300: #d0d5dd;
|
|
11
|
+
--color-gray-light-400: #98a2b3;
|
|
12
|
+
--color-gray-light-500: #667085;
|
|
13
|
+
--color-gray-light-600: #475467;
|
|
14
|
+
--color-gray-light-700: #344054;
|
|
15
|
+
--color-gray-light-800: #182230;
|
|
16
|
+
--color-gray-light-900: #101828;
|
|
17
|
+
--color-gray-light-950: #0c111d;
|
|
18
|
+
/* gray dark mode */
|
|
19
|
+
--color-gray-dark-25: #fafafa;
|
|
20
|
+
--color-gray-dark-50: #f5f5f6;
|
|
21
|
+
--color-gray-dark-100: #f0f1f1;
|
|
22
|
+
--color-gray-dark-200: #ececed;
|
|
23
|
+
--color-gray-dark-300: #cecfd2;
|
|
24
|
+
--color-gray-dark-400: #94969c;
|
|
25
|
+
--color-gray-dark-500: #85888e;
|
|
26
|
+
--color-gray-dark-600: #61646c;
|
|
27
|
+
--color-gray-dark-700: #333741;
|
|
28
|
+
--color-gray-dark-800: #1f242f;
|
|
29
|
+
--color-gray-dark-900: #161b26;
|
|
30
|
+
--color-gray-dark-950: #0c111d;
|
|
31
|
+
/* gray blue */
|
|
32
|
+
--color-gray-blue-25: #fcfcfd;
|
|
33
|
+
--color-gray-blue-50: #f8f9fc;
|
|
34
|
+
--color-gray-blue-100: #eaecf5;
|
|
35
|
+
--color-gray-blue-200: #d5d9eb;
|
|
36
|
+
--color-gray-blue-300: #b3b8db;
|
|
37
|
+
--color-gray-blue-400: #717bbc;
|
|
38
|
+
--color-gray-blue-500: #4e5ba6;
|
|
39
|
+
--color-gray-blue-600: #3e4784;
|
|
40
|
+
--color-gray-blue-700: #363f72;
|
|
41
|
+
--color-gray-blue-800: #293056;
|
|
42
|
+
--color-gray-blue-900: #101323;
|
|
43
|
+
--color-gray-blue-950: #0d0f1c;
|
|
44
|
+
/* gray cool */
|
|
45
|
+
--color-gray-cool-25: #fcfcfd;
|
|
46
|
+
--color-gray-cool-50: #f9f9fb;
|
|
47
|
+
--color-gray-cool-100: #eff1f5;
|
|
48
|
+
--color-gray-cool-200: #dcdfea;
|
|
49
|
+
--color-gray-cool-300: #b9c0d4;
|
|
50
|
+
--color-gray-cool-400: #7d89b0;
|
|
51
|
+
--color-gray-cool-500: #5d6b98;
|
|
52
|
+
--color-gray-cool-600: #4a5578;
|
|
53
|
+
--color-gray-cool-700: #404968;
|
|
54
|
+
--color-gray-cool-800: #30374f;
|
|
55
|
+
--color-gray-cool-900: #111322;
|
|
56
|
+
--color-gray-cool-950: #0e101b;
|
|
57
|
+
/* gray modern */
|
|
58
|
+
--color-gray-modern-25: #fcfcfd;
|
|
59
|
+
--color-gray-modern-50: #f8fafc;
|
|
60
|
+
--color-gray-modern-100: #eef2f6;
|
|
61
|
+
--color-gray-modern-200: #e3e8ef;
|
|
62
|
+
--color-gray-modern-300: #cdd5df;
|
|
63
|
+
--color-gray-modern-400: #9aa4b2;
|
|
64
|
+
--color-gray-modern-500: #697586;
|
|
65
|
+
--color-gray-modern-600: #4b5565;
|
|
66
|
+
--color-gray-modern-700: #364152;
|
|
67
|
+
--color-gray-modern-800: #202939;
|
|
68
|
+
--color-gray-modern-900: #121926;
|
|
69
|
+
--color-gray-modern-950: #0d121c;
|
|
70
|
+
/* gray neutral */
|
|
71
|
+
--color-gray-neutral-25: #fcfcfd;
|
|
72
|
+
--color-gray-neutral-50: #f9fafb;
|
|
73
|
+
--color-gray-neutral-100: #f3f4f6;
|
|
74
|
+
--color-gray-neutral-200: #e5e7eb;
|
|
75
|
+
--color-gray-neutral-300: #d2d6db;
|
|
76
|
+
--color-gray-neutral-400: #9da4ae;
|
|
77
|
+
--color-gray-neutral-500: #6c737f;
|
|
78
|
+
--color-gray-neutral-600: #4d5761;
|
|
79
|
+
--color-gray-neutral-700: #384250;
|
|
80
|
+
--color-gray-neutral-800: #1f2a37;
|
|
81
|
+
--color-gray-neutral-900: #111927;
|
|
82
|
+
--color-gray-neutral-950: #0d121c;
|
|
83
|
+
/* gray iron */
|
|
84
|
+
--color-gray-iron-25: #fcfcfd;
|
|
85
|
+
--color-gray-iron-50: #fafafa;
|
|
86
|
+
--color-gray-iron-100: #f4f4f5;
|
|
87
|
+
--color-gray-iron-200: #e4e4e7;
|
|
88
|
+
--color-gray-iron-300: #d1d1d6;
|
|
89
|
+
--color-gray-iron-400: #a0a0ab;
|
|
90
|
+
--color-gray-iron-500: #70707b;
|
|
91
|
+
--color-gray-iron-600: #51525c;
|
|
92
|
+
--color-gray-iron-700: #3f3f46;
|
|
93
|
+
--color-gray-iron-800: #26272b;
|
|
94
|
+
--color-gray-iron-900: #1a1a1e;
|
|
95
|
+
--color-gray-iron-950: #131316;
|
|
96
|
+
/* gray true */
|
|
97
|
+
--color-gray-true-25: #fcfcfd;
|
|
98
|
+
--color-gray-true-50: #f7f7f7;
|
|
99
|
+
--color-gray-true-100: #f5f5f5;
|
|
100
|
+
--color-gray-true-200: #e5e5e5;
|
|
101
|
+
--color-gray-true-300: #d6d6d6;
|
|
102
|
+
--color-gray-true-400: #a3a3a3;
|
|
103
|
+
--color-gray-true-500: #737373;
|
|
104
|
+
--color-gray-true-600: #525252;
|
|
105
|
+
--color-gray-true-700: #424242;
|
|
106
|
+
--color-gray-true-800: #292929;
|
|
107
|
+
--color-gray-true-900: #141414;
|
|
108
|
+
--color-gray-true-950: #0f0f0f;
|
|
109
|
+
/* gray warm */
|
|
110
|
+
--color-gray-warm-25: #fdfdfc;
|
|
111
|
+
--color-gray-warm-50: #fafaf9;
|
|
112
|
+
--color-gray-warm-100: #f5f5f4;
|
|
113
|
+
--color-gray-warm-200: #e7e5e4;
|
|
114
|
+
--color-gray-warm-300: #d7d3d0;
|
|
115
|
+
--color-gray-warm-400: #a9a29d;
|
|
116
|
+
--color-gray-warm-500: #79716b;
|
|
117
|
+
--color-gray-warm-600: #57534e;
|
|
118
|
+
--color-gray-warm-700: #44403c;
|
|
119
|
+
--color-gray-warm-800: #292524;
|
|
120
|
+
--color-gray-warm-900: #1c1917;
|
|
121
|
+
--color-gray-warm-950: #171412;
|
|
122
|
+
/* moss */
|
|
123
|
+
--color-moss-25: #fafdf7;
|
|
124
|
+
--color-moss-50: #f5fbee;
|
|
125
|
+
--color-moss-100: #e6f4d7;
|
|
126
|
+
--color-moss-200: #ceeab0;
|
|
127
|
+
--color-moss-300: #acdc79;
|
|
128
|
+
--color-moss-400: #86cb3c;
|
|
129
|
+
--color-moss-500: #669f2a;
|
|
130
|
+
--color-moss-600: #4f7a21;
|
|
131
|
+
--color-moss-700: #3f621a;
|
|
132
|
+
--color-moss-800: #335015;
|
|
133
|
+
--color-moss-900: #2b4212;
|
|
134
|
+
--color-moss-950: #1a280b;
|
|
135
|
+
/* green light */
|
|
136
|
+
--color-green-light-25: #fafef5;
|
|
137
|
+
--color-green-light-50: #f3fee7;
|
|
138
|
+
--color-green-light-100: #e3fbcc;
|
|
139
|
+
--color-green-light-200: #d0f8ab;
|
|
140
|
+
--color-green-light-300: #a6ef67;
|
|
141
|
+
--color-green-light-400: #85e13a;
|
|
142
|
+
--color-green-light-500: #66c61c;
|
|
143
|
+
--color-green-light-600: #4ba30d;
|
|
144
|
+
--color-green-light-700: #3b7c0f;
|
|
145
|
+
--color-green-light-800: #326212;
|
|
146
|
+
--color-green-light-900: #2b5314;
|
|
147
|
+
--color-green-light-950: #15290a;
|
|
148
|
+
/* green */
|
|
149
|
+
--color-green-25: #f6fef9;
|
|
150
|
+
--color-green-50: #edfcf2;
|
|
151
|
+
--color-green-100: #d3f8df;
|
|
152
|
+
--color-green-200: #aaf0c4;
|
|
153
|
+
--color-green-300: #73e2a3;
|
|
154
|
+
--color-green-400: #3ccb7f;
|
|
155
|
+
--color-green-500: #16b364;
|
|
156
|
+
--color-green-600: #099250;
|
|
157
|
+
--color-green-700: #087443;
|
|
158
|
+
--color-green-800: #095c37;
|
|
159
|
+
--color-green-900: #084c2e;
|
|
160
|
+
--color-green-950: #052e1c;
|
|
161
|
+
/* teal */
|
|
162
|
+
--color-teal-25: #f6fefc;
|
|
163
|
+
--color-teal-50: #f0fdf9;
|
|
164
|
+
--color-teal-100: #ccfbef;
|
|
165
|
+
--color-teal-200: #99f6e0;
|
|
166
|
+
--color-teal-300: #5fe9d0;
|
|
167
|
+
--color-teal-400: #2ed3b7;
|
|
168
|
+
--color-teal-500: #15b79e;
|
|
169
|
+
--color-teal-600: #0e9384;
|
|
170
|
+
--color-teal-700: #107569;
|
|
171
|
+
--color-teal-800: #125d56;
|
|
172
|
+
--color-teal-900: #134e48;
|
|
173
|
+
--color-teal-950: #0a2926;
|
|
174
|
+
/* cyan */
|
|
175
|
+
--color-cyan-25: #f5feff;
|
|
176
|
+
--color-cyan-50: #ecfdff;
|
|
177
|
+
--color-cyan-100: #cff9fe;
|
|
178
|
+
--color-cyan-200: #a5f0fc;
|
|
179
|
+
--color-cyan-300: #67e3f9;
|
|
180
|
+
--color-cyan-400: #22ccee;
|
|
181
|
+
--color-cyan-500: #06aed4;
|
|
182
|
+
--color-cyan-600: #088ab2;
|
|
183
|
+
--color-cyan-700: #0e6f90;
|
|
184
|
+
--color-cyan-800: #155b75;
|
|
185
|
+
--color-cyan-900: #164c63;
|
|
186
|
+
--color-cyan-950: #0d2d3a;
|
|
187
|
+
/* blue light */
|
|
188
|
+
--color-blue-light-25: #f5fbff;
|
|
189
|
+
--color-blue-light-50: #f0f9ff;
|
|
190
|
+
--color-blue-light-100: #e0f2fe;
|
|
191
|
+
--color-blue-light-200: #b9e6fe;
|
|
192
|
+
--color-blue-light-300: #7cd4fd;
|
|
193
|
+
--color-blue-light-400: #36bffa;
|
|
194
|
+
--color-blue-light-500: #0ba5ec;
|
|
195
|
+
--color-blue-light-600: #0086c9;
|
|
196
|
+
--color-blue-light-700: #026aa2;
|
|
197
|
+
--color-blue-light-800: #065986;
|
|
198
|
+
--color-blue-light-900: #0b4a6f;
|
|
199
|
+
--color-blue-light-950: #062c41;
|
|
200
|
+
/* blue */
|
|
201
|
+
--color-blue-25: #f5faff;
|
|
202
|
+
--color-blue-50: #eff8ff;
|
|
203
|
+
--color-blue-100: #d1e9ff;
|
|
204
|
+
--color-blue-200: #b2ddff;
|
|
205
|
+
--color-blue-300: #84caff;
|
|
206
|
+
--color-blue-400: #53b1fd;
|
|
207
|
+
--color-blue-500: #2e90fa;
|
|
208
|
+
--color-blue-600: #1570ef;
|
|
209
|
+
--color-blue-700: #175cd3;
|
|
210
|
+
--color-blue-800: #1849a9;
|
|
211
|
+
--color-blue-900: #194185;
|
|
212
|
+
--color-blue-950: #102a56;
|
|
213
|
+
/* blue dark */
|
|
214
|
+
--color-blue-dark-25: #f5f8ff;
|
|
215
|
+
--color-blue-dark-50: #eff4ff;
|
|
216
|
+
--color-blue-dark-100: #c9d8f5;
|
|
217
|
+
--color-blue-dark-200: #b2ccff;
|
|
218
|
+
--color-blue-dark-300: #84adff;
|
|
219
|
+
--color-blue-dark-400: #528bff;
|
|
220
|
+
--color-blue-dark-500: #2970ff;
|
|
221
|
+
--color-blue-dark-600: #155eef;
|
|
222
|
+
--color-blue-dark-700: #004eeb;
|
|
223
|
+
--color-blue-dark-800: #0040c1;
|
|
224
|
+
--color-blue-dark-900: #00359e;
|
|
225
|
+
--color-blue-dark-950: #002266;
|
|
226
|
+
/* indigo */
|
|
227
|
+
--color-indigo-25: #f5f8ff;
|
|
228
|
+
--color-indigo-50: #eef4ff;
|
|
229
|
+
--color-indigo-100: #e0eaff;
|
|
230
|
+
--color-indigo-200: #c7d7fe;
|
|
231
|
+
--color-indigo-300: #a4bcfd;
|
|
232
|
+
--color-indigo-400: #8098f9;
|
|
233
|
+
--color-indigo-500: #6172f3;
|
|
234
|
+
--color-indigo-600: #444ce7;
|
|
235
|
+
--color-indigo-700: #3538cd;
|
|
236
|
+
--color-indigo-800: #2d31a6;
|
|
237
|
+
--color-indigo-900: #2d3282;
|
|
238
|
+
--color-indigo-950: #1f235b;
|
|
239
|
+
/* violet */
|
|
240
|
+
--color-violet-25: #fbfaff;
|
|
241
|
+
--color-violet-50: #f5f3ff;
|
|
242
|
+
--color-violet-100: #ece9fe;
|
|
243
|
+
--color-violet-200: #ddd6fe;
|
|
244
|
+
--color-violet-300: #c3b5fd;
|
|
245
|
+
--color-violet-400: #a48afb;
|
|
246
|
+
--color-violet-500: #875bf7;
|
|
247
|
+
--color-violet-600: #7839ee;
|
|
248
|
+
--color-violet-700: #6927da;
|
|
249
|
+
--color-violet-800: #5720b7;
|
|
250
|
+
--color-violet-900: #491c96;
|
|
251
|
+
--color-violet-950: #2e125e;
|
|
252
|
+
/* purple */
|
|
253
|
+
--color-purple-25: #fafaff;
|
|
254
|
+
--color-purple-50: #f4f3ff;
|
|
255
|
+
--color-purple-100: #ebe9fe;
|
|
256
|
+
--color-purple-200: #d9d6fe;
|
|
257
|
+
--color-purple-300: #bdb4fe;
|
|
258
|
+
--color-purple-400: #9b8afb;
|
|
259
|
+
--color-purple-500: #7a5af8;
|
|
260
|
+
--color-purple-600: #6938ef;
|
|
261
|
+
--color-purple-700: #5925dc;
|
|
262
|
+
--color-purple-800: #4a1fb8;
|
|
263
|
+
--color-purple-900: #3e1c96;
|
|
264
|
+
--color-purple-950: #27115f;
|
|
265
|
+
/* fuchsia */
|
|
266
|
+
--color-fuchsia-25: #fefaff;
|
|
267
|
+
--color-fuchsia-50: #fdf2fa;
|
|
268
|
+
--color-fuchsia-100: #fce7f6;
|
|
269
|
+
--color-fuchsia-200: #fcceee;
|
|
270
|
+
--color-fuchsia-300: #faa7e0;
|
|
271
|
+
--color-fuchsia-400: #f670c7;
|
|
272
|
+
--color-fuchsia-500: #ee46bc;
|
|
273
|
+
--color-fuchsia-600: #dd2590;
|
|
274
|
+
--color-fuchsia-700: #c11574;
|
|
275
|
+
--color-fuchsia-800: #9e165f;
|
|
276
|
+
--color-fuchsia-900: #851651;
|
|
277
|
+
--color-fuchsia-950: #4e0d30;
|
|
278
|
+
/* pink */
|
|
279
|
+
--color-pink-25: #fef6fb;
|
|
280
|
+
--color-pink-50: #fdf2fa;
|
|
281
|
+
--color-pink-100: #fce7f6;
|
|
282
|
+
--color-pink-200: #fcceee;
|
|
283
|
+
--color-pink-300: #faa7e0;
|
|
284
|
+
--color-pink-400: #f670c7;
|
|
285
|
+
--color-pink-500: #ee46bc;
|
|
286
|
+
--color-pink-600: #dd2590;
|
|
287
|
+
--color-pink-700: #c11574;
|
|
288
|
+
--color-pink-800: #9e165f;
|
|
289
|
+
--color-pink-900: #851651;
|
|
290
|
+
--color-pink-950: #4e0d30;
|
|
291
|
+
/* rose */
|
|
292
|
+
--color-rose-25: #fff5f6;
|
|
293
|
+
--color-rose-50: #fff1f3;
|
|
294
|
+
--color-rose-100: #ffe4e8;
|
|
295
|
+
--color-rose-200: #fecdd6;
|
|
296
|
+
--color-rose-300: #fea3b4;
|
|
297
|
+
--color-rose-400: #fd6f8e;
|
|
298
|
+
--color-rose-500: #f63d68;
|
|
299
|
+
--color-rose-600: #e31b59;
|
|
300
|
+
--color-rose-700: #c01048;
|
|
301
|
+
--color-rose-800: #a11043;
|
|
302
|
+
--color-rose-900: #89123e;
|
|
303
|
+
--color-rose-950: #510b24;
|
|
304
|
+
/* orange dark */
|
|
305
|
+
--color-orange-dark-25: #fff9f5;
|
|
306
|
+
--color-orange-dark-50: #fff4ed;
|
|
307
|
+
--color-orange-dark-100: #ffe6d5;
|
|
308
|
+
--color-orange-dark-200: #ffd6ae;
|
|
309
|
+
--color-orange-dark-300: #ff9c66;
|
|
310
|
+
--color-orange-dark-400: #ff692e;
|
|
311
|
+
--color-orange-dark-500: #ff4405;
|
|
312
|
+
--color-orange-dark-600: #e62e05;
|
|
313
|
+
--color-orange-dark-700: #bc1b06;
|
|
314
|
+
--color-orange-dark-800: #97180c;
|
|
315
|
+
--color-orange-dark-900: #771a0d;
|
|
316
|
+
--color-orange-dark-950: #57130a;
|
|
317
|
+
/* orange */
|
|
318
|
+
--color-orange-25: #fefaf5;
|
|
319
|
+
--color-orange-50: #fef6ee;
|
|
320
|
+
--color-orange-100: #fdead7;
|
|
321
|
+
--color-orange-200: #f9dbaf;
|
|
322
|
+
--color-orange-300: #f7b27a;
|
|
323
|
+
--color-orange-400: #f38744;
|
|
324
|
+
--color-orange-500: #ef6820;
|
|
325
|
+
--color-orange-600: #e04f16;
|
|
326
|
+
--color-orange-700: #b93815;
|
|
327
|
+
--color-orange-800: #932f19;
|
|
328
|
+
--color-orange-900: #772917;
|
|
329
|
+
--color-orange-950: #511c10;
|
|
330
|
+
/* yellow */
|
|
331
|
+
--color-yellow-25: #ffffff;
|
|
332
|
+
--color-yellow-50: #fefbe8;
|
|
333
|
+
--color-yellow-100: #fef7c3;
|
|
334
|
+
--color-yellow-200: #feee95;
|
|
335
|
+
--color-yellow-300: #fde272;
|
|
336
|
+
--color-yellow-400: #fac515;
|
|
337
|
+
--color-yellow-500: #eaaa08;
|
|
338
|
+
--color-yellow-600: #ca8504;
|
|
339
|
+
--color-yellow-700: #a15c07;
|
|
340
|
+
--color-yellow-800: #85490e;
|
|
341
|
+
--color-yellow-900: #713b12;
|
|
342
|
+
--color-yellow-950: #542c0d;
|
|
343
|
+
/* brand */
|
|
344
|
+
--color-brand-25: #f5faff;
|
|
345
|
+
--color-brand-50: #eff8ff;
|
|
346
|
+
--color-brand-100: #d1e9ff;
|
|
347
|
+
--color-brand-200: #8fd0ff;
|
|
348
|
+
--color-brand-300: #59bdff;
|
|
349
|
+
--color-brand-400: #33a3ff;
|
|
350
|
+
--color-brand-500: #008cff;
|
|
351
|
+
--color-brand-600: #1466ff;
|
|
352
|
+
--color-brand-700: #0050ff;
|
|
353
|
+
--color-brand-800: #0041cc;
|
|
354
|
+
--color-brand-900: #002991;
|
|
355
|
+
--color-brand-950: #001a66;
|
|
356
|
+
/* errror */
|
|
357
|
+
--color-error-25: #fffbfa;
|
|
358
|
+
--color-error-50: #fef3f2;
|
|
359
|
+
--color-error-100: #fee4e2;
|
|
360
|
+
--color-error-200: #fecdca;
|
|
361
|
+
--color-error-300: #fda29b;
|
|
362
|
+
--color-error-400: #f97066;
|
|
363
|
+
--color-error-500: #f04438;
|
|
364
|
+
--color-error-600: #d92d20;
|
|
365
|
+
--color-error-700: #b42318;
|
|
366
|
+
--color-error-800: #912018;
|
|
367
|
+
--color-error-900: #7a271a;
|
|
368
|
+
--color-error-950: #481007;
|
|
369
|
+
/* warning */
|
|
370
|
+
--color-warning-25: #fffcf5;
|
|
371
|
+
--color-warning-50: #fffaeb;
|
|
372
|
+
--color-warning-100: #fef0c7;
|
|
373
|
+
--color-warning-200: #fedf89;
|
|
374
|
+
--color-warning-300: #fec84b;
|
|
375
|
+
--color-warning-400: #fdb022;
|
|
376
|
+
--color-warning-500: #f79009;
|
|
377
|
+
--color-warning-600: #dc6803;
|
|
378
|
+
--color-warning-700: #b54708;
|
|
379
|
+
--color-warning-800: #93370d;
|
|
380
|
+
--color-warning-900: #7a2e0e;
|
|
381
|
+
--color-warning-950: #4e1d09;
|
|
382
|
+
/* success */
|
|
383
|
+
--color-success-25: #f6fef9;
|
|
384
|
+
--color-success-50: #ecfdf3;
|
|
385
|
+
--color-success-100: #dcfae6;
|
|
386
|
+
--color-success-200: #a9efc5;
|
|
387
|
+
--color-success-300: #75e0a7;
|
|
388
|
+
--color-success-400: #47cd89;
|
|
389
|
+
--color-success-500: #17b26a;
|
|
390
|
+
--color-success-600: #079455;
|
|
391
|
+
--color-success-700: #067647;
|
|
392
|
+
--color-success-800: #05603a;
|
|
393
|
+
--color-success-900: #054f31;
|
|
394
|
+
--color-success-950: #053321;
|
|
395
|
+
/* utility */
|
|
396
|
+
--color-utility-indigo-400: #8098F9;
|
|
397
|
+
|
|
398
|
+
/* disabled */
|
|
399
|
+
--color-disabled-fg: #98a2b3;
|
|
400
|
+
--color-disabled-subtle-br: #e4e7ec;
|
|
401
|
+
--color-disabled-bg: #e4e7ec;
|
|
402
|
+
}
|
|
@@ -0,0 +1,288 @@
|
|
|
1
|
+
.dark {
|
|
2
|
+
|
|
3
|
+
/* gray dark */
|
|
4
|
+
--color-utility-gray-50: var(--color-gray-light-900);
|
|
5
|
+
--color-utility-gray-100: var(--color-gray-light-800);
|
|
6
|
+
--color-utility-gray-200: var(--color-gray-light-700);
|
|
7
|
+
--color-utility-gray-300: var(--color-gray-light-600);
|
|
8
|
+
--color-utility-gray-400: var(--color-gray-light-500);
|
|
9
|
+
--color-utility-gray-500: var(--color-gray-light-400);
|
|
10
|
+
--color-utility-gray-600: var(--color-gray-light-300);
|
|
11
|
+
--color-utility-gray-700: var(--color-gray-light-200);
|
|
12
|
+
--color-utility-gray-800: var(--color-gray-light-100);
|
|
13
|
+
--color-utility-gray-900: var(--color-gray-light-50);
|
|
14
|
+
/* brand dark */
|
|
15
|
+
--color-utility-brand-50: var(--color-brand-950);
|
|
16
|
+
--color-utility-brand-50-alt: var(--color-gray-light-900);
|
|
17
|
+
--color-utility-brand-100: var(--color-brand-900);
|
|
18
|
+
--color-utility-brand-100-alt: var(--color-gray-light-800);
|
|
19
|
+
--color-utility-brand-200: var(--color-brand-800);
|
|
20
|
+
--color-utility-brand-200-alt: var(--color-gray-light-700);
|
|
21
|
+
--color-utility-brand-300: var(--color-brand-700);
|
|
22
|
+
--color-utility-brand-300-alt: var(--color-gray-light-700);
|
|
23
|
+
--color-utility-brand-400: var(--color-brand-600);
|
|
24
|
+
--color-utility-brand-400-alt: var(--color-gray-light-600);
|
|
25
|
+
--color-utility-brand-500: var(--color-brand-500);
|
|
26
|
+
--color-utility-brand-500-alt: var(--color-gray-light-500);
|
|
27
|
+
--color-utility-brand-600: var(--color-brand-400);
|
|
28
|
+
--color-utility-brand-600-alt: var(--color-gray-light-400);
|
|
29
|
+
--color-utility-brand-700: var(--color-brand-300);
|
|
30
|
+
--color-utility-brand-700-alt: var(--color-gray-light-300);
|
|
31
|
+
--color-utility-brand-800: var(--color-brand-200);
|
|
32
|
+
--color-utility-brand-800-alt: var(--color-gray-light-200);
|
|
33
|
+
--color-utility-brand-900: var(--color-brand-100);
|
|
34
|
+
--color-utility-brand-900-alt: var(--color-gray-light-100);
|
|
35
|
+
/* errror dark */
|
|
36
|
+
--color-utility-error-50: var(--color-error-950);
|
|
37
|
+
--color-utility-error-100: var(--color-error-900);
|
|
38
|
+
--color-utility-error-200: var(--color-error-800);
|
|
39
|
+
--color-utility-error-300: var(--color-error-700);
|
|
40
|
+
--color-utility-error-400: var(--color-error-600);
|
|
41
|
+
--color-utility-error-500: var(--color-error-500);
|
|
42
|
+
--color-utility-error-600: var(--color-error-400);
|
|
43
|
+
--color-utility-error-700: var(--color-error-300);
|
|
44
|
+
/* warning-dark */
|
|
45
|
+
--color-utility-warning-50: var(--color-warning-950);
|
|
46
|
+
--color-utility-warning-100: var(--color-warning-900);
|
|
47
|
+
--color-utility-warning-200: var(--color-warning-800);
|
|
48
|
+
--color-utility-warning-300: var(--color-warning-700);
|
|
49
|
+
--color-utility-warning-400: var(--color-warning-600);
|
|
50
|
+
--color-utility-warning-500: var(--color-warning-500);
|
|
51
|
+
--color-utility-warning-600: var(--color-warning-400);
|
|
52
|
+
--color-utility-warning-700: var(--color-warning-300);
|
|
53
|
+
|
|
54
|
+
/* success-dark */
|
|
55
|
+
--color-utility-success-50: var(--color-success-950);
|
|
56
|
+
--color-utility-success-100: var(--color-success-900);
|
|
57
|
+
--color-utility-success-200: var(--color-success-800);
|
|
58
|
+
--color-utility-success-300: var(--color-success-700);
|
|
59
|
+
--color-utility-success-400: var(--color-success-600);
|
|
60
|
+
--color-utility-success-500: var(--color-success-500);
|
|
61
|
+
--color-utility-success-600: var(--color-success-400);
|
|
62
|
+
--color-utility-success-700: var(--color-success-300);
|
|
63
|
+
/* gray-blue dark */
|
|
64
|
+
--color-utility-gray-blue-50: var(--color-gray-blue-950);
|
|
65
|
+
--color-utility-gray-blue-100: var(--color-gray-blue-900);
|
|
66
|
+
--color-utility-gray-blue-200: var(--color-gray-blue-800);
|
|
67
|
+
--color-utility-gray-blue-300: var(--color-gray-blue-700);
|
|
68
|
+
--color-utility-gray-blue-400: var(--color-gray-blue-600);
|
|
69
|
+
--color-utility-gray-blue-500: var(--color-gray-blue-500);
|
|
70
|
+
--color-utility-gray-blue-600: var(--color-gray-blue-400);
|
|
71
|
+
--color-utility-gray-blue-700: var(--color-gray-blue-300);
|
|
72
|
+
/* blue-light dark */
|
|
73
|
+
--color-utility-blue-light-50: var(--color-blue-light-950);
|
|
74
|
+
--color-utility-blue-light-100: var(--color-blue-light-900);
|
|
75
|
+
--color-utility-blue-light-200: var(--color-blue-light-800);
|
|
76
|
+
--color-utility-blue-light-300: var(--color-blue-light-700);
|
|
77
|
+
--color-utility-blue-light-400: var(--color-blue-light-600);
|
|
78
|
+
--color-utility-blue-light-500: var(--color-blue-light-500);
|
|
79
|
+
--color-utility-blue-light-600: var(--color-blue-light-400);
|
|
80
|
+
--color-utility-blue-light-700: var(--color-blue-light-300);
|
|
81
|
+
/* blue dark */
|
|
82
|
+
--color-utility-blue-50: var(--color-blue-950);
|
|
83
|
+
--color-utility-blue-100: var(--color-blue-900);
|
|
84
|
+
--color-utility-blue-200: var(--color-blue-800);
|
|
85
|
+
--color-utility-blue-300: var(--color-blue-700);
|
|
86
|
+
--color-utility-blue-400: var(--color-blue-600);
|
|
87
|
+
--color-utility-blue-500: var(--color-blue-500);
|
|
88
|
+
--color-utility-blue-600: var(--color-blue-400);
|
|
89
|
+
--color-utility-blue-700: var(--color-blue-300);
|
|
90
|
+
/* blue-dark dark */
|
|
91
|
+
--color-utility-blue-dark-50: var(--color-blue-dark-950);
|
|
92
|
+
--color-utility-blue-dark-100: var(--color-blue-dark-900);
|
|
93
|
+
--color-utility-blue-dark-200: var(--color-blue-dark-800);
|
|
94
|
+
--color-utility-blue-dark-300: var(--color-blue-dark-700);
|
|
95
|
+
--color-utility-blue-dark-400: var(--color-blue-dark-600);
|
|
96
|
+
--color-utility-blue-dark-500: var(--color-blue-dark-500);
|
|
97
|
+
--color-utility-blue-dark-600: var(--color-blue-dark-400);
|
|
98
|
+
--color-utility-blue-dark-700: var(--color-blue-dark-300);
|
|
99
|
+
/* indigo dark*/
|
|
100
|
+
--color-utility-indigo-50: var(--color-indigo-950);
|
|
101
|
+
--color-utility-indigo-100: var(--color-indigo-900);
|
|
102
|
+
--color-utility-indigo-200: var(--color-indigo-800);
|
|
103
|
+
--color-utility-indigo-300: var(--color-indigo-700);
|
|
104
|
+
--color-utility-indigo-400: var(--color-indigo-600);
|
|
105
|
+
--color-utility-indigo-500: var(--color-indigo-500);
|
|
106
|
+
--color-utility-indigo-600: var(--color-indigo-400);
|
|
107
|
+
--color-utility-indigo-700: var(--color-indigo-300);
|
|
108
|
+
/* purple dark*/
|
|
109
|
+
--color-utility-purple-50: var(--color-purple-950);
|
|
110
|
+
--color-utility-purple-100: var(--color-purple-900);
|
|
111
|
+
--color-utility-purple-200: var(--color-purple-800);
|
|
112
|
+
--color-utility-purple-300: var(--color-purple-700);
|
|
113
|
+
--color-utility-purple-400: var(--color-purple-600);
|
|
114
|
+
--color-utility-purple-500: var(--color-purple-500);
|
|
115
|
+
--color-utility-purple-600: var(--color-purple-400);
|
|
116
|
+
--color-utility-purple-700: var(--color-purple-300);
|
|
117
|
+
/* fuchsia dark */
|
|
118
|
+
--color-utility-fuchsia-50: var(--color-fuchsia-950);
|
|
119
|
+
--color-utility-fuchsia-100: var(--color-fuchsia-900);
|
|
120
|
+
--color-utility-fuchsia-200: var(--color-fuchsia-800);
|
|
121
|
+
--color-utility-fuchsia-300: var(--color-fuchsia-700);
|
|
122
|
+
--color-utility-fuchsia-400: var(--color-fuchsia-600);
|
|
123
|
+
--color-utility-fuchsia-500: var(--color-fuchsia-500);
|
|
124
|
+
--color-utility-fuchsia-600: var(--color-fuchsia-400);
|
|
125
|
+
--color-utility-fuchsia-700: var(--color-fuchsia-300);
|
|
126
|
+
/* pink dark*/
|
|
127
|
+
--color-utility-pink-50: var(--color-pink-950);
|
|
128
|
+
--color-utility-pink-100: var(--color-pink-900);
|
|
129
|
+
--color-utility-pink-200: var(--color-pink-800);
|
|
130
|
+
--color-utility-pink-300: var(--color-pink-700);
|
|
131
|
+
--color-utility-pink-400: var(--color-pink-600);
|
|
132
|
+
--color-utility-pink-500: var(--color-pink-500);
|
|
133
|
+
--color-utility-pink-600: var(--color-pink-400);
|
|
134
|
+
--color-utility-pink-700: var(--color-pink-300);
|
|
135
|
+
/* orange-dark dark*/
|
|
136
|
+
--color-utility-orange-dark-50: var(--color-orange-dark-950);
|
|
137
|
+
--color-utility-orange-dark-100: var(--color-orange-dark-900);
|
|
138
|
+
--color-utility-orange-dark-200: var(--color-orange-dark-800);
|
|
139
|
+
--color-utility-orange-dark-300: var(--color-orange-dark-700);
|
|
140
|
+
--color-utility-orange-dark-400: var(--color-orange-dark-600);
|
|
141
|
+
--color-utility-orange-dark-500: var(--color-orange-dark-500);
|
|
142
|
+
--color-utility-orange-dark-600: var(--color-orange-dark-400);
|
|
143
|
+
--color-utility-orange-dark-700: var(--color-orange-dark-300);
|
|
144
|
+
/* orange-dark dark*/
|
|
145
|
+
--color-utility-orange-50: var(--color-orange-950);
|
|
146
|
+
--color-utility-orange-100: var(--color-orange-900);
|
|
147
|
+
--color-utility-orange-200: var(--color-orange-800);
|
|
148
|
+
--color-utility-orange-300: var(--color-orange-700);
|
|
149
|
+
--color-utility-orange-400: var(--color-orange-600);
|
|
150
|
+
--color-utility-orange-500: var(--color-orange-500);
|
|
151
|
+
--color-utility-orange-600: var(--color-orange-400);
|
|
152
|
+
--color-utility-orange-700: var(--color-orange-300);
|
|
153
|
+
|
|
154
|
+
--color-rtext-primary-900: var(--color-gray-dark-50);
|
|
155
|
+
--color-rtext-primary-on-brand: var(--color-gray-dark-50);
|
|
156
|
+
--color-rtext-secondary-700: var(--color-gray-dark-300);
|
|
157
|
+
--color-rtext-secondary-hover: var(--color-gray-dark-200);
|
|
158
|
+
--color-rtext-secondary-on-brand: var(--color-brand-300);
|
|
159
|
+
--color-rtext-tertiary-600: var(--color-gray-dark-400);
|
|
160
|
+
--color-rtext-tertiary-hover: var(--color-gray-dark-300);
|
|
161
|
+
--color-rtext-tertiary-on-brand: var(--color-gray-dark-400);
|
|
162
|
+
--color-rtext-quaternary-500: var(--color-gray-dark-400);
|
|
163
|
+
--color-rtext-quaternary-on-brand: var(--color-gray-dark-400);
|
|
164
|
+
--color-rtext-white: var(--color-base-white);
|
|
165
|
+
--color-rtext-disabled: var(--color-gray-dark-500);
|
|
166
|
+
--color-rtext-placeholder: var(--color-gray-dark-500);
|
|
167
|
+
--color-rtext-placeholder-subtle: var(--color-gray-dark-700);
|
|
168
|
+
--color-rtext-brand-primary-900: var(--color-gray-dark-50);
|
|
169
|
+
--color-rtext-brand-secondary-700: var(--color-gray-dark-300);
|
|
170
|
+
--color-rtext-brand-tertiary-600: var(--color-gray-dark-400);
|
|
171
|
+
--color-rtext-brand-tertiary-alt: var(--color-gray-dark-50);
|
|
172
|
+
--color-rtext-error-primary-600: var(--color-error-400);
|
|
173
|
+
--color-rtext-warning-primary-600: var(--color-warning-400);
|
|
174
|
+
--color-rtext-success-primary-600: var(--color-success-400);
|
|
175
|
+
--color-rborder-primary: var(--color-gray-dark-700);
|
|
176
|
+
--color-rborder-secondary: var(--color-gray-dark-800);
|
|
177
|
+
--color-rborder-tertiary: var(--color-gray-dark-800);
|
|
178
|
+
--color-rborder-disabled: var(--color-gray-dark-700);
|
|
179
|
+
--color-rborder-disabled-subtle: var(--color-gray-dark-800);
|
|
180
|
+
--color-rborder-brand: var(--color-brand-400);
|
|
181
|
+
--color-rborder-warning: var(--color-warning-400);
|
|
182
|
+
--color-rborder-brand-alt: var(--color-gray-dark-700);
|
|
183
|
+
--color-rborder-error: var(--color-error-400);
|
|
184
|
+
--color-rborder-error-subtle: var(--color-error-400);
|
|
185
|
+
--color-rfg-primary-900: var(--color-base-white);
|
|
186
|
+
--color-rfg-secondary-700: var(--color-gray-light-300);
|
|
187
|
+
--color-rfg-secondary-hover: var(--color-gray-light-200);
|
|
188
|
+
--color-rfg-tertiary-600: var(--color-gray-light-400);
|
|
189
|
+
--color-rfg-tertiary-hover: var(--color-gray-light-300);
|
|
190
|
+
--color-rfg-quaternary-500: var(--color-gray-light-400);
|
|
191
|
+
--color-rfg-quaternary-hover: var(--color-gray-light-300);
|
|
192
|
+
--color-rfg-quinary-400: var(--color-gray-light-500);
|
|
193
|
+
--color-rfg-quinary-hover: var(--color-gray-light-400);
|
|
194
|
+
--color-rfg-senary-300: var(--color-gray-light-600);
|
|
195
|
+
--color-rfg-white: var(--color-base-white);
|
|
196
|
+
--color-rfg-disabled: var(--color-gray-light-500);
|
|
197
|
+
--color-rfg-disabled-subtle: var(--color-gray-light-600);
|
|
198
|
+
--color-rfg-brand-primary-600: var(--color-brand-500);
|
|
199
|
+
--color-rfg-brand-primary-alt: var(--color-gray-light-300);
|
|
200
|
+
--color-rfg-brand-secondary-500: var(--color-brand-500);
|
|
201
|
+
--color-rfg-error-primary: var(--color-error-500);
|
|
202
|
+
--color-rfg-error-secondary: var(--color-error-400);
|
|
203
|
+
--color-rfg-warning-primary: var(--color-warning-500);
|
|
204
|
+
--color-rfg-warning-secondary: var(--color-warning-400);
|
|
205
|
+
--color-rfg-success-primary: var(--color-success-500);
|
|
206
|
+
--color-rfg-success-secondary: var(--color-success-400);
|
|
207
|
+
--color-rbg-primary: var(--color-gray-dark-950);
|
|
208
|
+
--color-rbg-primary-alt: var(--color-gray-dark-900);
|
|
209
|
+
--color-rbg-primary-hover: var(--color-gray-dark-800);
|
|
210
|
+
--color-rbg-primary-solid: var(--color-gray-dark-900);
|
|
211
|
+
--color-rbg-secondary: var(--color-gray-dark-900);
|
|
212
|
+
--color-rbg-secondary-alt: var(--color-gray-dark-950);
|
|
213
|
+
--color-rbg-secondary-hover: var(--color-gray-dark-800);
|
|
214
|
+
--color-rbg-secondary-subtle: var(--color-gray-dark-900);
|
|
215
|
+
--color-rbg-secondary-solid: var(--color-gray-dark-600);
|
|
216
|
+
--color-rbg-tertiary: var(--color-gray-dark-800);
|
|
217
|
+
--color-rbg-quaternary: var(--color-gray-dark-800);
|
|
218
|
+
--color-rbg-active: var(--color-gray-dark-800);
|
|
219
|
+
--color-rbg-disabled: var(--color-gray-dark-800);
|
|
220
|
+
--color-rbg-disabled-subtle: var(--color-gray-dark-900);
|
|
221
|
+
--color-rbg-overlay: var(--color-gray-dark-800);
|
|
222
|
+
--color-rbg-brand-primary: var(--color-brand-500);
|
|
223
|
+
--color-rbg-brand-primary-alt: var(--color-gray-dark-900);
|
|
224
|
+
--color-rbg-brand-secondary: var(--color-brand-600);
|
|
225
|
+
--color-rbg-brand-solid: var(--color-brand-600);
|
|
226
|
+
--color-rbg-brand-solid-hover: var(--color-brand-500);
|
|
227
|
+
--color-rbg-brand-section: var(--color-gray-dark-900);
|
|
228
|
+
--color-rbg-brand-section-subtle: var(--color-gray-dark-950);
|
|
229
|
+
--color-rbg-error-primary: var(--color-error-500);
|
|
230
|
+
--color-rbg-error-secondary: var(--color-error-600);
|
|
231
|
+
--color-rbg-error-solid: var(--color-error-600);
|
|
232
|
+
--color-rbg-warning-primary: var(--color-warning-500);
|
|
233
|
+
--color-rbg-warning-secondary: var(--color-warning-600);
|
|
234
|
+
--color-rbg-warning-solid: var(--color-warning-600);
|
|
235
|
+
--color-rbg-success-primary: var(--color-success-500);
|
|
236
|
+
--color-rbg-success-secondary: var(--color-success-600);
|
|
237
|
+
--color-rbg-success-solid: var(--color-success-600);
|
|
238
|
+
--color-rbutton-primary-fg: var(--color-base-white);
|
|
239
|
+
--color-rbutton-primary-fg-hover: var(--color-base-white);
|
|
240
|
+
--color-rbutton-primary-bg: var(--color-brand-800);
|
|
241
|
+
--color-rbutton-primary-bg-hover: var(--color-brand-700);
|
|
242
|
+
--color-rbutton-secondary-fg: var(--color-gray-dark-300);
|
|
243
|
+
--color-rbutton-secondary-fg-hover: var(--color-gray-dark-100);
|
|
244
|
+
--color-rbutton-secondary-bg: var(--color-gray-dark-900);
|
|
245
|
+
--color-rbutton-secondary-bg-hover: var(--color-gray-dark-800);
|
|
246
|
+
--color-rbutton-secondary-border: var(--color-gray-dark-700);
|
|
247
|
+
--color-rbutton-secondary-border-hover: var(--color-gray-dark-700);
|
|
248
|
+
--color-rbutton-secondary-color-fg: var(--color-gray-dark-300);
|
|
249
|
+
--color-rbutton-secondary-color-fg-hover: var(--color-gray-dark-100);
|
|
250
|
+
--color-rbutton-secondary-color-bg: var(--color-gray-dark-900);
|
|
251
|
+
--color-rbutton-secondary-color-bg-hover: var(--color-gray-dark-800);
|
|
252
|
+
--color-rbutton-secondary-color-border: var(--color-gray-dark-700);
|
|
253
|
+
--color-rbutton-secondary-color-border-hover: var(--color-gray-dark-700);
|
|
254
|
+
--color-rbutton-tertiary-fg: var(--color-gray-dark-400);
|
|
255
|
+
--color-rbutton-tertiary-fg-hover: var(--color-gray-dark-200);
|
|
256
|
+
--color-rbutton-tertiary-bg-hover: var(--color-gray-dark-800);
|
|
257
|
+
--color-rbutton-tertiary-color-fg: var(--color-gray-dark-300);
|
|
258
|
+
--color-rbutton-tertiary-color-fg-hover: var(--color-gray-dark-100);
|
|
259
|
+
--color-rbutton-tertiary-color-bg-hover: var(--color-gray-dark-800);
|
|
260
|
+
--color-rbutton-primary-error-fg: var(--color-base-white);
|
|
261
|
+
--color-rbutton-primary-error-fg-hover: var(--color-base-white);
|
|
262
|
+
--color-rbutton-primary-error-bg: var(--color-error-600);
|
|
263
|
+
--color-rbutton-primary-error-bg-hover: var(--color-error-700);
|
|
264
|
+
--color-rbutton-secondary-error-fg: var(--color-error-200);
|
|
265
|
+
--color-rbutton-secondary-error-fg-hover: var(--color-error-100);
|
|
266
|
+
--color-rbutton-secondary-error-bg: var(--color-error-950);
|
|
267
|
+
--color-rbutton-secondary-error-bg-hover: var(--color-error-900);
|
|
268
|
+
--color-rbutton-secondary-error-border: var(--color-error-800);
|
|
269
|
+
--color-rbutton-secondary-error-border-hover: var(--color-error-700);
|
|
270
|
+
--color-rbutton-tertiary-error-fg: var(--color-error-300);
|
|
271
|
+
--color-rbutton-tertiary-error-fg-hover: var(--color-error-200);
|
|
272
|
+
--color-rbutton-tertiary-error-bg-hover: var(--color-error-900);
|
|
273
|
+
|
|
274
|
+
/* Box Shadows */
|
|
275
|
+
--shadow-xs: rgba(255, 255, 255, 0);
|
|
276
|
+
--shadow-sm-01: rgba(255, 255, 255, 0);
|
|
277
|
+
--shadow-sm-02: rgba(255, 255, 255, 0);
|
|
278
|
+
--shadow-md-01: rgba(255, 255, 255, 0);
|
|
279
|
+
--shadow-md-02: rgba(255, 255, 255, 0);
|
|
280
|
+
--shadow-lg-01: rgba(255, 255, 255, 0);
|
|
281
|
+
--shadow-lg-02: rgba(255, 255, 255, 0);
|
|
282
|
+
--shadow-xl-01: rgba(255, 255, 255, 0);
|
|
283
|
+
--shadow-xl-02: rgba(255, 255, 255, 0);
|
|
284
|
+
--shadow-2xl: rgba(255, 255, 255, 0);
|
|
285
|
+
--shadow-3xl: rgba(255, 255, 255, 0);
|
|
286
|
+
--shadow-skeumorphic-inner: rgba(12, 17, 29, 0.5);
|
|
287
|
+
--shadow-skeumorphic-inner-border: rgba(12, 17, 29, 0.18);
|
|
288
|
+
}
|