loyalty-protocol 1.0.31 → 1.0.33

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/config.cjs CHANGED
@@ -33,7 +33,8 @@ var init_ht_kstore_india = __esm({
33
33
  currency: {
34
34
  name: "GO Coin",
35
35
  logo: "https://images.rawpixel.com/image_png_800/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA0L3YxMTYxLWItMDQ0LnBuZw.png"
36
- }
36
+ },
37
+ showHeader: false
37
38
  };
38
39
  }
39
40
  });
package/dist/config.js CHANGED
@@ -32,7 +32,8 @@ var init_ht_kstore_india = __esm({
32
32
  currency: {
33
33
  name: "GO Coin",
34
34
  logo: "https://images.rawpixel.com/image_png_800/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA0L3YxMTYxLWItMDQ0LnBuZw.png"
35
- }
35
+ },
36
+ showHeader: false
36
37
  };
37
38
  }
38
39
  });
package/dist/theme.css CHANGED
@@ -1,44 +1,64 @@
1
1
  [data-theme="light"] {
2
- --primary-color: 140, 255, 5;
3
- --secondary-color: 31, 51, 56;
4
- --background-color: 65, 95, 102;
5
- --tertiary-color: 134, 166, 166;
6
- --text-color: 219, 237, 241;
7
- --accent-text-color: 190, 220, 218;
2
+ --primary-color-base: 140, 255, 5; /* #8cff05 */
3
+ --secondary-color-base: 31, 51, 56 /* #1f3338 */;
4
+ --background-color-base: 65, 95, 102 /* #415f66 */;
5
+ --tertiary-color-base: 134, 166, 166 /* #86a6a6 */;
6
+ --text-color-base: 219, 237, 241; /* #dbedf1 */
7
+ --accent-text-color-base: 190, 220, 218; /* #bedcda */
8
+
9
+ --error-color-base: 255, 115, 115; /* #ff7373 */
10
+ --white: 255, 255, 255; /* #ffffff */
11
+ --black: 0, 0, 0; /* #000000 */
8
12
  }
9
13
 
10
14
  [data-theme="dark"] {
11
- --primary-color: 140, 255, 5;
12
- --secondary-color: 31, 51, 56;
13
- --background-color: 65, 95, 102;
14
- --tertiary-color: 134, 166, 166;
15
- --text-color: 219, 237, 241;
16
- --accent-text-color: 190, 220, 218;
15
+ --primary-color-base: 140, 255, 5; /* #8cff05 */
16
+ --secondary-color-base: 31, 51, 56; /* #1f3338 */
17
+ --background-color-base: 65, 95, 102; /* #415f66 */
18
+ --tertiary-color-base: 134, 166, 166; /* #86a6a6 */
19
+ --text-color-base: 219, 237, 241; /* #dbedf1 */
20
+ --accent-text-color-base: 190, 220, 218; /* #bedcda */
21
+
22
+ --error-color-base: 255, 115, 115; /* #ff7373 */
23
+ --white: 255, 255, 255; /* #ffffff */
24
+ --black: 0, 0, 0; /* #000000 */
17
25
  }
18
26
 
19
27
  [data-theme="kgen"] {
20
- --primary-color: 140, 255, 5;
21
- --secondary-color: 31, 51, 56;
22
- --background-color: 65, 95, 102;
23
- --tertiary-color: 134, 166, 166;
24
- --text-color: 219, 237, 241;
25
- --accent-text-color: 190, 220, 218;
28
+ --primary-color-base: 140, 255, 5; /* #8cff05 */
29
+ --secondary-color-base: 31, 51, 56; /* #1f3338 */
30
+ --background-color-base: 65, 95, 102; /* #415f66 */
31
+ --tertiary-color-base: 134, 166, 166; /* #86a6a6 */
32
+ --text-color-base: 219, 237, 241; /* #dbedf1 */
33
+ --accent-text-color-base: 190, 220, 218; /* #bedcda */
34
+
35
+ --error-color-base: 255, 115, 115; /* #ff7373 */
36
+ --white: 255, 255, 255; /* #ffffff */
37
+ --black: 0, 0, 0; /* #000000 */
26
38
  }
27
39
 
28
40
  [data-theme="ht-kstore-india"] {
29
- --primary-color: 0, 157, 182;
30
- --secondary-color: 255, 255, 255;
31
- --background-color: 31, 51, 56;
32
- --tertiary-color: 220, 218, 218;
33
- --text-color: 0, 0, 0;
34
- --accent-text-color: 68, 68, 68;
41
+ --primary-color-base: 0, 157, 182; /* #009db6 */
42
+ --secondary-color-base: 255, 255, 255; /* #ffffff */
43
+ --background-color-base: 31, 51, 56; /* #1f3338 */
44
+ --tertiary-color-base: 220, 218, 218; /* #dcdada */
45
+ --text-color-base: 0, 0, 0; /* #000000 */
46
+ --accent-text-color-base: 68, 68, 68; /* #444444 */
47
+
48
+ --error-color-base: 255, 115, 115; /* #ff7373 */
49
+ --white: 255, 255, 255; /* #ffffff */
50
+ --black: 0, 0, 0; /* #000000 */
35
51
  }
36
52
 
37
53
  [data-theme="indian-express"] {
38
- --primary-color: 255, 157, 182;
39
- --secondary-color: 255, 255, 255;
40
- --background-color: 31, 51, 56;
41
- --tertiary-color: 220, 218, 218;
42
- --text-color: 0, 0, 0;
43
- --accent-text-color: 68, 68, 68;
54
+ --primary-color-base: 255, 157, 182; /* #ff9db6 */
55
+ --secondary-color-base: 255, 255, 255; /* #ffffff */
56
+ --background-color-base: 31, 51, 56; /* #1f3338 */
57
+ --tertiary-color-base: 220, 218, 218; /* #dcdada */
58
+ --text-color-base: 0, 0, 0; /* #000000 */
59
+ --accent-text-color-base: 68, 68, 68; /* #444444 */
60
+
61
+ --error-color-base: 255, 115, 115; /* #ff7373 */
62
+ --white: 255, 255, 255; /* #ffffff */
63
+ --black: 0, 0, 0; /* #000000 */
44
64
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "loyalty-protocol",
3
- "version": "1.0.31",
3
+ "version": "1.0.33",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "exports": {