vite-plugin-react-deck 1.1.1 → 1.1.2

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/index.cjs CHANGED
@@ -206,7 +206,8 @@ __export(green_exports, {
206
206
  var colors = {
207
207
  primary: "#FFFFFF",
208
208
  secondary: "#F49676",
209
- tertiary: "#042F3B"
209
+ tertiary: "#042F3B",
210
+ fontFamily: 'Bitter,"Helvetica Neue",Helvetica,Arial,sans-serif'
210
211
  };
211
212
  var themeTokens = {
212
213
  colors
package/index.mjs CHANGED
@@ -185,7 +185,8 @@ __export(green_exports, {
185
185
  var colors = {
186
186
  primary: "#FFFFFF",
187
187
  secondary: "#F49676",
188
- tertiary: "#042F3B"
188
+ tertiary: "#042F3B",
189
+ fontFamily: 'Bitter,"Helvetica Neue",Helvetica,Arial,sans-serif'
189
190
  };
190
191
  var themeTokens = {
191
192
  colors
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite-plugin-react-deck",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "index.cjs",
package/themes/green.d.ts CHANGED
@@ -3,5 +3,6 @@ export declare const themeTokens: {
3
3
  primary: string;
4
4
  secondary: string;
5
5
  tertiary: string;
6
+ fontFamily: string;
6
7
  };
7
8
  };