@aurodesignsystem/design-tokens 5.5.0 → 5.6.1
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/CHANGELOG.md +28 -0
- package/dist/CSSCustomProperties--bundled.css +805 -153
- package/dist/alaska/CSSCustomProperties--alaska.css +415 -88
- package/dist/alaska/JSONVariablesNested--alaska.json +636 -133
- package/dist/alaska/JSObject--allTokens.js +14129 -2689
- package/dist/alaska/SCSSVariables--alaska.scss +415 -88
- package/dist/alaska/SCSSVariablesMapFlat--alaska.scss +415 -88
- package/dist/alaska/primitives--alaska.scss +35 -34
- package/dist/auro-classic/CSSCustomProperties.css +1 -1
- package/dist/auro-classic/CSSSizeCustomProperties.css +1 -1
- package/dist/auro-classic/JSData--color.js +1 -1
- package/dist/auro-classic/JSObject--allTokens.js +1 -1
- package/dist/auro-classic/JSObject--deprecated.js +1 -1
- package/dist/auro-classic/JSVariables--color.js +1 -1
- package/dist/auro-classic/SCSSVariableMap.scss +1 -1
- package/dist/auro-classic/SCSSVariables.scss +1 -1
- package/dist/auro-classic/SCSSVariablesMapFlat.scss +1 -1
- package/dist/auro-classic/SassCustomProperties.scss +1 -1
- package/dist/auro-classic/SassSizeCustomProperties.scss +1 -1
- package/dist/hawaiian/CSSCustomProperties--hawaiian.css +391 -66
- package/dist/hawaiian/JSONVariablesNested--hawaiian.json +614 -93
- package/dist/hawaiian/JSObject--allTokens.js +13996 -2622
- package/dist/hawaiian/SCSSVariables--hawaiian.scss +391 -66
- package/dist/hawaiian/SCSSVariablesMapFlat--hawaiian.scss +392 -67
- package/dist/hawaiian/primitives--hawaiian.scss +25 -24
- package/dist/transparent/CSSCustomProperties--transparent.css +1 -1
- package/package.json +6 -6
- package/src/primitives/alaska/color.json +456 -456
- package/src/primitives/alaska/font.json +9 -9
- package/src/primitives/base/color.json +284 -284
- package/src/primitives/base/font.json +186 -175
- package/src/primitives/base/transparency.json +108 -108
- package/src/primitives/hawaiian/color.json +287 -287
- package/src/primitives/hawaiian/font.json +9 -9
- package/src/themes/alaska/advanced/accents.json +104 -0
- package/src/themes/alaska/advanced/boolean.json +134 -128
- package/src/themes/alaska/advanced/button/primary.json +146 -0
- package/src/themes/alaska/advanced/button/secondary.json +106 -0
- package/src/themes/alaska/advanced/button/tertiary.json +98 -0
- package/src/themes/alaska/advanced/hyperlink.json +19 -43
- package/src/themes/alaska/advanced/shared.json +30 -30
- package/src/themes/alaska/advanced/state.json +60 -60
- package/src/themes/alaska/basic/color/border.json +43 -45
- package/src/themes/alaska/basic/color/brand.json +61 -61
- package/src/themes/alaska/basic/color/fare-brand.json +44 -44
- package/src/themes/alaska/basic/color/page-background.json +9 -9
- package/src/themes/alaska/basic/color/status.json +36 -37
- package/src/themes/alaska/basic/color/surface.json +72 -80
- package/src/themes/alaska/basic/color/text-icon.json +37 -77
- package/src/themes/alaska/basic/corner-radius.json +15 -15
- package/src/themes/alaska/basic/font/accent.json +847 -217
- package/src/themes/alaska/basic/font/body.json +203 -48
- package/src/themes/alaska/basic/font/display.json +727 -187
- package/src/themes/alaska/basic/font/heading.json +725 -182
- package/src/themes/alaska-classic/typography.json +124 -124
- package/src/themes/hawaiian/advanced/accents.json +104 -0
- package/src/themes/hawaiian/advanced/boolean.json +134 -128
- package/src/themes/hawaiian/advanced/button/primary.json +146 -0
- package/src/themes/hawaiian/advanced/button/secondary.json +106 -0
- package/src/themes/hawaiian/advanced/button/tertiary.json +98 -0
- package/src/themes/hawaiian/advanced/hyperlink.json +19 -43
- package/src/themes/hawaiian/advanced/shared.json +30 -30
- package/src/themes/hawaiian/advanced/state.json +60 -60
- package/src/themes/hawaiian/basic/color/border.json +28 -29
- package/src/themes/hawaiian/basic/color/brand.json +48 -49
- package/src/themes/hawaiian/basic/color/fare-brand.json +41 -42
- package/src/themes/hawaiian/basic/color/page-background.json +8 -9
- package/src/themes/hawaiian/basic/color/status.json +36 -37
- package/src/themes/hawaiian/basic/color/surface.json +40 -41
- package/src/themes/hawaiian/basic/color/text-icon.json +37 -39
- package/src/themes/hawaiian/basic/corner-radius.json +30 -0
- package/src/themes/hawaiian/basic/font/accent.json +846 -216
- package/src/themes/hawaiian/basic/font/body.json +202 -47
- package/src/themes/hawaiian/basic/font/display.json +788 -0
- package/src/themes/hawaiian/basic/font/heading.json +724 -184
- package/src/themes/alaska/advanced/button.json +0 -262
- package/src/themes/hawaiian/advanced/button.json +0 -334
- package/src/themes/hawaiian/basic/color/color.json +0 -57
- package/src/themes/hawaiian/basic/font/typography.json +0 -248
|
@@ -2,19 +2,19 @@
|
|
|
2
2
|
"font": {
|
|
3
3
|
"family": {
|
|
4
4
|
"chronicleDisplay": {
|
|
5
|
-
"value": "Chronicle Display",
|
|
6
|
-
"type": "primitive",
|
|
7
|
-
"public": false,
|
|
8
5
|
"default": true,
|
|
9
|
-
"deprecated": false
|
|
6
|
+
"deprecated": false,
|
|
7
|
+
"public": false,
|
|
8
|
+
"type": "primitive",
|
|
9
|
+
"value": "Chronicle Display"
|
|
10
10
|
},
|
|
11
11
|
"slatePro": {
|
|
12
|
-
"value": "Slate Pro",
|
|
13
|
-
"type": "primitive",
|
|
14
|
-
"public": false,
|
|
15
12
|
"default": true,
|
|
16
|
-
"deprecated": false
|
|
13
|
+
"deprecated": false,
|
|
14
|
+
"public": false,
|
|
15
|
+
"type": "primitive",
|
|
16
|
+
"value": "Slate Pro"
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
|
-
|
|
20
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
{
|
|
2
|
+
"advanced": {
|
|
3
|
+
"color": {
|
|
4
|
+
"accents": {
|
|
5
|
+
"accent1": {
|
|
6
|
+
"default": true,
|
|
7
|
+
"deprecated": false,
|
|
8
|
+
"public": true,
|
|
9
|
+
"type": "semantic",
|
|
10
|
+
"usage": "",
|
|
11
|
+
"value": "{color.tropical.400.value}"
|
|
12
|
+
},
|
|
13
|
+
"accent1Bold": {
|
|
14
|
+
"default": true,
|
|
15
|
+
"deprecated": false,
|
|
16
|
+
"public": true,
|
|
17
|
+
"type": "semantic",
|
|
18
|
+
"usage": "",
|
|
19
|
+
"value": "{color.tropical.600.value}"
|
|
20
|
+
},
|
|
21
|
+
"accent1Muted": {
|
|
22
|
+
"default": true,
|
|
23
|
+
"deprecated": false,
|
|
24
|
+
"public": true,
|
|
25
|
+
"type": "semantic",
|
|
26
|
+
"usage": "",
|
|
27
|
+
"value": "{color.tropical.200.value}"
|
|
28
|
+
},
|
|
29
|
+
"accent2": {
|
|
30
|
+
"default": true,
|
|
31
|
+
"deprecated": false,
|
|
32
|
+
"public": true,
|
|
33
|
+
"type": "semantic",
|
|
34
|
+
"usage": "",
|
|
35
|
+
"value": "{color.sol.700.value}"
|
|
36
|
+
},
|
|
37
|
+
"accent2Bold": {
|
|
38
|
+
"default": true,
|
|
39
|
+
"deprecated": false,
|
|
40
|
+
"public": true,
|
|
41
|
+
"type": "semantic",
|
|
42
|
+
"usage": "",
|
|
43
|
+
"value": "{color.sol.1000.value}"
|
|
44
|
+
},
|
|
45
|
+
"accent2Muted": {
|
|
46
|
+
"default": true,
|
|
47
|
+
"deprecated": false,
|
|
48
|
+
"public": true,
|
|
49
|
+
"type": "semantic",
|
|
50
|
+
"usage": "",
|
|
51
|
+
"value": "{color.sol.500.value}"
|
|
52
|
+
},
|
|
53
|
+
"accent3": {
|
|
54
|
+
"default": true,
|
|
55
|
+
"deprecated": false,
|
|
56
|
+
"public": true,
|
|
57
|
+
"type": "semantic",
|
|
58
|
+
"usage": "",
|
|
59
|
+
"value": "{color.atlas.300.value}"
|
|
60
|
+
},
|
|
61
|
+
"accent3Bold": {
|
|
62
|
+
"default": true,
|
|
63
|
+
"deprecated": false,
|
|
64
|
+
"public": true,
|
|
65
|
+
"type": "semantic",
|
|
66
|
+
"usage": "",
|
|
67
|
+
"value": "{color.atlas.500.value}"
|
|
68
|
+
},
|
|
69
|
+
"accent3Muted": {
|
|
70
|
+
"default": true,
|
|
71
|
+
"deprecated": false,
|
|
72
|
+
"public": true,
|
|
73
|
+
"type": "semantic",
|
|
74
|
+
"usage": "",
|
|
75
|
+
"value": "{color.atlas.200.value}"
|
|
76
|
+
},
|
|
77
|
+
"accent4": {
|
|
78
|
+
"default": true,
|
|
79
|
+
"deprecated": false,
|
|
80
|
+
"public": true,
|
|
81
|
+
"type": "semantic",
|
|
82
|
+
"usage": "",
|
|
83
|
+
"value": "{color.flare.400.value}"
|
|
84
|
+
},
|
|
85
|
+
"accent4Bold": {
|
|
86
|
+
"default": true,
|
|
87
|
+
"deprecated": false,
|
|
88
|
+
"public": true,
|
|
89
|
+
"type": "semantic",
|
|
90
|
+
"usage": "",
|
|
91
|
+
"value": "{color.flare.600.value}"
|
|
92
|
+
},
|
|
93
|
+
"accent4Muted": {
|
|
94
|
+
"default": true,
|
|
95
|
+
"deprecated": false,
|
|
96
|
+
"public": true,
|
|
97
|
+
"type": "semantic",
|
|
98
|
+
"usage": "",
|
|
99
|
+
"value": "{color.flare.200.value}"
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
@@ -2,137 +2,143 @@
|
|
|
2
2
|
"advanced": {
|
|
3
3
|
"color": {
|
|
4
4
|
"boolean": {
|
|
5
|
-
"
|
|
6
|
-
"default":
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
"deprecated": false
|
|
13
|
-
},
|
|
14
|
-
"inverse": {
|
|
15
|
-
"value": "{basic.color.brand.primary.value}",
|
|
16
|
-
"type": "semantic",
|
|
17
|
-
"public": true,
|
|
18
|
-
"default": true,
|
|
19
|
-
"usage": "Boolean indicator inverse color",
|
|
20
|
-
"deprecated": false
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
"isFalse": {
|
|
24
|
-
"default": {
|
|
25
|
-
"value": "{basic.color.surface.default.value}",
|
|
26
|
-
"type": "semantic",
|
|
27
|
-
"public": true,
|
|
28
|
-
"default": true,
|
|
29
|
-
"usage": "Boolean false state color",
|
|
30
|
-
"deprecated": false
|
|
31
|
-
},
|
|
32
|
-
"hover": {
|
|
33
|
-
"value": "{advanced.color.state.background.inverse.hover.value}",
|
|
34
|
-
"type": "semantic",
|
|
35
|
-
"public": true,
|
|
36
|
-
"default": true,
|
|
37
|
-
"usage": "Boolean false hover state color",
|
|
38
|
-
"deprecated": false
|
|
39
|
-
},
|
|
40
|
-
"border": {
|
|
41
|
-
"value": "{basic.color.border.bold.value}",
|
|
42
|
-
"type": "semantic",
|
|
43
|
-
"public": true,
|
|
44
|
-
"default": true,
|
|
45
|
-
"usage": "Boolean false border color",
|
|
46
|
-
"deprecated": false
|
|
47
|
-
},
|
|
48
|
-
"inverse": {
|
|
49
|
-
"value": "{advanced.color.background.inverse.value}",
|
|
50
|
-
"type": "semantic",
|
|
51
|
-
"public": true,
|
|
52
|
-
"default": true,
|
|
53
|
-
"usage": "Boolean false inverse state color",
|
|
54
|
-
"deprecated": false
|
|
55
|
-
},
|
|
56
|
-
"inverseHover": {
|
|
57
|
-
"value": "{advanced.color.state.background.hover.value}",
|
|
58
|
-
"type": "semantic",
|
|
59
|
-
"public": true,
|
|
60
|
-
"default": true,
|
|
61
|
-
"usage": "Boolean false inverse hover state color",
|
|
62
|
-
"deprecated": false
|
|
63
|
-
},
|
|
64
|
-
"borderInverse": {
|
|
65
|
-
"value": "{color.white.value}",
|
|
66
|
-
"type": "semantic",
|
|
67
|
-
"public": true,
|
|
68
|
-
"default": true,
|
|
69
|
-
"usage": "Boolean false inverse border color",
|
|
70
|
-
"deprecated": false
|
|
71
|
-
}
|
|
72
|
-
},
|
|
73
|
-
"isTrue": {
|
|
74
|
-
"default": {
|
|
75
|
-
"value": "{basic.color.brand.primary.value}",
|
|
76
|
-
"type": "semantic",
|
|
77
|
-
"public": true,
|
|
78
|
-
"default": true,
|
|
79
|
-
"usage": "Boolean true state color",
|
|
80
|
-
"deprecated": false
|
|
81
|
-
},
|
|
82
|
-
"hover": {
|
|
83
|
-
"value": "{basic.color.brand.primaryBold.value}",
|
|
84
|
-
"type": "semantic",
|
|
85
|
-
"public": true,
|
|
86
|
-
"default": true,
|
|
87
|
-
"usage": "Boolean true hover state color",
|
|
88
|
-
"deprecated": false
|
|
89
|
-
},
|
|
90
|
-
"inverse": {
|
|
91
|
-
"value": "{color.white.value}",
|
|
92
|
-
"type": "semantic",
|
|
93
|
-
"public": true,
|
|
94
|
-
"default": true,
|
|
95
|
-
"usage": "Boolean true inverse state color",
|
|
96
|
-
"deprecated": false
|
|
97
|
-
},
|
|
98
|
-
"inverseHover": {
|
|
99
|
-
"value": "{transparency.white.70.value}",
|
|
100
|
-
"type": "semantic",
|
|
101
|
-
"public": true,
|
|
102
|
-
"default": true,
|
|
103
|
-
"usage": "Boolean true inverse hover state color",
|
|
104
|
-
"deprecated": false
|
|
105
|
-
}
|
|
5
|
+
"disabledInverse": {
|
|
6
|
+
"default": true,
|
|
7
|
+
"deprecated": false,
|
|
8
|
+
"public": true,
|
|
9
|
+
"type": "semantic",
|
|
10
|
+
"usage": "Boolean disabled inverse state color",
|
|
11
|
+
"value": "{color.neutral.600.value}"
|
|
106
12
|
},
|
|
107
13
|
"error": {
|
|
108
|
-
"default":
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
"
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
"
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
14
|
+
"default": true,
|
|
15
|
+
"deprecated": false,
|
|
16
|
+
"public": true,
|
|
17
|
+
"type": "semantic",
|
|
18
|
+
"usage": "Boolean error state color",
|
|
19
|
+
"value": "{basic.color.status.error.value}"
|
|
20
|
+
},
|
|
21
|
+
"errorHover": {
|
|
22
|
+
"default": true,
|
|
23
|
+
"deprecated": false,
|
|
24
|
+
"public": true,
|
|
25
|
+
"type": "semantic",
|
|
26
|
+
"usage": "Boolean error hover state color",
|
|
27
|
+
"value": "{color.status.error.800.value}"
|
|
28
|
+
},
|
|
29
|
+
"errorInverse": {
|
|
30
|
+
"default": true,
|
|
31
|
+
"deprecated": false,
|
|
32
|
+
"public": true,
|
|
33
|
+
"type": "semantic",
|
|
34
|
+
"usage": "Boolean error state color",
|
|
35
|
+
"value": "{color.status.error.200.value}"
|
|
36
|
+
},
|
|
37
|
+
"errorInverseHover": {
|
|
38
|
+
"default": true,
|
|
39
|
+
"deprecated": false,
|
|
40
|
+
"public": true,
|
|
41
|
+
"type": "semantic",
|
|
42
|
+
"usage": "Boolean error state color",
|
|
43
|
+
"value": "{color.status.error.400.value}"
|
|
44
|
+
},
|
|
45
|
+
"indicator": {
|
|
46
|
+
"default": true,
|
|
47
|
+
"deprecated": false,
|
|
48
|
+
"public": true,
|
|
49
|
+
"type": "semantic",
|
|
50
|
+
"usage": "Boolean indicator color",
|
|
51
|
+
"value": "{color.white.value}"
|
|
52
|
+
},
|
|
53
|
+
"indicatorInverse": {
|
|
54
|
+
"default": true,
|
|
55
|
+
"deprecated": false,
|
|
56
|
+
"public": true,
|
|
57
|
+
"type": "semantic",
|
|
58
|
+
"usage": "Boolean indicator inverse color",
|
|
59
|
+
"value": "{basic.color.brand.primary.value}"
|
|
60
|
+
},
|
|
61
|
+
"isfalse": {
|
|
62
|
+
"default": true,
|
|
63
|
+
"deprecated": false,
|
|
64
|
+
"public": true,
|
|
65
|
+
"type": "semantic",
|
|
66
|
+
"usage": "Boolean false state color",
|
|
67
|
+
"value": "{basic.color.surface.default.value}"
|
|
68
|
+
},
|
|
69
|
+
"isfalseBorder": {
|
|
70
|
+
"default": true,
|
|
71
|
+
"deprecated": false,
|
|
72
|
+
"public": true,
|
|
73
|
+
"type": "semantic",
|
|
74
|
+
"usage": "Boolean false border color",
|
|
75
|
+
"value": "{basic.color.border.bold.value}"
|
|
76
|
+
},
|
|
77
|
+
"isfalseBorderInverse": {
|
|
78
|
+
"default": true,
|
|
79
|
+
"deprecated": false,
|
|
80
|
+
"public": true,
|
|
81
|
+
"type": "semantic",
|
|
82
|
+
"usage": "Boolean false inverse border color",
|
|
83
|
+
"value": "{color.white.value}"
|
|
84
|
+
},
|
|
85
|
+
"isfalseHover": {
|
|
86
|
+
"default": true,
|
|
87
|
+
"deprecated": false,
|
|
88
|
+
"public": true,
|
|
89
|
+
"type": "semantic",
|
|
90
|
+
"usage": "Boolean false hover state color",
|
|
91
|
+
"value": "{advanced.color.state.backgroundInverseHover.value}"
|
|
92
|
+
},
|
|
93
|
+
"isfalseInverse": {
|
|
94
|
+
"default": true,
|
|
95
|
+
"deprecated": false,
|
|
96
|
+
"public": true,
|
|
97
|
+
"type": "semantic",
|
|
98
|
+
"usage": "Boolean false inverse state color",
|
|
99
|
+
"value": "{advanced.color.shared.backgroundInverse.value}"
|
|
100
|
+
},
|
|
101
|
+
"isfalseInverseHover": {
|
|
102
|
+
"default": true,
|
|
103
|
+
"deprecated": false,
|
|
104
|
+
"public": true,
|
|
105
|
+
"type": "semantic",
|
|
106
|
+
"usage": "Boolean false inverse hover state color",
|
|
107
|
+
"value": "{advanced.color.state.backgroundHover.value}"
|
|
108
|
+
},
|
|
109
|
+
"istrue": {
|
|
110
|
+
"default": true,
|
|
111
|
+
"deprecated": false,
|
|
112
|
+
"public": true,
|
|
113
|
+
"type": "semantic",
|
|
114
|
+
"usage": "Boolean true state color",
|
|
115
|
+
"value": "{basic.color.brand.primary.value}"
|
|
116
|
+
},
|
|
117
|
+
"istrueHover": {
|
|
118
|
+
"default": true,
|
|
119
|
+
"deprecated": false,
|
|
120
|
+
"public": true,
|
|
121
|
+
"type": "semantic",
|
|
122
|
+
"usage": "Boolean true hover state color",
|
|
123
|
+
"value": "{basic.color.brand.primaryBold.value}"
|
|
124
|
+
},
|
|
125
|
+
"istrueInverse": {
|
|
126
|
+
"default": true,
|
|
127
|
+
"deprecated": false,
|
|
128
|
+
"public": true,
|
|
129
|
+
"type": "semantic",
|
|
130
|
+
"usage": "Boolean true inverse state color",
|
|
131
|
+
"value": "{color.white.value}"
|
|
132
|
+
},
|
|
133
|
+
"istrueInverseHover": {
|
|
134
|
+
"default": true,
|
|
135
|
+
"deprecated": false,
|
|
136
|
+
"public": true,
|
|
137
|
+
"type": "semantic",
|
|
138
|
+
"usage": "Boolean true inverse hover state color",
|
|
139
|
+
"value": "{transparency.white.70.value}"
|
|
134
140
|
}
|
|
135
141
|
}
|
|
136
142
|
}
|
|
137
143
|
}
|
|
138
|
-
}
|
|
144
|
+
}
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
{
|
|
2
|
+
"advanced": {
|
|
3
|
+
"color": {
|
|
4
|
+
"button": {
|
|
5
|
+
"primary": {
|
|
6
|
+
"background": {
|
|
7
|
+
"default": true,
|
|
8
|
+
"deprecated": false,
|
|
9
|
+
"public": true,
|
|
10
|
+
"type": "semantic",
|
|
11
|
+
"usage": "Primary button background color",
|
|
12
|
+
"value": "{basic.color.brand.primary.value}"
|
|
13
|
+
},
|
|
14
|
+
"backgroundActive": {
|
|
15
|
+
"default": true,
|
|
16
|
+
"deprecated": false,
|
|
17
|
+
"public": true,
|
|
18
|
+
"type": "semantic",
|
|
19
|
+
"usage": "Primary button background active color",
|
|
20
|
+
"value": "{basic.color.brand.primaryBold.value}"
|
|
21
|
+
},
|
|
22
|
+
"backgroundDisabled": {
|
|
23
|
+
"default": true,
|
|
24
|
+
"deprecated": false,
|
|
25
|
+
"public": true,
|
|
26
|
+
"type": "semantic",
|
|
27
|
+
"usage": "",
|
|
28
|
+
"value": "{color.midnight.300.value}"
|
|
29
|
+
},
|
|
30
|
+
"backgroundHover": {
|
|
31
|
+
"default": true,
|
|
32
|
+
"deprecated": false,
|
|
33
|
+
"public": true,
|
|
34
|
+
"type": "semantic",
|
|
35
|
+
"usage": "Primary button background hover color",
|
|
36
|
+
"value": "{basic.color.brand.primaryBold.value}"
|
|
37
|
+
},
|
|
38
|
+
"backgroundInactive": {
|
|
39
|
+
"default": true,
|
|
40
|
+
"deprecated": false,
|
|
41
|
+
"public": true,
|
|
42
|
+
"type": "semantic",
|
|
43
|
+
"usage": "",
|
|
44
|
+
"value": "{color.midnight.200.value}"
|
|
45
|
+
},
|
|
46
|
+
"backgroundInactiveHover": {
|
|
47
|
+
"default": true,
|
|
48
|
+
"deprecated": false,
|
|
49
|
+
"public": true,
|
|
50
|
+
"type": "semantic",
|
|
51
|
+
"usage": "",
|
|
52
|
+
"value": "{color.midnight.400.value}"
|
|
53
|
+
},
|
|
54
|
+
"backgroundInverse": {
|
|
55
|
+
"default": true,
|
|
56
|
+
"deprecated": false,
|
|
57
|
+
"public": true,
|
|
58
|
+
"type": "semantic",
|
|
59
|
+
"usage": "Primary button inverse background color",
|
|
60
|
+
"value": "{color.white.value}"
|
|
61
|
+
},
|
|
62
|
+
"backgroundInverseDisabled": {
|
|
63
|
+
"default": true,
|
|
64
|
+
"deprecated": false,
|
|
65
|
+
"public": true,
|
|
66
|
+
"type": "semantic",
|
|
67
|
+
"usage": "",
|
|
68
|
+
"value": "{transparency.white.75.value}"
|
|
69
|
+
},
|
|
70
|
+
"backgroundInverseHover": {
|
|
71
|
+
"default": true,
|
|
72
|
+
"deprecated": false,
|
|
73
|
+
"public": true,
|
|
74
|
+
"type": "semantic",
|
|
75
|
+
"usage": "Primary button inverse background hover color",
|
|
76
|
+
"value": "{basic.color.brand.primaryMuted.value}"
|
|
77
|
+
},
|
|
78
|
+
"border": {
|
|
79
|
+
"default": true,
|
|
80
|
+
"deprecated": false,
|
|
81
|
+
"public": true,
|
|
82
|
+
"type": "semantic",
|
|
83
|
+
"usage": "Primary button border color",
|
|
84
|
+
"value": "{basic.color.brand.primary.value}"
|
|
85
|
+
},
|
|
86
|
+
"borderDisabled": {
|
|
87
|
+
"default": true,
|
|
88
|
+
"deprecated": false,
|
|
89
|
+
"public": true,
|
|
90
|
+
"type": "semantic",
|
|
91
|
+
"usage": "",
|
|
92
|
+
"value": "{color.midnight.300.value}"
|
|
93
|
+
},
|
|
94
|
+
"borderHover": {
|
|
95
|
+
"default": true,
|
|
96
|
+
"deprecated": false,
|
|
97
|
+
"public": true,
|
|
98
|
+
"type": "semantic",
|
|
99
|
+
"usage": "Primary button border hover color",
|
|
100
|
+
"value": "{basic.color.brand.primaryBold.value}"
|
|
101
|
+
},
|
|
102
|
+
"borderInverse": {
|
|
103
|
+
"default": true,
|
|
104
|
+
"deprecated": false,
|
|
105
|
+
"public": true,
|
|
106
|
+
"type": "semantic",
|
|
107
|
+
"usage": "Primary button inverse border color",
|
|
108
|
+
"value": "{color.white.value}"
|
|
109
|
+
},
|
|
110
|
+
"borderInverseDisabled": {
|
|
111
|
+
"default": true,
|
|
112
|
+
"deprecated": false,
|
|
113
|
+
"public": true,
|
|
114
|
+
"type": "semantic",
|
|
115
|
+
"usage": "",
|
|
116
|
+
"value": "{transparency.white.75.value}"
|
|
117
|
+
},
|
|
118
|
+
"borderInverseHover": {
|
|
119
|
+
"default": true,
|
|
120
|
+
"deprecated": false,
|
|
121
|
+
"public": true,
|
|
122
|
+
"type": "semantic",
|
|
123
|
+
"usage": "Primary button inverse border hover color",
|
|
124
|
+
"value": "{basic.color.brand.primaryMuted.value}"
|
|
125
|
+
},
|
|
126
|
+
"text": {
|
|
127
|
+
"default": true,
|
|
128
|
+
"deprecated": false,
|
|
129
|
+
"public": true,
|
|
130
|
+
"type": "semantic",
|
|
131
|
+
"usage": "Primary button text color",
|
|
132
|
+
"value": "{color.white.value}"
|
|
133
|
+
},
|
|
134
|
+
"textInverse": {
|
|
135
|
+
"default": true,
|
|
136
|
+
"deprecated": false,
|
|
137
|
+
"public": true,
|
|
138
|
+
"type": "semantic",
|
|
139
|
+
"usage": "Primary button inverse text color",
|
|
140
|
+
"value": "{basic.color.brand.primary.value}"
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
{
|
|
2
|
+
"advanced": {
|
|
3
|
+
"color": {
|
|
4
|
+
"button": {
|
|
5
|
+
"secondary": {
|
|
6
|
+
"background": {
|
|
7
|
+
"default": true,
|
|
8
|
+
"deprecated": false,
|
|
9
|
+
"public": true,
|
|
10
|
+
"type": "semantic",
|
|
11
|
+
"usage": "Secondary button background color",
|
|
12
|
+
"value": "{color.white.value}"
|
|
13
|
+
},
|
|
14
|
+
"backgroundDisabled": {
|
|
15
|
+
"default": true,
|
|
16
|
+
"deprecated": false,
|
|
17
|
+
"public": true,
|
|
18
|
+
"type": "semantic",
|
|
19
|
+
"usage": "",
|
|
20
|
+
"value": "{color.gray.50.value}"
|
|
21
|
+
},
|
|
22
|
+
"backgroundHover": {
|
|
23
|
+
"default": true,
|
|
24
|
+
"deprecated": false,
|
|
25
|
+
"public": true,
|
|
26
|
+
"type": "semantic",
|
|
27
|
+
"usage": "Secondary button background hover color",
|
|
28
|
+
"value": "{color.gray.100.value}"
|
|
29
|
+
},
|
|
30
|
+
"backgroundInverseHover": {
|
|
31
|
+
"default": true,
|
|
32
|
+
"deprecated": false,
|
|
33
|
+
"public": true,
|
|
34
|
+
"type": "semantic",
|
|
35
|
+
"usage": "Secondary button inverse background hover color",
|
|
36
|
+
"value": "{transparency.white.10.value}"
|
|
37
|
+
},
|
|
38
|
+
"border": {
|
|
39
|
+
"default": true,
|
|
40
|
+
"deprecated": false,
|
|
41
|
+
"public": true,
|
|
42
|
+
"type": "semantic",
|
|
43
|
+
"usage": "Secondary button border color",
|
|
44
|
+
"value": "{basic.color.brand.primary.value}"
|
|
45
|
+
},
|
|
46
|
+
"borderHover": {
|
|
47
|
+
"default": true,
|
|
48
|
+
"deprecated": false,
|
|
49
|
+
"public": true,
|
|
50
|
+
"type": "semantic",
|
|
51
|
+
"usage": "Secondary button border hover color",
|
|
52
|
+
"value": "{basic.color.brand.primaryBold.value}"
|
|
53
|
+
},
|
|
54
|
+
"borderHoverDisabled": {
|
|
55
|
+
"default": true,
|
|
56
|
+
"deprecated": false,
|
|
57
|
+
"public": true,
|
|
58
|
+
"type": "semantic",
|
|
59
|
+
"usage": "",
|
|
60
|
+
"value": "{color.gray.50.value}"
|
|
61
|
+
},
|
|
62
|
+
"borderInverse": {
|
|
63
|
+
"default": true,
|
|
64
|
+
"deprecated": false,
|
|
65
|
+
"public": true,
|
|
66
|
+
"type": "semantic",
|
|
67
|
+
"usage": "Secondary button inverse border color",
|
|
68
|
+
"value": "{color.white.value}"
|
|
69
|
+
},
|
|
70
|
+
"borderInverseDisabled": {
|
|
71
|
+
"default": true,
|
|
72
|
+
"deprecated": false,
|
|
73
|
+
"public": true,
|
|
74
|
+
"type": "semantic",
|
|
75
|
+
"usage": "",
|
|
76
|
+
"value": "{basic.color.border.subtle.value}"
|
|
77
|
+
},
|
|
78
|
+
"text": {
|
|
79
|
+
"default": true,
|
|
80
|
+
"deprecated": false,
|
|
81
|
+
"public": true,
|
|
82
|
+
"type": "semantic",
|
|
83
|
+
"usage": "Secondary button text color",
|
|
84
|
+
"value": "{basic.color.brand.primary.value}"
|
|
85
|
+
},
|
|
86
|
+
"textHover": {
|
|
87
|
+
"default": true,
|
|
88
|
+
"deprecated": false,
|
|
89
|
+
"public": true,
|
|
90
|
+
"type": "semantic",
|
|
91
|
+
"usage": "Secondary button text hover color",
|
|
92
|
+
"value": "{basic.color.brand.primaryBold.value}"
|
|
93
|
+
},
|
|
94
|
+
"textInverse": {
|
|
95
|
+
"default": true,
|
|
96
|
+
"deprecated": false,
|
|
97
|
+
"public": true,
|
|
98
|
+
"type": "semantic",
|
|
99
|
+
"usage": "Secondary button inverse text color",
|
|
100
|
+
"value": "{color.white.value}"
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|