loyalty-protocol 1.0.31 → 1.0.32
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 +2 -1
- package/dist/config.js +2 -1
- package/dist/theme.css +35 -30
- package/package.json +1 -1
package/dist/config.cjs
CHANGED
package/dist/config.js
CHANGED
package/dist/theme.css
CHANGED
|
@@ -1,44 +1,49 @@
|
|
|
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
|
+
--error-color-base: 255, 115, 115; /* #ff7373 */
|
|
8
9
|
}
|
|
9
10
|
|
|
10
11
|
[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;
|
|
12
|
+
--primary-color-base: 140, 255, 5; /* #8cff05 */
|
|
13
|
+
--secondary-color-base: 31, 51, 56; /* #1f3338 */
|
|
14
|
+
--background-color-base: 65, 95, 102; /* #415f66 */
|
|
15
|
+
--tertiary-color-base: 134, 166, 166; /* #86a6a6 */
|
|
16
|
+
--text-color-base: 219, 237, 241; /* #dbedf1 */
|
|
17
|
+
--accent-text-color-base: 190, 220, 218; /* #bedcda */
|
|
18
|
+
--error-color-base: 255, 115, 115; /* #ff7373 */
|
|
17
19
|
}
|
|
18
20
|
|
|
19
21
|
[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;
|
|
22
|
+
--primary-color-base: 140, 255, 5; /* #8cff05 */
|
|
23
|
+
--secondary-color-base: 31, 51, 56; /* #1f3338 */
|
|
24
|
+
--background-color-base: 65, 95, 102; /* #415f66 */
|
|
25
|
+
--tertiary-color-base: 134, 166, 166; /* #86a6a6 */
|
|
26
|
+
--text-color-base: 219, 237, 241; /* #dbedf1 */
|
|
27
|
+
--accent-text-color-base: 190, 220, 218; /* #bedcda */
|
|
28
|
+
--error-color-base: 255, 115, 115; /* #ff7373 */
|
|
26
29
|
}
|
|
27
30
|
|
|
28
31
|
[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;
|
|
32
|
+
--primary-color-base: 0, 157, 182; /* #009db6 */
|
|
33
|
+
--secondary-color-base: 255, 255, 255; /* #ffffff */
|
|
34
|
+
--background-color-base: 31, 51, 56; /* #1f3338 */
|
|
35
|
+
--tertiary-color-base: 220, 218, 218; /* #dcdada */
|
|
36
|
+
--text-color-base: 0, 0, 0; /* #000000 */
|
|
37
|
+
--accent-text-color-base: 68, 68, 68; /* #444444 */
|
|
38
|
+
--error-color-base: 255, 115, 115; /* #ff7373 */
|
|
35
39
|
}
|
|
36
40
|
|
|
37
41
|
[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;
|
|
42
|
+
--primary-color-base: 255, 157, 182; /* #ff9db6 */
|
|
43
|
+
--secondary-color-base: 255, 255, 255; /* #ffffff */
|
|
44
|
+
--background-color-base: 31, 51, 56; /* #1f3338 */
|
|
45
|
+
--tertiary-color-base: 220, 218, 218; /* #dcdada */
|
|
46
|
+
--text-color-base: 0, 0, 0; /* #000000 */
|
|
47
|
+
--accent-text-color-base: 68, 68, 68; /* #444444 */
|
|
48
|
+
--error-color-base: 255, 115, 115; /* #ff7373 */
|
|
44
49
|
}
|