@thecb/components 11.3.0 → 11.3.1

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "11.3.0",
3
+ "version": "11.3.1",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
package/src/.DS_Store ADDED
Binary file
Binary file
Binary file
@@ -62,6 +62,7 @@ const ROYAL_BLUE_VIVID = "#3B5BDB";
62
62
  const ASTRAL_BLUE = "#3176AA";
63
63
  const SAPPHIRE_BLUE = "#116285";
64
64
  const PEACOCK_BLUE = "#0E506D";
65
+ const HAWKES_BLUE = "#D9D9FB";
65
66
  // GREEN
66
67
  const FOREST_GREEN = "#19b03F";
67
68
  const MEADOW_GREEN = "#16C98D";
@@ -88,6 +89,9 @@ const RASPBERRY = "#ED125F";
88
89
  const FANTASY_RED = "#FCF4F4";
89
90
  const COSMOS_RED = "#FFD0D3";
90
91
  const BLUSH_RED = "#FFF0F5";
92
+ // PURPLE
93
+ const LUCKY_POINT = "#281978";
94
+ const LUCKY_POINT_DARK = "#201460";
91
95
 
92
96
  // Second level color constants
93
97
  const ERROR_COLOR = RAZZMATAZZ_RED;
@@ -200,6 +204,7 @@ export {
200
204
  ASTRAL_BLUE,
201
205
  SAPPHIRE_BLUE,
202
206
  PEACOCK_BLUE,
207
+ HAWKES_BLUE,
203
208
  FOREST_GREEN,
204
209
  MEADOW_GREEN,
205
210
  POLAR_GREEN,
@@ -225,5 +230,7 @@ export {
225
230
  ALERT_COLORS,
226
231
  PILL_COLORS,
227
232
  ERROR_COLOR,
228
- ERROR_BACKGROUND_COLOR
233
+ ERROR_BACKGROUND_COLOR,
234
+ LUCKY_POINT,
235
+ LUCKY_POINT_DARK
229
236
  };