@kiva/kv-tokens 2.4.1 → 2.5.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/CHANGELOG.md +11 -0
- package/configs/tailwind.config.cjs +4 -0
- package/package.json +2 -2
- package/primitives.json +28 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [2.5.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@2.4.1...@kiva/kv-tokens@2.5.0) (2023-04-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **@kiva/kv-tokens:** add Ecosystem palette as static colors ([6ab154c](https://github.com/kiva/kv-ui-elements/commit/6ab154c36d0b890c7345c1ba3b6bdb86d0771364))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [2.4.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@2.4.0...@kiva/kv-tokens@2.4.1) (2022-12-07)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -42,6 +42,10 @@ module.exports = {
|
|
|
42
42
|
black: colors.black,
|
|
43
43
|
white: colors.white,
|
|
44
44
|
brand: colors.brand,
|
|
45
|
+
'eco-green': colors['eco-green'],
|
|
46
|
+
marigold: colors.marigold,
|
|
47
|
+
'desert-rose': colors['desert-rose'],
|
|
48
|
+
stone: colors.stone,
|
|
45
49
|
// themable colors are defined in the 'extend' section as custom properties
|
|
46
50
|
},
|
|
47
51
|
spacing: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-tokens",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -14,5 +14,5 @@
|
|
|
14
14
|
"@tailwindcss/typography": "^0.5.1",
|
|
15
15
|
"tailwindcss": "^3.0.18"
|
|
16
16
|
},
|
|
17
|
-
"gitHead": "
|
|
17
|
+
"gitHead": "4c0fd566bb167fb765adf4bd92dccb4bb0814059"
|
|
18
18
|
}
|
package/primitives.json
CHANGED
|
@@ -29,6 +29,34 @@
|
|
|
29
29
|
"100": "#EAF6F0",
|
|
30
30
|
"50": "#F4FBF7"
|
|
31
31
|
},
|
|
32
|
+
"eco-green": {
|
|
33
|
+
"1": "#EDF4F1",
|
|
34
|
+
"2": "#78C79F",
|
|
35
|
+
"DEFAULT": "#2AA967",
|
|
36
|
+
"3": "#276A43",
|
|
37
|
+
"4": "#223829"
|
|
38
|
+
},
|
|
39
|
+
"marigold": {
|
|
40
|
+
"1": "#F8F2E6",
|
|
41
|
+
"2": "#F8CD69",
|
|
42
|
+
"DEFAULT": "#F4B539",
|
|
43
|
+
"3": "#AF741C",
|
|
44
|
+
"4": "#593207"
|
|
45
|
+
},
|
|
46
|
+
"desert-rose": {
|
|
47
|
+
"1": "#F9F0EF",
|
|
48
|
+
"2": "#E0988D",
|
|
49
|
+
"DEFAULT": "#C45F4F",
|
|
50
|
+
"3": "#A24536",
|
|
51
|
+
"4": "#5C2A22"
|
|
52
|
+
},
|
|
53
|
+
"stone": {
|
|
54
|
+
"1": "#F3F1EF",
|
|
55
|
+
"2": "#AA9E8D",
|
|
56
|
+
"DEFAULT": "#DFD0BC",
|
|
57
|
+
"3": "#726554",
|
|
58
|
+
"4": "#2E271E"
|
|
59
|
+
},
|
|
32
60
|
"theme": {
|
|
33
61
|
"DEFAULT": {
|
|
34
62
|
"text": {
|