@sage/design-tokens 2.64.0 → 2.65.0
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/android/base.xml +4 -2
- package/android/dashboard/darkMode.xml +11 -0
- package/android/dashboard/lightMode.xml +11 -0
- package/android/origin.xml +108 -97
- package/css/base.css +4 -2
- package/css/dashboard/darkMode.css +13 -0
- package/css/dashboard/lightMode.css +13 -0
- package/css/origin.css +108 -97
- package/data/tokens.json +1125 -132
- package/docs/tokens/base/border-radius/index.html +41 -20
- package/docs/tokens/base/border-width/index.html +2 -2
- package/docs/tokens/base/box-shadow/index.html +2 -2
- package/docs/tokens/base/colors/index.html +23 -2
- package/docs/tokens/base/font-families/index.html +2 -2
- package/docs/tokens/base/font-sizes/index.html +2 -2
- package/docs/tokens/base/font-weights/index.html +2 -2
- package/docs/tokens/base/index.html +62 -20
- package/docs/tokens/base/line-heights/index.html +2 -2
- package/docs/tokens/base/opacity/index.html +2 -2
- package/docs/tokens/base/sizing/index.html +2 -2
- package/docs/tokens/base/spacing/index.html +2 -2
- package/docs/tokens/base/typography/index.html +2 -2
- package/docs/tokens/index.html +812 -539
- package/docs/tokens/origin/index.html +750 -519
- package/docs/tokens/origin/{colors → origin-colors-reference-only}/index.html +751 -520
- package/index.js +4 -0
- package/ios/base.h +4 -2
- package/ios/dashboard/darkMode.h +15 -0
- package/ios/dashboard/lightMode.h +15 -0
- package/ios/origin.h +108 -97
- package/js/base/common.d.ts +3 -1
- package/js/base/common.js +4 -2
- package/js/base/es6.d.ts +3 -1
- package/js/base/es6.js +3 -1
- package/js/dashboard/darkMode/common.d.ts +2 -0
- package/js/dashboard/darkMode/common.js +13 -0
- package/js/dashboard/darkMode/es6.d.ts +5 -0
- package/js/dashboard/darkMode/es6.js +8 -0
- package/js/dashboard/lightMode/common.d.ts +2 -0
- package/js/dashboard/lightMode/common.js +13 -0
- package/js/dashboard/lightMode/es6.d.ts +5 -0
- package/js/dashboard/lightMode/es6.js +8 -0
- package/js/origin/common.d.ts +107 -96
- package/js/origin/common.js +108 -97
- package/js/origin/es6.d.ts +107 -96
- package/js/origin/es6.js +107 -96
- package/package.json +1 -1
- package/sage-design-tokens-2.65.0.tgz +0 -0
- package/scss/base.scss +4 -2
- package/scss/dashboard/darkMode.scss +10 -0
- package/scss/dashboard/lightMode.scss +10 -0
- package/scss/origin.scss +108 -97
- package/sage-design-tokens-2.64.0.tgz +0 -0
package/android/base.xml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<!--
|
|
4
4
|
Do not edit directly
|
|
5
|
-
Generated on Wed,
|
|
5
|
+
Generated on Wed, 21 Dec 2022 15:17:51 GMT
|
|
6
6
|
-->
|
|
7
7
|
<resources>
|
|
8
8
|
<string name="metaName">Base Theme</string>
|
|
@@ -222,6 +222,7 @@
|
|
|
222
222
|
<string name="colorsComponentsMenuYin090">#000000e6</string>
|
|
223
223
|
<string name="colorsComponentsMenuYang100">#ffffffff</string>
|
|
224
224
|
<string name="colorsComponentsMenuYang080">#ffffffcc</string>
|
|
225
|
+
<string name="colorsComponentsMenuYang030">#ffffff4d</string>
|
|
225
226
|
<string name="colorsComponentsMenuTransparent">#00000000</string>
|
|
226
227
|
<string name="sizing100">8px</string>
|
|
227
228
|
<string name="sizing125">10px</string>
|
|
@@ -317,9 +318,10 @@
|
|
|
317
318
|
<string name="borderRadius200">16px</string>
|
|
318
319
|
<string name="borderRadius400">32px</string>
|
|
319
320
|
<string name="borderRadiusCircle">50%</string>
|
|
321
|
+
<string name="borderRadius000">0px</string>
|
|
322
|
+
<string name="borderRadius010">1px</string>
|
|
320
323
|
<string name="borderRadius025">2px</string>
|
|
321
324
|
<string name="borderRadius050">4px</string>
|
|
322
|
-
<string name="borderRadius000">0px</string>
|
|
323
325
|
<string name="typographyAccordionTitleM">Medium 20px/125% Sage UI</string>
|
|
324
326
|
<string name="typographyAccordionTitleS">Medium 16px/125% Sage UI</string>
|
|
325
327
|
<string name="typographyAccordionSubtitleM">Regular 14px/150% Sage UI</string>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
|
|
3
|
+
<!--
|
|
4
|
+
Do not edit directly
|
|
5
|
+
Generated on Wed, 21 Dec 2022 15:17:51 GMT
|
|
6
|
+
-->
|
|
7
|
+
<resources>
|
|
8
|
+
<string name="metaName">Dashboard Dark-Mode Token Set</string>
|
|
9
|
+
<string name="metaPublic">true</string>
|
|
10
|
+
|
|
11
|
+
</resources>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
|
|
3
|
+
<!--
|
|
4
|
+
Do not edit directly
|
|
5
|
+
Generated on Wed, 21 Dec 2022 15:17:51 GMT
|
|
6
|
+
-->
|
|
7
|
+
<resources>
|
|
8
|
+
<string name="metaName">Dashboard Light-Mode Token Set</string>
|
|
9
|
+
<string name="metaPublic">true</string>
|
|
10
|
+
|
|
11
|
+
</resources>
|
package/android/origin.xml
CHANGED
|
@@ -2,106 +2,117 @@
|
|
|
2
2
|
|
|
3
3
|
<!--
|
|
4
4
|
Do not edit directly
|
|
5
|
-
Generated on Wed,
|
|
5
|
+
Generated on Wed, 21 Dec 2022 15:17:51 GMT
|
|
6
6
|
-->
|
|
7
7
|
<resources>
|
|
8
8
|
<string name="metaName">Origin Token Set</string>
|
|
9
9
|
<string name="metaPublic">true</string>
|
|
10
|
-
<string name="
|
|
11
|
-
<string name="
|
|
12
|
-
<string name="
|
|
13
|
-
<string name="
|
|
14
|
-
<string name="
|
|
15
|
-
<string name="
|
|
16
|
-
<string name="
|
|
17
|
-
<string name="
|
|
18
|
-
<string name="
|
|
19
|
-
<string name="
|
|
20
|
-
<string name="
|
|
21
|
-
<string name="
|
|
22
|
-
<string name="
|
|
23
|
-
<string name="
|
|
24
|
-
<string name="
|
|
25
|
-
<string name="
|
|
26
|
-
<string name="
|
|
27
|
-
<string name="
|
|
28
|
-
<string name="
|
|
29
|
-
<string name="
|
|
30
|
-
<string name="
|
|
31
|
-
<string name="
|
|
32
|
-
<string name="
|
|
33
|
-
<string name="
|
|
34
|
-
<string name="
|
|
35
|
-
<string name="
|
|
36
|
-
<string name="
|
|
37
|
-
<string name="
|
|
38
|
-
<string name="
|
|
39
|
-
<string name="
|
|
40
|
-
<string name="
|
|
41
|
-
<string name="
|
|
42
|
-
<string name="
|
|
43
|
-
<string name="
|
|
44
|
-
<string name="
|
|
45
|
-
<string name="
|
|
46
|
-
<string name="
|
|
47
|
-
<string name="
|
|
48
|
-
<string name="
|
|
49
|
-
<string name="
|
|
50
|
-
<string name="
|
|
51
|
-
<string name="
|
|
52
|
-
<string name="
|
|
53
|
-
<string name="
|
|
54
|
-
<string name="
|
|
55
|
-
<string name="
|
|
56
|
-
<string name="
|
|
57
|
-
<string name="
|
|
58
|
-
<string name="
|
|
59
|
-
<string name="
|
|
60
|
-
<string name="
|
|
61
|
-
<string name="
|
|
62
|
-
<string name="
|
|
63
|
-
<string name="
|
|
64
|
-
<string name="
|
|
65
|
-
<string name="
|
|
66
|
-
<string name="
|
|
67
|
-
<string name="
|
|
68
|
-
<string name="
|
|
69
|
-
<string name="
|
|
70
|
-
<string name="
|
|
71
|
-
<string name="
|
|
72
|
-
<string name="
|
|
73
|
-
<string name="
|
|
74
|
-
<string name="
|
|
75
|
-
<string name="
|
|
76
|
-
<string name="
|
|
77
|
-
<string name="
|
|
78
|
-
<string name="
|
|
79
|
-
<string name="
|
|
80
|
-
<string name="
|
|
81
|
-
<string name="
|
|
82
|
-
<string name="
|
|
83
|
-
<string name="
|
|
84
|
-
<string name="
|
|
85
|
-
<string name="
|
|
86
|
-
<string name="
|
|
87
|
-
<string name="
|
|
88
|
-
<string name="
|
|
89
|
-
<string name="
|
|
90
|
-
<string name="
|
|
91
|
-
<string name="
|
|
92
|
-
<string name="
|
|
93
|
-
<string name="
|
|
94
|
-
<string name="
|
|
95
|
-
<string name="
|
|
96
|
-
<string name="
|
|
97
|
-
<string name="
|
|
98
|
-
<string name="
|
|
99
|
-
<string name="
|
|
100
|
-
<string name="
|
|
101
|
-
<string name="
|
|
102
|
-
<string name="
|
|
103
|
-
<string name="
|
|
104
|
-
<string name="
|
|
105
|
-
<string name="
|
|
10
|
+
<string name="originColorsReferenceOnlyYin100">#000000ff</string>
|
|
11
|
+
<string name="originColorsReferenceOnlyYin010">#0000001a</string>
|
|
12
|
+
<string name="originColorsReferenceOnlyYin020">#00000033</string>
|
|
13
|
+
<string name="originColorsReferenceOnlyYin030">#0000004d</string>
|
|
14
|
+
<string name="originColorsReferenceOnlyYin055">#0000008c</string>
|
|
15
|
+
<string name="originColorsReferenceOnlyYin065">#000000a6</string>
|
|
16
|
+
<string name="originColorsReferenceOnlyYin075">#000000bf</string>
|
|
17
|
+
<string name="originColorsReferenceOnlyYin090">#000000e6</string>
|
|
18
|
+
<string name="originColorsReferenceOnlyYang100">#ffffffff</string>
|
|
19
|
+
<string name="originColorsReferenceOnlyYang030">#ffffff4d</string>
|
|
20
|
+
<string name="originColorsReferenceOnlyYang080">#ffffffcc</string>
|
|
21
|
+
<string name="originColorsReferenceOnlyMalachite100">#8df79fff</string>
|
|
22
|
+
<string name="originColorsReferenceOnlyMalachite200">#42eb64ff</string>
|
|
23
|
+
<string name="originColorsReferenceOnlyMalachite300">#00d639ff</string>
|
|
24
|
+
<string name="originColorsReferenceOnlyMalachite400">#00af2dff</string>
|
|
25
|
+
<string name="originColorsReferenceOnlyMalachite500">#008a21ff</string>
|
|
26
|
+
<string name="originColorsReferenceOnlyMalachite600">#006716ff</string>
|
|
27
|
+
<string name="originColorsReferenceOnlyMalachite700">#00460cff</string>
|
|
28
|
+
<string name="originColorsReferenceOnlyMalachite800">#002f08ff</string>
|
|
29
|
+
<string name="originColorsReferenceOnlyMalachite900">#001704ff</string>
|
|
30
|
+
<string name="originColorsReferenceOnlyMalachite010">#effcf0ff</string>
|
|
31
|
+
<string name="originColorsReferenceOnlyMalachite050">#c1fac7ff</string>
|
|
32
|
+
<string name="originColorsReferenceOnlyJade100">#8ff8b7ff</string>
|
|
33
|
+
<string name="originColorsReferenceOnlyJade200">#44ed90ff</string>
|
|
34
|
+
<string name="originColorsReferenceOnlyJade300">#00ca71ff</string>
|
|
35
|
+
<string name="originColorsReferenceOnlyJade400">#00a65cff</string>
|
|
36
|
+
<string name="originColorsReferenceOnlyJade500">#00884aff</string>
|
|
37
|
+
<string name="originColorsReferenceOnlyJade600">#006d3bff</string>
|
|
38
|
+
<string name="originColorsReferenceOnlyJade700">#00522cff</string>
|
|
39
|
+
<string name="originColorsReferenceOnlyJade800">#00361eff</string>
|
|
40
|
+
<string name="originColorsReferenceOnlyJade900">#001b0fff</string>
|
|
41
|
+
<string name="originColorsReferenceOnlyJade010">#f2fef7ff</string>
|
|
42
|
+
<string name="originColorsReferenceOnlyJade050">#c4fcd8ff</string>
|
|
43
|
+
<string name="originColorsReferenceOnlyNavy100">#89d7edff</string>
|
|
44
|
+
<string name="originColorsReferenceOnlyNavy200">#65bedfff</string>
|
|
45
|
+
<string name="originColorsReferenceOnlyNavy300">#41a5d1ff</string>
|
|
46
|
+
<string name="originColorsReferenceOnlyNavy400">#1d8cc3ff</string>
|
|
47
|
+
<string name="originColorsReferenceOnlyNavy500">#0e74a7ff</string>
|
|
48
|
+
<string name="originColorsReferenceOnlyNavy600">#095b84ff</string>
|
|
49
|
+
<string name="originColorsReferenceOnlyNavy700">#054262ff</string>
|
|
50
|
+
<string name="originColorsReferenceOnlyNavy800">#00293fff</string>
|
|
51
|
+
<string name="originColorsReferenceOnlyNavy900">#001520ff</string>
|
|
52
|
+
<string name="originColorsReferenceOnlyNavy010">#f4fcfeff</string>
|
|
53
|
+
<string name="originColorsReferenceOnlyNavy050">#caf1fcff</string>
|
|
54
|
+
<string name="originColorsReferenceOnlyTeal100">#89edeaff</string>
|
|
55
|
+
<string name="originColorsReferenceOnlyTeal200">#5bcfcdff</string>
|
|
56
|
+
<string name="originColorsReferenceOnlyTeal300">#2eb2b1ff</string>
|
|
57
|
+
<string name="originColorsReferenceOnlyTeal400">#009494ff</string>
|
|
58
|
+
<string name="originColorsReferenceOnlyTeal500">#007776ff</string>
|
|
59
|
+
<string name="originColorsReferenceOnlyTeal600">#006362ff</string>
|
|
60
|
+
<string name="originColorsReferenceOnlyTeal700">#004a4aff</string>
|
|
61
|
+
<string name="originColorsReferenceOnlyTeal800">#003231ff</string>
|
|
62
|
+
<string name="originColorsReferenceOnlyTeal900">#001919ff</string>
|
|
63
|
+
<string name="originColorsReferenceOnlyTeal010">#f4fefeff</string>
|
|
64
|
+
<string name="originColorsReferenceOnlyTeal050">#c3faf8ff</string>
|
|
65
|
+
<string name="originColorsReferenceOnlyAmber100">#ffe290ff</string>
|
|
66
|
+
<string name="originColorsReferenceOnlyAmber200">#f5ce55ff</string>
|
|
67
|
+
<string name="originColorsReferenceOnlyAmber300">#efab2fff</string>
|
|
68
|
+
<string name="originColorsReferenceOnlyAmber400">#e98709ff</string>
|
|
69
|
+
<string name="originColorsReferenceOnlyAmber500">#c15708ff</string>
|
|
70
|
+
<string name="originColorsReferenceOnlyAmber600">#9b4609ff</string>
|
|
71
|
+
<string name="originColorsReferenceOnlyAmber700">#75330aff</string>
|
|
72
|
+
<string name="originColorsReferenceOnlyAmber800">#4f220bff</string>
|
|
73
|
+
<string name="originColorsReferenceOnlyAmber900">#281106ff</string>
|
|
74
|
+
<string name="originColorsReferenceOnlyAmber010">#fffcefff</string>
|
|
75
|
+
<string name="originColorsReferenceOnlyAmber050">#fff0c3ff</string>
|
|
76
|
+
<string name="originColorsReferenceOnlyCherry100">#f7b3c2ff</string>
|
|
77
|
+
<string name="originColorsReferenceOnlyCherry200">#ed94aaff</string>
|
|
78
|
+
<string name="originColorsReferenceOnlyCherry300">#e27491ff</string>
|
|
79
|
+
<string name="originColorsReferenceOnlyCherry400">#d85579ff</string>
|
|
80
|
+
<string name="originColorsReferenceOnlyCherry500">#ba3c63ff</string>
|
|
81
|
+
<string name="originColorsReferenceOnlyCherry600">#95304fff</string>
|
|
82
|
+
<string name="originColorsReferenceOnlyCherry700">#70243bff</string>
|
|
83
|
+
<string name="originColorsReferenceOnlyCherry800">#4a1828ff</string>
|
|
84
|
+
<string name="originColorsReferenceOnlyCherry900">#250c14ff</string>
|
|
85
|
+
<string name="originColorsReferenceOnlyCherry010">#fef5f7ff</string>
|
|
86
|
+
<string name="originColorsReferenceOnlyCherry050">#fad4deff</string>
|
|
87
|
+
<string name="originColorsReferenceOnlyTerra100">#ffbca6ff</string>
|
|
88
|
+
<string name="originColorsReferenceOnlyTerra200">#f59a83ff</string>
|
|
89
|
+
<string name="originColorsReferenceOnlyTerra300">#ea7961ff</string>
|
|
90
|
+
<string name="originColorsReferenceOnlyTerra400">#e0583eff</string>
|
|
91
|
+
<string name="originColorsReferenceOnlyTerra500">#c94633ff</string>
|
|
92
|
+
<string name="originColorsReferenceOnlyTerra600">#a13829ff</string>
|
|
93
|
+
<string name="originColorsReferenceOnlyTerra700">#782a1eff</string>
|
|
94
|
+
<string name="originColorsReferenceOnlyTerra800">#501c14ff</string>
|
|
95
|
+
<string name="originColorsReferenceOnlyTerra900">#280e0aff</string>
|
|
96
|
+
<string name="originColorsReferenceOnlyTerra010">#fff7f5ff</string>
|
|
97
|
+
<string name="originColorsReferenceOnlyTerra050">#ffdcd1ff</string>
|
|
98
|
+
<string name="originColorsReferenceOnlyGray100">#e6e6e6ff</string>
|
|
99
|
+
<string name="originColorsReferenceOnlyGray200">#ccccccff</string>
|
|
100
|
+
<string name="originColorsReferenceOnlyGray300">#b3b3b3ff</string>
|
|
101
|
+
<string name="originColorsReferenceOnlyGray400">#999999ff</string>
|
|
102
|
+
<string name="originColorsReferenceOnlyGray500">#808080ff</string>
|
|
103
|
+
<string name="originColorsReferenceOnlyGray600">#666666ff</string>
|
|
104
|
+
<string name="originColorsReferenceOnlyGray700">#4d4d4dff</string>
|
|
105
|
+
<string name="originColorsReferenceOnlyGray800">#333333ff</string>
|
|
106
|
+
<string name="originColorsReferenceOnlyGray900">#191919ff</string>
|
|
107
|
+
<string name="originColorsReferenceOnlyGray1000">#000000ff</string>
|
|
108
|
+
<string name="originColorsReferenceOnlyGray000">#ffffffff</string>
|
|
109
|
+
<string name="originColorsReferenceOnlyGray010">#fcfcfcff</string>
|
|
110
|
+
<string name="originColorsReferenceOnlyGray050">#f2f2f2ff</string>
|
|
111
|
+
<string name="originColorsReferenceOnlySkin400">#ddb89eff</string>
|
|
112
|
+
<string name="originColorsReferenceOnlySkin500">#e84d4fff</string>
|
|
113
|
+
<string name="originColorsReferenceOnlySkin600">#b26e3dff</string>
|
|
114
|
+
<string name="originColorsReferenceOnlySkin700">#3a2417ff</string>
|
|
115
|
+
<string name="originColorsReferenceOnlyFuchsia400">#bf47c3ff</string>
|
|
116
|
+
<string name="originColorsReferenceOnlyFuchsia500">#b832bcff</string>
|
|
106
117
|
|
|
107
118
|
</resources>
|
package/css/base.css
CHANGED
|
@@ -4,7 +4,7 @@ Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved
|
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* Do not edit directly
|
|
7
|
-
* Generated on Wed,
|
|
7
|
+
* Generated on Wed, 21 Dec 2022 15:17:51 GMT
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
:root {
|
|
@@ -225,6 +225,7 @@ Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved
|
|
|
225
225
|
--colorsComponentsMenuYin090: #000000e6;
|
|
226
226
|
--colorsComponentsMenuYang100: #ffffffff;
|
|
227
227
|
--colorsComponentsMenuYang080: #ffffffcc;
|
|
228
|
+
--colorsComponentsMenuYang030: #ffffff4d;
|
|
228
229
|
--colorsComponentsMenuTransparent: #00000000;
|
|
229
230
|
--sizing100: 8px;
|
|
230
231
|
--sizing125: 10px;
|
|
@@ -320,9 +321,10 @@ Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved
|
|
|
320
321
|
--borderRadius200: 16px;
|
|
321
322
|
--borderRadius400: 32px;
|
|
322
323
|
--borderRadiusCircle: 50%;
|
|
324
|
+
--borderRadius000: 0px;
|
|
325
|
+
--borderRadius010: 1px;
|
|
323
326
|
--borderRadius025: 2px;
|
|
324
327
|
--borderRadius050: 4px;
|
|
325
|
-
--borderRadius000: 0px;
|
|
326
328
|
--typographyAccordionTitleM: 500 20px/125% Sage UI;
|
|
327
329
|
--typographyAccordionTitleS: 500 16px/125% Sage UI;
|
|
328
330
|
--typographyAccordionSubtitleM: 400 14px/150% Sage UI;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Do not edit directly
|
|
7
|
+
* Generated on Wed, 21 Dec 2022 15:17:51 GMT
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
:root {
|
|
11
|
+
--metaName: Dashboard Dark-Mode Token Set;
|
|
12
|
+
--metaPublic: true;
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Do not edit directly
|
|
7
|
+
* Generated on Wed, 21 Dec 2022 15:17:51 GMT
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
:root {
|
|
11
|
+
--metaName: Dashboard Light-Mode Token Set;
|
|
12
|
+
--metaPublic: true;
|
|
13
|
+
}
|
package/css/origin.css
CHANGED
|
@@ -4,106 +4,117 @@ Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved
|
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* Do not edit directly
|
|
7
|
-
* Generated on Wed,
|
|
7
|
+
* Generated on Wed, 21 Dec 2022 15:17:51 GMT
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
:root {
|
|
11
11
|
--metaName: Origin Token Set;
|
|
12
12
|
--metaPublic: true;
|
|
13
|
-
--
|
|
14
|
-
--
|
|
15
|
-
--
|
|
16
|
-
--
|
|
17
|
-
--
|
|
18
|
-
--
|
|
19
|
-
--
|
|
20
|
-
--
|
|
21
|
-
--
|
|
22
|
-
--
|
|
23
|
-
--
|
|
24
|
-
--
|
|
25
|
-
--
|
|
26
|
-
--
|
|
27
|
-
--
|
|
28
|
-
--
|
|
29
|
-
--
|
|
30
|
-
--
|
|
31
|
-
--
|
|
32
|
-
--
|
|
33
|
-
--
|
|
34
|
-
--
|
|
35
|
-
--
|
|
36
|
-
--
|
|
37
|
-
--
|
|
38
|
-
--
|
|
39
|
-
--
|
|
40
|
-
--
|
|
41
|
-
--
|
|
42
|
-
--
|
|
43
|
-
--
|
|
44
|
-
--
|
|
45
|
-
--
|
|
46
|
-
--
|
|
47
|
-
--
|
|
48
|
-
--
|
|
49
|
-
--
|
|
50
|
-
--
|
|
51
|
-
--
|
|
52
|
-
--
|
|
53
|
-
--
|
|
54
|
-
--
|
|
55
|
-
--
|
|
56
|
-
--
|
|
57
|
-
--
|
|
58
|
-
--
|
|
59
|
-
--
|
|
60
|
-
--
|
|
61
|
-
--
|
|
62
|
-
--
|
|
63
|
-
--
|
|
64
|
-
--
|
|
65
|
-
--
|
|
66
|
-
--
|
|
67
|
-
--
|
|
68
|
-
--
|
|
69
|
-
--
|
|
70
|
-
--
|
|
71
|
-
--
|
|
72
|
-
--
|
|
73
|
-
--
|
|
74
|
-
--
|
|
75
|
-
--
|
|
76
|
-
--
|
|
77
|
-
--
|
|
78
|
-
--
|
|
79
|
-
--
|
|
80
|
-
--
|
|
81
|
-
--
|
|
82
|
-
--
|
|
83
|
-
--
|
|
84
|
-
--
|
|
85
|
-
--
|
|
86
|
-
--
|
|
87
|
-
--
|
|
88
|
-
--
|
|
89
|
-
--
|
|
90
|
-
--
|
|
91
|
-
--
|
|
92
|
-
--
|
|
93
|
-
--
|
|
94
|
-
--
|
|
95
|
-
--
|
|
96
|
-
--
|
|
97
|
-
--
|
|
98
|
-
--
|
|
99
|
-
--
|
|
100
|
-
--
|
|
101
|
-
--
|
|
102
|
-
--
|
|
103
|
-
--
|
|
104
|
-
--
|
|
105
|
-
--
|
|
106
|
-
--
|
|
107
|
-
--
|
|
108
|
-
--
|
|
13
|
+
--originColorsReferenceOnlyYin100: #000000ff;
|
|
14
|
+
--originColorsReferenceOnlyYin010: #0000001a;
|
|
15
|
+
--originColorsReferenceOnlyYin020: #00000033;
|
|
16
|
+
--originColorsReferenceOnlyYin030: #0000004d;
|
|
17
|
+
--originColorsReferenceOnlyYin055: #0000008c;
|
|
18
|
+
--originColorsReferenceOnlyYin065: #000000a6;
|
|
19
|
+
--originColorsReferenceOnlyYin075: #000000bf;
|
|
20
|
+
--originColorsReferenceOnlyYin090: #000000e6;
|
|
21
|
+
--originColorsReferenceOnlyYang100: #ffffffff;
|
|
22
|
+
--originColorsReferenceOnlyYang030: #ffffff4d;
|
|
23
|
+
--originColorsReferenceOnlyYang080: #ffffffcc;
|
|
24
|
+
--originColorsReferenceOnlyMalachite100: #8df79fff;
|
|
25
|
+
--originColorsReferenceOnlyMalachite200: #42eb64ff;
|
|
26
|
+
--originColorsReferenceOnlyMalachite300: #00d639ff;
|
|
27
|
+
--originColorsReferenceOnlyMalachite400: #00af2dff;
|
|
28
|
+
--originColorsReferenceOnlyMalachite500: #008a21ff;
|
|
29
|
+
--originColorsReferenceOnlyMalachite600: #006716ff;
|
|
30
|
+
--originColorsReferenceOnlyMalachite700: #00460cff;
|
|
31
|
+
--originColorsReferenceOnlyMalachite800: #002f08ff;
|
|
32
|
+
--originColorsReferenceOnlyMalachite900: #001704ff;
|
|
33
|
+
--originColorsReferenceOnlyMalachite010: #effcf0ff;
|
|
34
|
+
--originColorsReferenceOnlyMalachite050: #c1fac7ff;
|
|
35
|
+
--originColorsReferenceOnlyJade100: #8ff8b7ff;
|
|
36
|
+
--originColorsReferenceOnlyJade200: #44ed90ff;
|
|
37
|
+
--originColorsReferenceOnlyJade300: #00ca71ff;
|
|
38
|
+
--originColorsReferenceOnlyJade400: #00a65cff;
|
|
39
|
+
--originColorsReferenceOnlyJade500: #00884aff;
|
|
40
|
+
--originColorsReferenceOnlyJade600: #006d3bff;
|
|
41
|
+
--originColorsReferenceOnlyJade700: #00522cff;
|
|
42
|
+
--originColorsReferenceOnlyJade800: #00361eff;
|
|
43
|
+
--originColorsReferenceOnlyJade900: #001b0fff;
|
|
44
|
+
--originColorsReferenceOnlyJade010: #f2fef7ff;
|
|
45
|
+
--originColorsReferenceOnlyJade050: #c4fcd8ff;
|
|
46
|
+
--originColorsReferenceOnlyNavy100: #89d7edff;
|
|
47
|
+
--originColorsReferenceOnlyNavy200: #65bedfff;
|
|
48
|
+
--originColorsReferenceOnlyNavy300: #41a5d1ff;
|
|
49
|
+
--originColorsReferenceOnlyNavy400: #1d8cc3ff;
|
|
50
|
+
--originColorsReferenceOnlyNavy500: #0e74a7ff;
|
|
51
|
+
--originColorsReferenceOnlyNavy600: #095b84ff;
|
|
52
|
+
--originColorsReferenceOnlyNavy700: #054262ff;
|
|
53
|
+
--originColorsReferenceOnlyNavy800: #00293fff;
|
|
54
|
+
--originColorsReferenceOnlyNavy900: #001520ff;
|
|
55
|
+
--originColorsReferenceOnlyNavy010: #f4fcfeff;
|
|
56
|
+
--originColorsReferenceOnlyNavy050: #caf1fcff;
|
|
57
|
+
--originColorsReferenceOnlyTeal100: #89edeaff;
|
|
58
|
+
--originColorsReferenceOnlyTeal200: #5bcfcdff;
|
|
59
|
+
--originColorsReferenceOnlyTeal300: #2eb2b1ff;
|
|
60
|
+
--originColorsReferenceOnlyTeal400: #009494ff;
|
|
61
|
+
--originColorsReferenceOnlyTeal500: #007776ff;
|
|
62
|
+
--originColorsReferenceOnlyTeal600: #006362ff;
|
|
63
|
+
--originColorsReferenceOnlyTeal700: #004a4aff;
|
|
64
|
+
--originColorsReferenceOnlyTeal800: #003231ff;
|
|
65
|
+
--originColorsReferenceOnlyTeal900: #001919ff;
|
|
66
|
+
--originColorsReferenceOnlyTeal010: #f4fefeff;
|
|
67
|
+
--originColorsReferenceOnlyTeal050: #c3faf8ff;
|
|
68
|
+
--originColorsReferenceOnlyAmber100: #ffe290ff;
|
|
69
|
+
--originColorsReferenceOnlyAmber200: #f5ce55ff;
|
|
70
|
+
--originColorsReferenceOnlyAmber300: #efab2fff;
|
|
71
|
+
--originColorsReferenceOnlyAmber400: #e98709ff;
|
|
72
|
+
--originColorsReferenceOnlyAmber500: #c15708ff;
|
|
73
|
+
--originColorsReferenceOnlyAmber600: #9b4609ff;
|
|
74
|
+
--originColorsReferenceOnlyAmber700: #75330aff;
|
|
75
|
+
--originColorsReferenceOnlyAmber800: #4f220bff;
|
|
76
|
+
--originColorsReferenceOnlyAmber900: #281106ff;
|
|
77
|
+
--originColorsReferenceOnlyAmber010: #fffcefff;
|
|
78
|
+
--originColorsReferenceOnlyAmber050: #fff0c3ff;
|
|
79
|
+
--originColorsReferenceOnlyCherry100: #f7b3c2ff;
|
|
80
|
+
--originColorsReferenceOnlyCherry200: #ed94aaff;
|
|
81
|
+
--originColorsReferenceOnlyCherry300: #e27491ff;
|
|
82
|
+
--originColorsReferenceOnlyCherry400: #d85579ff;
|
|
83
|
+
--originColorsReferenceOnlyCherry500: #ba3c63ff;
|
|
84
|
+
--originColorsReferenceOnlyCherry600: #95304fff;
|
|
85
|
+
--originColorsReferenceOnlyCherry700: #70243bff;
|
|
86
|
+
--originColorsReferenceOnlyCherry800: #4a1828ff;
|
|
87
|
+
--originColorsReferenceOnlyCherry900: #250c14ff;
|
|
88
|
+
--originColorsReferenceOnlyCherry010: #fef5f7ff;
|
|
89
|
+
--originColorsReferenceOnlyCherry050: #fad4deff;
|
|
90
|
+
--originColorsReferenceOnlyTerra100: #ffbca6ff;
|
|
91
|
+
--originColorsReferenceOnlyTerra200: #f59a83ff;
|
|
92
|
+
--originColorsReferenceOnlyTerra300: #ea7961ff;
|
|
93
|
+
--originColorsReferenceOnlyTerra400: #e0583eff;
|
|
94
|
+
--originColorsReferenceOnlyTerra500: #c94633ff;
|
|
95
|
+
--originColorsReferenceOnlyTerra600: #a13829ff;
|
|
96
|
+
--originColorsReferenceOnlyTerra700: #782a1eff;
|
|
97
|
+
--originColorsReferenceOnlyTerra800: #501c14ff;
|
|
98
|
+
--originColorsReferenceOnlyTerra900: #280e0aff;
|
|
99
|
+
--originColorsReferenceOnlyTerra010: #fff7f5ff;
|
|
100
|
+
--originColorsReferenceOnlyTerra050: #ffdcd1ff;
|
|
101
|
+
--originColorsReferenceOnlyGray100: #e6e6e6ff;
|
|
102
|
+
--originColorsReferenceOnlyGray200: #ccccccff;
|
|
103
|
+
--originColorsReferenceOnlyGray300: #b3b3b3ff;
|
|
104
|
+
--originColorsReferenceOnlyGray400: #999999ff;
|
|
105
|
+
--originColorsReferenceOnlyGray500: #808080ff;
|
|
106
|
+
--originColorsReferenceOnlyGray600: #666666ff;
|
|
107
|
+
--originColorsReferenceOnlyGray700: #4d4d4dff;
|
|
108
|
+
--originColorsReferenceOnlyGray800: #333333ff;
|
|
109
|
+
--originColorsReferenceOnlyGray900: #191919ff;
|
|
110
|
+
--originColorsReferenceOnlyGray1000: #000000ff;
|
|
111
|
+
--originColorsReferenceOnlyGray000: #ffffffff;
|
|
112
|
+
--originColorsReferenceOnlyGray010: #fcfcfcff;
|
|
113
|
+
--originColorsReferenceOnlyGray050: #f2f2f2ff;
|
|
114
|
+
--originColorsReferenceOnlySkin400: #ddb89eff;
|
|
115
|
+
--originColorsReferenceOnlySkin500: #e84d4fff;
|
|
116
|
+
--originColorsReferenceOnlySkin600: #b26e3dff;
|
|
117
|
+
--originColorsReferenceOnlySkin700: #3a2417ff;
|
|
118
|
+
--originColorsReferenceOnlyFuchsia400: #bf47c3ff;
|
|
119
|
+
--originColorsReferenceOnlyFuchsia500: #b832bcff;
|
|
109
120
|
}
|