@kiva/kv-tokens 2.2.0 → 2.4.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 CHANGED
@@ -3,6 +3,33 @@
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.4.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@2.3.0...@kiva/kv-tokens@2.4.0) (2022-09-24)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * background prop outside definition ([8c81466](https://github.com/kiva/kv-ui-elements/commit/8c81466aab36d35aa6211407bcbbd32bf5677543))
12
+
13
+
14
+ ### Features
15
+
16
+ * add dark mint theme ([269d6af](https://github.com/kiva/kv-ui-elements/commit/269d6af35a35bdcac8ca3c1c780bc62926072c8d))
17
+
18
+
19
+
20
+
21
+
22
+ # [2.3.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@2.2.0...@kiva/kv-tokens@2.3.0) (2022-09-21)
23
+
24
+
25
+ ### Features
26
+
27
+ * add additional border widths ([#208](https://github.com/kiva/kv-ui-elements/issues/208)) ([7f20a8f](https://github.com/kiva/kv-ui-elements/commit/7f20a8f6897c404370afda7d6dccf549993e2443))
28
+
29
+
30
+
31
+
32
+
6
33
  # [2.2.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@2.1.0...@kiva/kv-tokens@2.2.0) (2022-07-19)
7
34
 
8
35
 
@@ -6,6 +6,7 @@ const {
6
6
  dark: darkThemeTokens,
7
7
  'dark-green': darkGreenThemeTokens,
8
8
  mint: mintThemeTokens,
9
+ 'dark-mint': darkMintThemeTokens,
9
10
  } = designtokens.colors.theme;
10
11
 
11
12
  /**
@@ -34,6 +35,7 @@ const defaultTheme = buildCSSVarsFromTokens(defaultThemeTokens);
34
35
  const darkTheme = buildCSSVarsFromTokens(darkThemeTokens);
35
36
  const mintTheme = buildCSSVarsFromTokens(mintThemeTokens);
36
37
  const darkGreenTheme = buildCSSVarsFromTokens(darkGreenThemeTokens);
38
+ const darkMintTheme = buildCSSVarsFromTokens(darkMintThemeTokens);
37
39
 
38
40
  // function to allow background opacity and text opacity with tailwind colors
39
41
  // https://www.youtube.com/watch?v=MAtaT8BZEAo
@@ -84,4 +86,5 @@ module.exports = {
84
86
  darkTheme,
85
87
  darkGreenTheme,
86
88
  mintTheme,
89
+ darkMintTheme,
87
90
  };
@@ -79,8 +79,8 @@ module.exports = {
79
79
  DEFAULT: rem(borderWidths.default),
80
80
  0: '0px',
81
81
  2: '2px',
82
- // 4: '4px',
83
- // 8: '8px',
82
+ 4: '4px',
83
+ 8: '8px',
84
84
  },
85
85
  borderRadius: {
86
86
  none: '0px',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-tokens",
3
- "version": "2.2.0",
3
+ "version": "2.4.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": "408647638638310803b48e4a93cb2744e5ec4bce"
17
+ "gitHead": "d9663133794c9e0b22fc3b70d14852a8535824eb"
18
18
  }
package/primitives.json CHANGED
@@ -121,6 +121,15 @@
121
121
  "primary-inverse": "#F5F5F5",
122
122
  "secondary": "#228752"
123
123
  }
124
+ },
125
+ "dark-mint": {
126
+ "text": {
127
+ "primary": "#FFFFFF",
128
+ "action": "#95D4B3"
129
+ },
130
+ "background": {
131
+ "primary": "#454545"
132
+ }
124
133
  }
125
134
  }
126
135
  },