@timardex/cluemart-shared 1.5.568 → 1.5.569
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/dist/{chunk-SSPELWAQ.mjs → chunk-J7JHBSR7.mjs} +14 -10
- package/dist/chunk-J7JHBSR7.mjs.map +1 -0
- package/dist/hooks/index.mjs +1 -1
- package/dist/index.cjs +13 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +13 -9
- package/dist/index.mjs.map +1 -1
- package/dist/theme/index.cjs +13 -9
- package/dist/theme/index.cjs.map +1 -1
- package/dist/theme/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-SSPELWAQ.mjs.map +0 -1
package/dist/index.mjs
CHANGED
|
@@ -8379,22 +8379,26 @@ var SAVED_REFRESH_TOKEN_KEY = "savedRefreshToken";
|
|
|
8379
8379
|
var USER_STORAGE_KEY = "authUser";
|
|
8380
8380
|
|
|
8381
8381
|
// src/theme/index.ts
|
|
8382
|
+
var primaryColor = "#ff7a00";
|
|
8383
|
+
var secondaryColor = "#371134";
|
|
8384
|
+
var tertiaryColor = "#191a75";
|
|
8385
|
+
var quaternaryColor = "#3b7c67";
|
|
8382
8386
|
var darkColors = {
|
|
8383
8387
|
background: "#3D3D3F",
|
|
8384
8388
|
card: "#1c1c1e",
|
|
8385
|
-
primary: "#
|
|
8386
|
-
quaternary:
|
|
8387
|
-
secondary:
|
|
8388
|
-
tertiary:
|
|
8389
|
-
textMuted: "#
|
|
8389
|
+
primary: "#ff7a00",
|
|
8390
|
+
quaternary: quaternaryColor,
|
|
8391
|
+
secondary: secondaryColor,
|
|
8392
|
+
tertiary: tertiaryColor,
|
|
8393
|
+
textMuted: "#8e8e93"
|
|
8390
8394
|
};
|
|
8391
8395
|
var lightColors = {
|
|
8392
8396
|
background: "#ffffff",
|
|
8393
8397
|
card: "#f1f2f6",
|
|
8394
|
-
primary:
|
|
8395
|
-
quaternary:
|
|
8396
|
-
secondary:
|
|
8397
|
-
tertiary:
|
|
8398
|
+
primary: primaryColor,
|
|
8399
|
+
quaternary: quaternaryColor,
|
|
8400
|
+
secondary: secondaryColor,
|
|
8401
|
+
tertiary: tertiaryColor,
|
|
8398
8402
|
textMuted: "#6c757d"
|
|
8399
8403
|
};
|
|
8400
8404
|
var fonts = {
|