myshell-react-lib 0.1.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.
Files changed (151) hide show
  1. package/README.md +268 -0
  2. package/dist/assets/audio-playing.json +3657 -0
  3. package/dist/index.cjs +9654 -0
  4. package/dist/index.cjs.map +1 -0
  5. package/dist/index.d.cts +1431 -0
  6. package/dist/index.d.ts +1431 -0
  7. package/dist/index.js +8788 -0
  8. package/dist/index.js.map +1 -0
  9. package/package.json +140 -0
  10. package/src/common/assets/audio-playing.json +3657 -0
  11. package/src/common/constants/constants.ts +24 -0
  12. package/src/common/constants/types/common.ts +10 -0
  13. package/src/common/hooks/useAudioPlayer.tsx +198 -0
  14. package/src/common/hooks/useDevice.ts +26 -0
  15. package/src/common/hooks/useNativeBridge.ts +42 -0
  16. package/src/common/hooks/useNotification.tsx +179 -0
  17. package/src/common/hooks/useWindowWidth.ts +19 -0
  18. package/src/common/utils/common-helper.ts +81 -0
  19. package/src/components/ItemDemo.tsx +15 -0
  20. package/src/components/accordion.tsx +126 -0
  21. package/src/components/alert-dialog.tsx +148 -0
  22. package/src/components/alert.tsx +65 -0
  23. package/src/components/aspect-ratio.tsx +7 -0
  24. package/src/components/audio-player.tsx +58 -0
  25. package/src/components/avatar.tsx +133 -0
  26. package/src/components/badge.tsx +65 -0
  27. package/src/components/button/button.styles.ts +258 -0
  28. package/src/components/button/button.tsx +215 -0
  29. package/src/components/button/icon-button.styles.ts +101 -0
  30. package/src/components/button/icon-button.tsx +100 -0
  31. package/src/components/button/index.tsx +3 -0
  32. package/src/components/button/link-button.tsx +184 -0
  33. package/src/components/cascader.tsx +175 -0
  34. package/src/components/checkbox.tsx +135 -0
  35. package/src/components/command.tsx +155 -0
  36. package/src/components/context-menu.tsx +198 -0
  37. package/src/components/count-down.tsx +83 -0
  38. package/src/components/custom-notification.tsx +95 -0
  39. package/src/components/dialog.tsx +158 -0
  40. package/src/components/drawer.tsx +116 -0
  41. package/src/components/dropdown-menu.tsx +196 -0
  42. package/src/components/energy-progress.tsx +55 -0
  43. package/src/components/form.tsx +201 -0
  44. package/src/components/group.tsx +9 -0
  45. package/src/components/guide.tsx +243 -0
  46. package/src/components/icon.tsx +89 -0
  47. package/src/components/icons/outline/DownIcon.tsx +18 -0
  48. package/src/components/icons/outline/FilterIcon.tsx +21 -0
  49. package/src/components/icons/outline/arrow-left.tsx +16 -0
  50. package/src/components/icons/outline/arrow-up-tray.tsx +16 -0
  51. package/src/components/icons/outline/check-circle.tsx +17 -0
  52. package/src/components/icons/outline/config.tsx +42 -0
  53. package/src/components/icons/outline/pencil-square.tsx +16 -0
  54. package/src/components/icons/outline/trash.tsx +17 -0
  55. package/src/components/icons/outline/window.tsx +16 -0
  56. package/src/components/icons/outline/x-circle.tsx +17 -0
  57. package/src/components/icons/outline/x-mark.tsx +16 -0
  58. package/src/components/icons/solid/audio-playing.tsx +31 -0
  59. package/src/components/icons/solid/caret-down.tsx +14 -0
  60. package/src/components/icons/solid/code.tsx +18 -0
  61. package/src/components/icons/solid/drag.tsx +14 -0
  62. package/src/components/icons/solid/phone.tsx +23 -0
  63. package/src/components/icons/solid/rectangle-group.tsx +14 -0
  64. package/src/components/image.tsx +151 -0
  65. package/src/components/input.tsx +118 -0
  66. package/src/components/label.tsx +26 -0
  67. package/src/components/link.tsx +123 -0
  68. package/src/components/marquee/index.css +15 -0
  69. package/src/components/marquee/marquee.tsx +220 -0
  70. package/src/components/masonry.tsx +138 -0
  71. package/src/components/menubar.tsx +234 -0
  72. package/src/components/mobile/m-tooltip.tsx +34 -0
  73. package/src/components/modal.tsx +561 -0
  74. package/src/components/navigation-bar.tsx +100 -0
  75. package/src/components/number-input.tsx +143 -0
  76. package/src/components/page-content.tsx +16 -0
  77. package/src/components/popover.tsx +191 -0
  78. package/src/components/progress.tsx +80 -0
  79. package/src/components/radio-group.tsx +44 -0
  80. package/src/components/scroll-area.tsx +49 -0
  81. package/src/components/search-bar.tsx +140 -0
  82. package/src/components/secondary-navigation-bar.tsx +307 -0
  83. package/src/components/select.tsx +273 -0
  84. package/src/components/separator.tsx +31 -0
  85. package/src/components/sheet.tsx +143 -0
  86. package/src/components/skeleton.tsx +20 -0
  87. package/src/components/slider.tsx +160 -0
  88. package/src/components/spinner.tsx +48 -0
  89. package/src/components/swiper/index.module.scss +88 -0
  90. package/src/components/swiper/index.tsx +319 -0
  91. package/src/components/switch.tsx +67 -0
  92. package/src/components/tabs.tsx +325 -0
  93. package/src/components/textarea.tsx +71 -0
  94. package/src/components/toast/toast.tsx +182 -0
  95. package/src/components/toast/toaster.tsx +160 -0
  96. package/src/components/toast/use-toast.tsx +248 -0
  97. package/src/components/toggle-group.tsx +64 -0
  98. package/src/components/toggle.tsx +46 -0
  99. package/src/components/tooltip.tsx +283 -0
  100. package/src/components/typography.tsx +437 -0
  101. package/src/index.ts +66 -0
  102. package/src/lib/utils.ts +62 -0
  103. package/src/stories/Accordion.stories.tsx +64 -0
  104. package/src/stories/AccordionItem.stories.tsx +48 -0
  105. package/src/stories/Avatar.stories.ts +58 -0
  106. package/src/stories/Badge.stories.tsx +40 -0
  107. package/src/stories/BannerSwiper.stories.tsx +102 -0
  108. package/src/stories/Button.stories.tsx +543 -0
  109. package/src/stories/Checkbox.stories.tsx +161 -0
  110. package/src/stories/Configure.mdx +341 -0
  111. package/src/stories/CssProperties.mdx +30 -0
  112. package/src/stories/Description.stories.ts +70 -0
  113. package/src/stories/Display.stories.ts +64 -0
  114. package/src/stories/FeaturedSwiper.stories.tsx +6978 -0
  115. package/src/stories/GridSwiper.stories.tsx +1407 -0
  116. package/src/stories/Guide.stories.tsx +247 -0
  117. package/src/stories/Heading.stories.ts +89 -0
  118. package/src/stories/Icon.stories.ts +77 -0
  119. package/src/stories/IconButton.stories.tsx +301 -0
  120. package/src/stories/IconTextButton.stories.ts +59 -0
  121. package/src/stories/Image.stories.ts +55 -0
  122. package/src/stories/Input.stories.tsx +203 -0
  123. package/src/stories/Modal.stories.tsx +144 -0
  124. package/src/stories/NavigationBar.stories.tsx +81 -0
  125. package/src/stories/Notification.stories.tsx +276 -0
  126. package/src/stories/Popover.stories.tsx +100 -0
  127. package/src/stories/SearchBar.stories.ts +43 -0
  128. package/src/stories/SecondaryNavigationBar.stories.tsx +199 -0
  129. package/src/stories/Select.stories.tsx +107 -0
  130. package/src/stories/Separator.stories.tsx +49 -0
  131. package/src/stories/Spinner.stories.tsx +48 -0
  132. package/src/stories/SubHeading.stories.ts +64 -0
  133. package/src/stories/Swich.stories.tsx +69 -0
  134. package/src/stories/Tabs.stories.tsx +90 -0
  135. package/src/stories/Text.stories.ts +78 -0
  136. package/src/stories/Textarea.stories.tsx +155 -0
  137. package/src/stories/Toast.stories.tsx +424 -0
  138. package/src/stories/Tooltip.stories.tsx +244 -0
  139. package/src/stories/ViewAutoSwiper.stories.tsx +1408 -0
  140. package/src/styles/components-dark.scss +212 -0
  141. package/src/styles/components-light.scss +210 -0
  142. package/src/styles/design-dark.scss +330 -0
  143. package/src/styles/design-light.scss +345 -0
  144. package/src/styles/design2-dark.scss +319 -0
  145. package/src/styles/design2-light.scss +364 -0
  146. package/src/styles/font.css +19 -0
  147. package/src/styles/global.scss +251 -0
  148. package/src/styles/md-viewer.scss +155 -0
  149. package/src/styles/new-tokens.scss +255 -0
  150. package/src/styles/tokens.scss +401 -0
  151. package/src/types/scss.d.ts +24 -0
@@ -0,0 +1,401 @@
1
+
2
+ @layer base {
3
+ :root {
4
+ //basic
5
+ --black: #000000;
6
+ --white: #ffffff;
7
+ --none: #ffffff00;
8
+
9
+ // neutral
10
+ --neutral: #1a1c1d;
11
+ --neutral-10: #202223;
12
+ --neutral-20: #323436;
13
+ --neutral-30: #414345;
14
+ --neutral-40: #5c5f62;
15
+ --neutral-50: #6d7175;
16
+ --neutral-60: #8c9196;
17
+ --neutral-70: #c9ccd0;
18
+ --neutral-75: #dbdddf;
19
+ --neutral-80: #e4e5e7;
20
+ --neutral-85: #edeeef;
21
+ --neutral-90: #f1f2f3;
22
+ --neutral-95: #f6f6f7;
23
+ --neutral-99: #fafafb;
24
+
25
+ --neutral-variant: #17191c;
26
+ --neutral-variant-5: #27292c;
27
+ --neutral-variant-10: #323539;
28
+ --neutral-variant-15: #42454a;
29
+ --neutral-variant-20: #363f4d;
30
+ --neutral-variant-30: #444f61;
31
+ --neutral-variant-35: #4f5c70;
32
+ --neutral-variant-40: #9da1a6;
33
+ --neutral-variant-50: #b6babf;
34
+ --neutral-variant-60: #cdd2d8;
35
+ --neutral-variant-70: #dadfe5;
36
+ --neutral-variant-80: #e4e9f0;
37
+ --neutral-variant-85: #edf0f5;
38
+ --neutral-variant-88: #e5effd;
39
+ --neutral-variant-90: #edf4fe;
40
+ --neutral-variant-95: #f2f7fe;
41
+ --neutral-variant-99: #f5f7fa;
42
+
43
+ --neutral-dark: #17181c;
44
+ --neutral-dark-5: #1b1c21;
45
+ --neutral-dark-10: #27282c;
46
+ --neutral-dark-15: #2d2e33;
47
+ --neutral-dark-20: #323339;
48
+ --neutral-dark-25: #42434a;
49
+ --neutral-dark-30: #54565e;
50
+ --neutral-dark-40: #666873;
51
+ --neutral-dark-50: #797b87;
52
+ --neutral-dark-60: #868996;
53
+ --neutral-dark-70: #9699a8;
54
+ --neutral-dark-80: #a6a9ba;
55
+ --neutral-dark-85: #b8bccf;
56
+ --neutral-dark-90: #cacfe3;
57
+ --neutral-dark-95: #d4d8ed;
58
+ --neutral-dark-99: #e1e6fc;
59
+
60
+ --neutral-dark-special: #1c1e26;
61
+ --neutral-dark-special-5: #22242e;
62
+ --neutral-dark-special-10: #232533;
63
+ --neutral-dark-special-20: #2b2e3b;
64
+ --neutral-dark-special-30: #383c52;
65
+ --neutral-dark-special-40: #464b66;
66
+
67
+ --blue: #0b1964;
68
+ --blue-5: #0e2494;
69
+ --blue-10: #1b35b6;
70
+ --blue-15: #1b39cf;
71
+ --blue-20: #2b48d8;
72
+ --blue-30: #3e5cfa;
73
+ --blue-40: #5974ff;
74
+ --blue-50: #788eff;
75
+ --blue-60: #95a6ff;
76
+ --blue-70: #ccd4ff;
77
+ --blue-80: #e0e5ff;
78
+ --blue-90: #ecefff;
79
+ --blue-95: #f2f4fe;
80
+
81
+ --blue-dark-10: #292c38;
82
+ --blue-dark-20: #2c334f;
83
+ --blue-dark-30: #2b3561;
84
+ --blue-dark-40: #2d3770;
85
+ --blue-dark-50: #354285;
86
+
87
+ --red: #6c0f00;
88
+ --red-10: #a21b00;
89
+ --red-20: #bc2200;
90
+ --red-25: #cf371c;
91
+ --red-30: #d72c0d;
92
+ --red-40: #ec2f0d;
93
+ --red-50: #fd5749;
94
+ --red-55: #ff5353;
95
+ --red-60: #febcb9;
96
+ --red-70: #fed3d1;
97
+ --red-80: #ffe9e8;
98
+ --red-90: #fff0f0;
99
+ --red-95: #fff4f4;
100
+
101
+ --red-dark-10: #382a29;
102
+ --red-dark-20: #4f2e2c;
103
+ --red-dark-30: #612e2b;
104
+
105
+ --yellow: #403624;
106
+ --yellow-5: #7e5700;
107
+ --yellow-10: #b98900;
108
+ --yellow-15: #cf9e1b;
109
+ --yellow-20: #e8a900;
110
+ --yellow-30: #fda500;
111
+ --yellow-35: #e1b878;
112
+ --yellow-40: #ffc453;
113
+ --yellow-50: #ffd06a;
114
+ --yellow-60: #ffd79d;
115
+ --yellow-70: #ffe6bb;
116
+ --yellow-80: #ffebd3;
117
+ --yellow-90: #fff2e2;
118
+ --yellow-95: #fff5ea;
119
+
120
+ --yellow-dark-10: #383029;
121
+ --yellow-dark-20: #4f3e2c;
122
+ --yellow-dark-30: #61472b;
123
+
124
+ --green: #005231;
125
+ --green-10: #006d41;
126
+ --green-20: #0bb26f;
127
+ --green-25: #1bcf75;
128
+ --green-30: #0dcc7f;
129
+ --green-40: #12d687;
130
+ --green-50: #18ce79;
131
+ --green-60: #86f7be;
132
+ --green-70: #baf9d9;
133
+ --green-80: #d9fae9;
134
+ --green-90: #e6faf0;
135
+ --green-95: #f2faf6;
136
+
137
+ --green-dark-10: #293830;
138
+ --green-dark-20: #2c4f3e;
139
+ --green-dark-30: #2b6147;
140
+
141
+ --aqua: #243640;
142
+ --aqua-5: #093852;
143
+ --aqua-10: #0f5c85;
144
+ --aqua-20: #2980af;
145
+ --aqua-25: #1b93cf;
146
+ --aqua-30: #2096d6;
147
+ --aqua-40: #0da8fc;
148
+ --aqua-50: #5dc4fc;
149
+ --aqua-55: #6acbff;
150
+ --aqua-60: #95d8fc;
151
+ --aqua-70: #b8e4fc;
152
+ --aqua-75: #c7ebff;
153
+ --aqua-80: #d6f0ff;
154
+ --aqua-90: #e0f4ff;
155
+ --aqua-95: #f0faff;
156
+
157
+ --aqua-dark-10: #293338;
158
+ --aqua-dark-20: #2c434f;
159
+ --aqua-dark-30: #2b4f61;
160
+
161
+ --lemon: #24210b;
162
+ --lemon-20: #454127;
163
+ --lemon-40: #8f7d1a;
164
+ --lemon-50: #a48f07;
165
+ --lemon-60: #cfaf00;
166
+ --lemon-70: #f3d42d;
167
+ --lemon-80: #ffe86b;
168
+ --lemon-90: #fdf5ca;
169
+
170
+ //alpha black
171
+ --alpha-black-1: #00000003;
172
+ --alpha-black-3: #00000008;
173
+ --alpha-black-5: #0000000d;
174
+ --alpha-black-8: #00000014;
175
+ --alpha-black-10: #0000001a;
176
+ --alpha-black-20: #00000033;
177
+ --alpha-black-30: #0000004d;
178
+ --alpha-black-40: #00000066;
179
+ --alpha-black-50: #00000080;
180
+ --alpha-black-60: #00000099;
181
+ --alpha-black-70: #000000b2;
182
+ --alpha-black-75: #000000bf;
183
+ --alpha-black-80: #000000cc;
184
+ --alpha-black-90: #000000e5;
185
+ --alpha-black-100: #000000;
186
+
187
+ //alpha white
188
+ --alpha-white-1: #ffffff03;
189
+ --alpha-white-3: #ffffff08;
190
+ --alpha-white-5: #ffffff0d;
191
+ --alpha-white-8: #ffffff14;
192
+ --alpha-white-10: #ffffff1a;
193
+ --alpha-white-20: #ffffff33;
194
+ --alpha-white-30: #ffffff4d;
195
+ --alpha-white-40: #ffffff66;
196
+ --alpha-white-50: #ffffff80;
197
+ --alpha-white-60: #ffffff99;
198
+ --alpha-white-70: #ffffffb2;
199
+ --alpha-white-75: #ffffffbf;
200
+ --alpha-white-80: #ffffffcc;
201
+ --alpha-white-90: #ffffffe5;
202
+ --alpha-white-100: #ffffff;
203
+
204
+ --moss-25: #fafdf7;
205
+ --moss-50: #f5fbee;
206
+ --moss-100: #e6f4d7;
207
+ --moss-200: #ceeab0;
208
+ --moss-300: #acdc79;
209
+ --moss-400: #86cb3c;
210
+ --moss-500: #669f2a;
211
+ --moss-600: #4f7a21;
212
+ --moss-700: #3f621a;
213
+ --moss-800: #335015;
214
+ --moss-900: #2b4212;
215
+ --moss-950: #1a280b;
216
+
217
+ --teal-25: #f6fefc;
218
+ --teal-50: #f0fdf9;
219
+ --teal-100: #ccfbef;
220
+ --teal-200: #99f6e0;
221
+ --teal-300: #5fe9d0;
222
+ --teal-400: #2ed3b7;
223
+ --teal-500: #15b79e;
224
+ --teal-600: #0e9384;
225
+ --teal-700: #107569;
226
+ --teal-800: #125d56;
227
+ --teal-900: #134e48;
228
+ --teal-950: #0a2926;
229
+
230
+ --cyan-25: #f5feff;
231
+ --cyan-50: #ecfdff;
232
+ --cyan-100: #cff9fe;
233
+ --cyan-200: #a5f0fc;
234
+ --cyan-300: #67e3f9;
235
+ --cyan-400: #22ccee;
236
+ --cyan-500: #06aed4;
237
+ --cyan-600: #088ab2;
238
+ --cyan-700: #0e7090;
239
+ --cyan-800: #155b75;
240
+ --cyan-900: #164c63;
241
+ --cyan-950: #0d2d3a;
242
+
243
+ --sky-blue-25: #f5faff;
244
+ --sky-blue-50: #eff8ff;
245
+ --sky-blue-100: #d1e9ff;
246
+ --sky-blue-200: #b2ddff;
247
+ --sky-blue-300: #84caff;
248
+ --sky-blue-400: #53b1fd;
249
+ --sky-blue-500: #2e90fa;
250
+ --sky-blue-600: #1570ef;
251
+ --sky-blue-700: #3538cd;
252
+ --sky-blue-800: #1849a9;
253
+ --sky-blue-900: #194185;
254
+ --sky-blue-950: #102a56;
255
+
256
+ --indigo-25: #f5f8ff;
257
+ --indigo-50: #eef4ff;
258
+ --indigo-100: #e0eaff;
259
+ --indigo-200: #c7d7fe;
260
+ --indigo-300: #a4bcfd;
261
+ --indigo-400: #8098f9;
262
+ --indigo-500: #6172f3;
263
+ --indigo-600: #444ce7;
264
+ --indigo-700: #3538cd;
265
+ --indigo-800: #2d31a6;
266
+ --indigo-900: #2d3282;
267
+ --indigo-950: #1f235b;
268
+
269
+ --purple-25: #fafaff;
270
+ --purple-50: #f4f3ff;
271
+ --purple-100: #ebe9fe;
272
+ --purple-200: #d9d6fe;
273
+ --purple-300: #bdb4fe;
274
+ --purple-400: #bdb4fe;
275
+ --purple-500: #7a5af8;
276
+ --purple-600: #6938ef;
277
+ --purple-700: #5925dc;
278
+ --purple-800: #4a1fb8;
279
+ --purple-900: #3e1c96;
280
+ --purple-950: #27115f;
281
+
282
+ --pink-25: #fef6fb;
283
+ --pink-50: #fdf2fa;
284
+ --pink-100: #fce7f6;
285
+ --pink-200: #fcceee;
286
+ --pink-300: #faa7e0;
287
+ --pink-400: #f670c7;
288
+ --pink-500: #ee46bc;
289
+ --pink-600: #dd2590;
290
+ --pink-700: #c11574;
291
+ --pink-800: #9e165f;
292
+ --pink-900: #851651;
293
+ --pink-950: #4e0d30;
294
+
295
+ --rose-25: #fff5f6;
296
+ --rose-50: #fff1f3;
297
+ --rose-100: #ffe4e8;
298
+ --rose-200: #fecdd6;
299
+ --rose-300: #fea3b4;
300
+ --rose-400: #fd6f8e;
301
+ --rose-500: #f63d68;
302
+ --rose-600: #e31b54;
303
+ --rose-700: #c01048;
304
+ --rose-800: #a11043;
305
+ --rose-900: #89123e;
306
+ --rose-950: #510b24;
307
+
308
+ --orange-25: #fefaf5;
309
+ --orange-50: #fef6ee;
310
+ --orange-100: #fdead7;
311
+ --orange-200: #f9dbaf;
312
+ --orange-300: #f7b27a;
313
+ --orange-400: #f38744;
314
+ --orange-500: #ef6820;
315
+ --orange-600: #e04f16;
316
+ --orange-700: #b93815;
317
+ --orange-800: #932f19;
318
+ --orange-900: #772917;
319
+ --orange-950: #511c10;
320
+
321
+ --amber-25: #fefdf0;
322
+ --amber-50: #fefbe8;
323
+ --amber-100: #fef7c3;
324
+ --amber-200: #feee95;
325
+ --amber-300: #fde272;
326
+ --amber-400: #fac515;
327
+ --amber-500: #eaaa08;
328
+ --amber-600: #ca8504;
329
+ --amber-700: #a15c07;
330
+ --amber-800: #854a0e;
331
+ --amber-900: #713b12;
332
+ --amber-950: #542c0d;
333
+
334
+ //status
335
+ --status-01-10: #f4f2ff;
336
+ --status-01-20: #ece9ff;
337
+ --status-01-30: #d8d1ff;
338
+ --status-01-40: #c1b5ff;
339
+ --status-01-50: #a895ff;
340
+ --status-01-60: #896bff;
341
+ --status-01-70: #621bff;
342
+ --status-01-80: #5919e9;
343
+ --status-01-90: #5016d0;
344
+ --status-01-100: #4513b4;
345
+ --status-01-110: #391093;
346
+ --status-01-120: #280b68;
347
+
348
+ --status-02-10: #f2fff9;
349
+ --status-02-20: #e9fff5;
350
+ --status-02-30: #d1ffea;
351
+ --status-02-40: #b6ffe0;
352
+ --status-02-50: #96ffd4;
353
+ --status-02-60: #6cffc8;
354
+ --status-02-70: #1bf7b4;
355
+ --status-02-80: #1de9ab;
356
+ --status-02-90: #1ad099;
357
+ --status-02-100: #17b484;
358
+ --status-02-110: #12936c;
359
+ --status-02-120: #0d684c;
360
+
361
+ --status-03-10: #fdf3ff;
362
+ --status-03-20: #fbeaff;
363
+ --status-03-30: #f7d3ff;
364
+ --status-03-40: #f3baff;
365
+ --status-03-50: #ef9cff;
366
+ --status-03-60: #ea77ff;
367
+ --status-03-70: #e640ff;
368
+ --status-03-80: #d23ae9;
369
+ --status-03-90: #bc34d0;
370
+ --status-03-100: #a32db4;
371
+ --status-03-110: #852593;
372
+ --status-03-120: #5e1a68;
373
+
374
+ --status-04-10: #f3f6ff;
375
+ --status-04-20: #ebf0ff;
376
+ --status-04-30: #d4e0ff;
377
+ --status-04-40: #bbcfff;
378
+ --status-04-50: #9ebcff;
379
+ --status-04-60: #7aa7ff;
380
+ --status-04-70: #458fff;
381
+ --status-04-80: #3f83e9;
382
+ --status-04-90: #3875d0;
383
+ --status-04-100: #3165b4;
384
+ --status-04-110: #285393;
385
+ --status-04-120: #1c3a68;
386
+
387
+ --status-05-10: #f2fbff;
388
+ --status-05-20: #eaf8ff;
389
+ --status-05-30: #d2f0ff;
390
+ --status-05-40: #b7e8ff;
391
+ --status-05-50: #98e0ff;
392
+ --status-05-60: #70d8ff;
393
+ --status-05-70: #2fcfff;
394
+ --status-05-80: #2bbde9;
395
+ --status-05-90: #26a9d0;
396
+ --status-05-100: #2192b4;
397
+ --status-05-110: #1b7893;
398
+ --status-05-120: #135468;
399
+ }
400
+ }
401
+
@@ -0,0 +1,24 @@
1
+ declare module '*.scss' {
2
+ const content: { [className: string]: string };
3
+ export default content;
4
+ }
5
+
6
+ declare module '*.module.scss' {
7
+ const classes: { [key: string]: string };
8
+ export default classes;
9
+ }
10
+
11
+ declare module '*.css' {
12
+ const content: { [className: string]: string };
13
+ export default content;
14
+ }
15
+
16
+ declare module '*.sass' {
17
+ const content: { [className: string]: string };
18
+ export default content;
19
+ }
20
+
21
+ declare module '*.less' {
22
+ const content: { [className: string]: string };
23
+ export default content;
24
+ }