@agorapulse/ui-theme 15.0.14 → 15.0.16
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/agorapulse-ui-theme-15.0.16.tgz +0 -0
- package/assets/desktop_variables.css +3 -5
- package/assets/mobile_variables.css +3 -5
- package/package.json +1 -1
- package/src/desktop_config.js +3 -0
- package/src/mobile_config.js +3 -0
- package/src/tokens/reference/color.json +4 -0
- package/src/tokens/reference/font.json +10 -8
- package/agorapulse-ui-theme-15.0.14.tgz +0 -0
|
Binary file
|
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Do not edit directly
|
|
3
|
-
* Generated on Wed, 21 Jun 2023 16:39:54 GMT
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
1
|
:root {
|
|
7
2
|
--ref-border-radius-sm: 4px;
|
|
8
3
|
--ref-border-radius-md: 6px;
|
|
@@ -99,6 +94,9 @@
|
|
|
99
94
|
--ref-color-tiktok-blue-100: #25F4EE;
|
|
100
95
|
--ref-color-tiktok-red-10: #fee9ee;
|
|
101
96
|
--ref-color-tiktok-red-100: #FE2C55;
|
|
97
|
+
--ref-color-pinterest-10: #fee5e5;
|
|
98
|
+
--ref-color-pinterest-100: #E60023;
|
|
99
|
+
--ref-font-family: Averta;
|
|
102
100
|
--ref-font-size-xs: 12px;
|
|
103
101
|
--ref-font-size-sm: 14px;
|
|
104
102
|
--ref-font-size-md: 16px;
|
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Do not edit directly
|
|
3
|
-
* Generated on Wed, 21 Jun 2023 16:39:54 GMT
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
1
|
:root {
|
|
7
2
|
--ref-border-radius-sm: 4px;
|
|
8
3
|
--ref-border-radius-md: 6px;
|
|
@@ -99,6 +94,9 @@
|
|
|
99
94
|
--ref-color-tiktok-blue-100: #25F4EE;
|
|
100
95
|
--ref-color-tiktok-red-10: #fee9ee;
|
|
101
96
|
--ref-color-tiktok-red-100: #FE2C55;
|
|
97
|
+
--ref-color-pinterest-10: #fee5e5;
|
|
98
|
+
--ref-color-pinterest-100: #E60023;
|
|
99
|
+
--ref-font-family: Averta;
|
|
102
100
|
--ref-font-size-xs: 12px;
|
|
103
101
|
--ref-font-size-sm: 14px;
|
|
104
102
|
--ref-font-size-md: 16px;
|
package/package.json
CHANGED
package/src/desktop_config.js
CHANGED
package/src/mobile_config.js
CHANGED
|
@@ -1,27 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"ref": {
|
|
3
3
|
"font": {
|
|
4
|
-
"family":
|
|
4
|
+
"family": {
|
|
5
|
+
"value": "Averta"
|
|
6
|
+
},
|
|
5
7
|
"size": {
|
|
6
|
-
"xs"
|
|
8
|
+
"xs": {
|
|
7
9
|
"value": "12px"
|
|
8
10
|
},
|
|
9
|
-
"sm"
|
|
11
|
+
"sm": {
|
|
10
12
|
"value": "14px"
|
|
11
13
|
},
|
|
12
|
-
"md"
|
|
14
|
+
"md": {
|
|
13
15
|
"value": "16px"
|
|
14
16
|
},
|
|
15
|
-
"lg"
|
|
17
|
+
"lg": {
|
|
16
18
|
"value": "18px"
|
|
17
19
|
},
|
|
18
|
-
"xl"
|
|
20
|
+
"xl": {
|
|
19
21
|
"value": "20px"
|
|
20
22
|
},
|
|
21
|
-
"xxl"
|
|
23
|
+
"xxl": {
|
|
22
24
|
"value": "24px"
|
|
23
25
|
},
|
|
24
|
-
"xxxl"
|
|
26
|
+
"xxxl": {
|
|
25
27
|
"value": "28px"
|
|
26
28
|
}
|
|
27
29
|
},
|
|
Binary file
|