@xola/ui-kit 2.0.0-45 → 2.0.0-46
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/build/style.css +1 -1
- package/build/ui-kit.es.js +1 -1
- package/build/ui-kit.umd.js +1 -1
- package/package.json +3 -2
- package/tailwind.config.js +13 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xola/ui-kit",
|
|
3
|
-
"version": "2.0.0-
|
|
3
|
+
"version": "2.0.0-46",
|
|
4
4
|
"description": "Xola UI Kit",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"files": [
|
|
@@ -62,7 +62,8 @@
|
|
|
62
62
|
"jest": "^27.2.0",
|
|
63
63
|
"lodash": "^4.17.21",
|
|
64
64
|
"postcss": "^8.4.5",
|
|
65
|
-
"prettier": "^2.
|
|
65
|
+
"prettier": "^2.5.1",
|
|
66
|
+
"prettier-plugin-tailwindcss": "^0.1.7",
|
|
66
67
|
"react": "^17.0.2",
|
|
67
68
|
"react-dom": "^17.0.2",
|
|
68
69
|
"storybook-css-modules-preset": "^1.1.1",
|
package/tailwind.config.js
CHANGED
|
@@ -23,28 +23,36 @@ const colors = {
|
|
|
23
23
|
darker: "#0E44A8",
|
|
24
24
|
},
|
|
25
25
|
|
|
26
|
+
turquoise: {
|
|
27
|
+
// TODO: We need other shades to match the scheme
|
|
28
|
+
DEFAULT: "#3FE2EE",
|
|
29
|
+
},
|
|
30
|
+
|
|
26
31
|
green: {
|
|
27
32
|
lighter: "#E2FFEF",
|
|
33
|
+
lightish: "#C1F9D9",
|
|
28
34
|
light: "#33E781",
|
|
29
35
|
DEFAULT: "#27CE70",
|
|
30
36
|
dark: "#23B965",
|
|
31
|
-
darker: "#
|
|
37
|
+
darker: "#168848",
|
|
32
38
|
},
|
|
33
39
|
|
|
34
40
|
red: {
|
|
35
|
-
lighter: "#
|
|
41
|
+
lighter: "#FFF0F0",
|
|
42
|
+
lightish: "#FFE1E1",
|
|
36
43
|
light: "#FFA1A1",
|
|
37
44
|
DEFAULT: "#FF5A5A",
|
|
38
45
|
dark: "#E93737",
|
|
39
|
-
darker: "#
|
|
46
|
+
darker: "#CD1F1F",
|
|
40
47
|
},
|
|
41
48
|
|
|
42
49
|
yellow: {
|
|
43
50
|
lighter: "#FFFAF0",
|
|
51
|
+
lightish: "#FFECC6",
|
|
44
52
|
light: "#FFDB8E",
|
|
45
53
|
DEFAULT: "#FFC03D",
|
|
46
54
|
dark: "#EBAA24",
|
|
47
|
-
darker: "#
|
|
55
|
+
darker: "#987122",
|
|
48
56
|
},
|
|
49
57
|
|
|
50
58
|
orange: {
|
|
@@ -192,7 +200,7 @@ module.exports = {
|
|
|
192
200
|
|
|
193
201
|
letterSpacing: {
|
|
194
202
|
tightest: "-.4px",
|
|
195
|
-
// TODO: Other letter spacings are in EM and need to be
|
|
203
|
+
// TODO: Other letter spacings are in EM and need to be converted to px
|
|
196
204
|
},
|
|
197
205
|
},
|
|
198
206
|
},
|