@star-insure/sdk 5.0.1 → 5.0.3

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@star-insure/sdk",
3
3
  "description": "The SDK for Star Insure client apps with shared helper functions and TypeScript definitions.",
4
4
  "author": "alexclark_nz",
5
- "version": "5.0.1",
5
+ "version": "5.0.3",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
@@ -80,6 +80,15 @@ module.exports = {
80
80
  danger: 'rgb(var(--danger-color))',
81
81
  warning: 'rgb(var(--warning-color))',
82
82
  info: 'rgb(var(--info-color))',
83
+
84
+ // Product specific colours (these should never change with the theme)
85
+ enthusiast: 'hsl(22, 26%, 34%)',
86
+ everyday: 'hsl(225, 2%, 44%)',
87
+ starplus: '#df5e1f',
88
+ prestige: 'hsl(41, 27%, 43%)',
89
+ motorcycle: 'hsl(40, 97%, 54%)',
90
+ campercare: 'hsl(358, 78%, 51%)',
91
+ auctions: '#358CCB',
83
92
  },
84
93
  transitionDuration: {
85
94
  DEFAULT: '300ms',
package/src/theme.css CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  --accent-color: 132 197 182;
10
10
  --accent-100-color: 242 249 248;
11
- --acceent-300-color: 184 225 217;
11
+ --accent-300-color: 184 225 217;
12
12
  --accent-500-color: 132 197 182;
13
13
  --accent-700-color: 72 170 151;
14
14