@neovici/cosmoz-tokens 4.5.0 → 4.6.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/README.md +9 -9
- package/package.json +1 -1
- package/src/primitives.css +27 -13
package/README.md
CHANGED
|
@@ -110,15 +110,15 @@ document.documentElement.dataset.theme = 'dark';
|
|
|
110
110
|
|
|
111
111
|
### Colors (Primitives)
|
|
112
112
|
|
|
113
|
-
| Token | Description
|
|
114
|
-
| ----------------------------- |
|
|
115
|
-
| `--cz-color-brand-{25-950}` | Brand color scale (
|
|
116
|
-
| `--cz-color-gray-{25-950}` | Gray scale
|
|
117
|
-
| `--cz-color-error-{25-950}` | Error/danger colors
|
|
118
|
-
| `--cz-color-warning-{25-950}` | Warning colors
|
|
119
|
-
| `--cz-color-success-{25-950}` | Success colors
|
|
120
|
-
| `--cz-color-white` | Pure white
|
|
121
|
-
| `--cz-color-black` | Pure black
|
|
113
|
+
| Token | Description |
|
|
114
|
+
| ----------------------------- | ------------------------- |
|
|
115
|
+
| `--cz-color-brand-{25-950}` | Brand color scale (slate) |
|
|
116
|
+
| `--cz-color-gray-{25-950}` | Gray scale |
|
|
117
|
+
| `--cz-color-error-{25-950}` | Error/danger colors |
|
|
118
|
+
| `--cz-color-warning-{25-950}` | Warning colors |
|
|
119
|
+
| `--cz-color-success-{25-950}` | Success colors |
|
|
120
|
+
| `--cz-color-white` | Pure white |
|
|
121
|
+
| `--cz-color-black` | Pure black |
|
|
122
122
|
|
|
123
123
|
### Typography
|
|
124
124
|
|
package/package.json
CHANGED
package/src/primitives.css
CHANGED
|
@@ -27,19 +27,33 @@
|
|
|
27
27
|
--cz-danube-900: rgb(43 59 89);
|
|
28
28
|
--cz-danube-950: rgb(31 42 62);
|
|
29
29
|
|
|
30
|
-
/*
|
|
31
|
-
--cz-
|
|
32
|
-
--cz-
|
|
33
|
-
--cz-
|
|
34
|
-
--cz-
|
|
35
|
-
--cz-
|
|
36
|
-
--cz-
|
|
37
|
-
--cz-
|
|
38
|
-
--cz-
|
|
39
|
-
--cz-
|
|
40
|
-
--cz-
|
|
41
|
-
--cz-
|
|
42
|
-
--cz-
|
|
30
|
+
/* Slate colors */
|
|
31
|
+
--cz-slate-25: rgb(252 253 254);
|
|
32
|
+
--cz-slate-50: rgb(248 250 252);
|
|
33
|
+
--cz-slate-100: rgb(241 245 249);
|
|
34
|
+
--cz-slate-200: rgb(226 232 240);
|
|
35
|
+
--cz-slate-300: rgb(203 213 225);
|
|
36
|
+
--cz-slate-400: rgb(148 163 184);
|
|
37
|
+
--cz-slate-500: rgb(100 116 139);
|
|
38
|
+
--cz-slate-600: rgb(71 85 105);
|
|
39
|
+
--cz-slate-700: rgb(51 65 85);
|
|
40
|
+
--cz-slate-800: rgb(30 41 59);
|
|
41
|
+
--cz-slate-900: rgb(15 23 42);
|
|
42
|
+
--cz-slate-950: rgb(2 6 23);
|
|
43
|
+
|
|
44
|
+
/* Brand colors - Slate */
|
|
45
|
+
--cz-color-brand-25: var(--cz-slate-25);
|
|
46
|
+
--cz-color-brand-50: var(--cz-slate-50);
|
|
47
|
+
--cz-color-brand-100: var(--cz-slate-100);
|
|
48
|
+
--cz-color-brand-200: var(--cz-slate-200);
|
|
49
|
+
--cz-color-brand-300: var(--cz-slate-300);
|
|
50
|
+
--cz-color-brand-400: var(--cz-slate-400);
|
|
51
|
+
--cz-color-brand-500: var(--cz-slate-500);
|
|
52
|
+
--cz-color-brand-600: var(--cz-slate-600);
|
|
53
|
+
--cz-color-brand-700: var(--cz-slate-700);
|
|
54
|
+
--cz-color-brand-800: var(--cz-slate-800);
|
|
55
|
+
--cz-color-brand-900: var(--cz-slate-900);
|
|
56
|
+
--cz-color-brand-950: var(--cz-slate-950);
|
|
43
57
|
|
|
44
58
|
/* Gray colors */
|
|
45
59
|
--cz-color-gray-25: rgb(253 253 253);
|