wg-design 0.1.1 → 0.3.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/dist/colors.css +37 -0
- package/dist/index.cjs +3 -3
- package/dist/index.mjs +89 -100
- package/dist/src/components/DynamicIcon/IconGallery.d.ts +2 -0
- package/dist/src/components/DynamicIcon/IconGalleryInternals.d.ts +15 -0
- package/dist/src/components/DynamicIcon/IconGalleryVirtualGrid.d.ts +3 -0
- package/dist/src/components/DynamicIcon/icon-catalogues.d.ts +3 -0
- package/dist/src/components/Input/Input.d.ts +3 -0
- package/dist/src/components/NativeSelect/NativeSelect.d.ts +7 -0
- package/dist/theme.css +124 -0
- package/dist/themes/default.css +35 -0
- package/dist/themes/index.css +4 -0
- package/dist/themes/thoma.css +31 -0
- package/dist/themes/wegroup.css +31 -0
- package/dist/themes/yousure.css +34 -0
- package/dist/wg-design.css +1 -1
- package/package.json +3 -1
package/dist/colors.css
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
@theme {
|
|
2
|
+
/* Chakra v2 Red */
|
|
3
|
+
--color-error-50: #fff5f5;
|
|
4
|
+
--color-error-100: #fed7d7;
|
|
5
|
+
--color-error-200: #feb2b2;
|
|
6
|
+
--color-error-300: #fc8181;
|
|
7
|
+
--color-error-400: #f56565;
|
|
8
|
+
--color-error-500: #e53e3e;
|
|
9
|
+
--color-error-600: #c53030;
|
|
10
|
+
--color-error-700: #9b2c2c;
|
|
11
|
+
--color-error-800: #822727;
|
|
12
|
+
--color-error-900: #63171b;
|
|
13
|
+
|
|
14
|
+
/* Chakra v2 Orange */
|
|
15
|
+
--color-warning-50: #fffaf0;
|
|
16
|
+
--color-warning-100: #feebc8;
|
|
17
|
+
--color-warning-200: #fbd38d;
|
|
18
|
+
--color-warning-300: #f6ad55;
|
|
19
|
+
--color-warning-400: #ed8936;
|
|
20
|
+
--color-warning-500: #dd6b20;
|
|
21
|
+
--color-warning-600: #c05621;
|
|
22
|
+
--color-warning-700: #9c4221;
|
|
23
|
+
--color-warning-800: #7b341e;
|
|
24
|
+
--color-warning-900: #652b19;
|
|
25
|
+
|
|
26
|
+
/* Chakra v2 Green */
|
|
27
|
+
--color-success-50: #f0fff4;
|
|
28
|
+
--color-success-100: #c6f6d5;
|
|
29
|
+
--color-success-200: #9ae6b4;
|
|
30
|
+
--color-success-300: #68d391;
|
|
31
|
+
--color-success-400: #48bb78;
|
|
32
|
+
--color-success-500: #38a169;
|
|
33
|
+
--color-success-600: #2f855a;
|
|
34
|
+
--color-success-700: #276749;
|
|
35
|
+
--color-success-800: #22543d;
|
|
36
|
+
--color-success-900: #1c4532;
|
|
37
|
+
}
|