@covalent/tokens 0.0.0-COVALENT
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/README.md +83 -0
- package/config.json +58 -0
- package/package.json +25 -0
- package/project.json +28 -0
- package/src/color/code.json +24 -0
- package/src/color/covalent-m3.json +4082 -0
- package/src/color/deprecated/base.json +118 -0
- package/src/color/deprecated/surface.json +234 -0
- package/src/color/deprecated/teradata.json +57 -0
- package/src/color/deprecated/text.json +128 -0
- package/src/color/material.json +276 -0
- package/src/typography.json +109 -0
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
{
|
|
2
|
+
"light": {
|
|
3
|
+
"primary": {
|
|
4
|
+
"value": "{theme.light.colors.primary}",
|
|
5
|
+
"type": "color"
|
|
6
|
+
},
|
|
7
|
+
"secondary": {
|
|
8
|
+
"value": "{theme.light.colors.secondary}",
|
|
9
|
+
"type": "color"
|
|
10
|
+
},
|
|
11
|
+
"error": {
|
|
12
|
+
"value": "{theme.light.colors.negative}",
|
|
13
|
+
"type": "color"
|
|
14
|
+
},
|
|
15
|
+
"positive": {
|
|
16
|
+
"value": "{theme.light.colors.positive}",
|
|
17
|
+
"type": "color"
|
|
18
|
+
},
|
|
19
|
+
"caution": {
|
|
20
|
+
"value": "{theme.light.colors.caution}",
|
|
21
|
+
"type": "color"
|
|
22
|
+
},
|
|
23
|
+
"negative": {
|
|
24
|
+
"value": "{theme.light.colors.negative}",
|
|
25
|
+
"type": "color"
|
|
26
|
+
},
|
|
27
|
+
"on-primary": {
|
|
28
|
+
"value": "{theme.light.colors.on-primary}",
|
|
29
|
+
"type": "color"
|
|
30
|
+
},
|
|
31
|
+
"on-secondary": {
|
|
32
|
+
"value": "{theme.light.colors.on-secondary}",
|
|
33
|
+
"type": "color"
|
|
34
|
+
},
|
|
35
|
+
"on-background": {
|
|
36
|
+
"value": "{theme.light.colors.on-surface}",
|
|
37
|
+
"type": "color"
|
|
38
|
+
},
|
|
39
|
+
"on-surface": {
|
|
40
|
+
"value": "{theme.light.colors.on-surface}",
|
|
41
|
+
"type": "color"
|
|
42
|
+
},
|
|
43
|
+
"on-error": {
|
|
44
|
+
"value": "{theme.light.colors.on-negative}",
|
|
45
|
+
"type": "color"
|
|
46
|
+
},
|
|
47
|
+
"divider": {
|
|
48
|
+
"value": "{theme.light.colors.outline-variant}",
|
|
49
|
+
"type": "color"
|
|
50
|
+
},
|
|
51
|
+
"emphasis": {
|
|
52
|
+
"value": "{theme.light.colors.emphasis}",
|
|
53
|
+
"type": "color"
|
|
54
|
+
},
|
|
55
|
+
"accent": {
|
|
56
|
+
"value": "{theme.light.colors.primary}",
|
|
57
|
+
"type": "color"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"dark": {
|
|
61
|
+
"primary": {
|
|
62
|
+
"value": "{theme.dark.colors.primary}",
|
|
63
|
+
"type": "color"
|
|
64
|
+
},
|
|
65
|
+
"secondary": {
|
|
66
|
+
"value": "{theme.dark.colors.secondary}",
|
|
67
|
+
"type": "color"
|
|
68
|
+
},
|
|
69
|
+
"error": {
|
|
70
|
+
"value": "{theme.dark.colors.negative}",
|
|
71
|
+
"type": "color"
|
|
72
|
+
},
|
|
73
|
+
"positive": {
|
|
74
|
+
"value": "{theme.dark.colors.positive}",
|
|
75
|
+
"type": "color"
|
|
76
|
+
},
|
|
77
|
+
"caution": {
|
|
78
|
+
"value": "{theme.dark.colors.caution}",
|
|
79
|
+
"type": "color"
|
|
80
|
+
},
|
|
81
|
+
"negative": {
|
|
82
|
+
"value": "{theme.dark.colors.negative}",
|
|
83
|
+
"type": "color"
|
|
84
|
+
},
|
|
85
|
+
"on-primary": {
|
|
86
|
+
"value": "{theme.dark.colors.on-primary}",
|
|
87
|
+
"type": "color"
|
|
88
|
+
},
|
|
89
|
+
"on-secondary": {
|
|
90
|
+
"value": "{theme.dark.colors.on-secondary}",
|
|
91
|
+
"type": "color"
|
|
92
|
+
},
|
|
93
|
+
"on-background": {
|
|
94
|
+
"value": "{theme.dark.colors.on-surface}",
|
|
95
|
+
"type": "color"
|
|
96
|
+
},
|
|
97
|
+
"on-surface": {
|
|
98
|
+
"value": "{theme.dark.colors.on-surface}",
|
|
99
|
+
"type": "color"
|
|
100
|
+
},
|
|
101
|
+
"on-error": {
|
|
102
|
+
"value": "{theme.dark.colors.on-negative}",
|
|
103
|
+
"type": "color"
|
|
104
|
+
},
|
|
105
|
+
"divider": {
|
|
106
|
+
"value": "{theme.dark.colors.outline-variant}",
|
|
107
|
+
"type": "color"
|
|
108
|
+
},
|
|
109
|
+
"emphasis": {
|
|
110
|
+
"value": "{theme.dark.colors.emphasis}",
|
|
111
|
+
"type": "color"
|
|
112
|
+
},
|
|
113
|
+
"accent": {
|
|
114
|
+
"value": "{theme.dark.colors.primary}",
|
|
115
|
+
"type": "color"
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
{
|
|
2
|
+
"light": {
|
|
3
|
+
"background": {
|
|
4
|
+
"value": "{theme.light.colors.surface}",
|
|
5
|
+
"type": "color"
|
|
6
|
+
},
|
|
7
|
+
"surface": {
|
|
8
|
+
"value": "{theme.light.colors.surface}",
|
|
9
|
+
"type": "color"
|
|
10
|
+
},
|
|
11
|
+
"surface-canvas": {
|
|
12
|
+
"value": "{theme.light.colors.surface-container-lowest}",
|
|
13
|
+
"type": "color"
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"surface-primary": {
|
|
17
|
+
"value": "{theme.light.colors.primary-container}",
|
|
18
|
+
"type": "color"
|
|
19
|
+
},
|
|
20
|
+
"surface-primary-highlight": {
|
|
21
|
+
"value": "{theme.light.colors.primary-8}",
|
|
22
|
+
"type": "color"
|
|
23
|
+
},
|
|
24
|
+
"surface-primary-highlight-hover": {
|
|
25
|
+
"value": "{theme.light.colors.primary-8}",
|
|
26
|
+
"type": "color"
|
|
27
|
+
},
|
|
28
|
+
"surface-accent": {
|
|
29
|
+
"value": "{theme.light.colors.primary-container}",
|
|
30
|
+
"type": "color"
|
|
31
|
+
},
|
|
32
|
+
"surface-accent-highlight": {
|
|
33
|
+
"value": "{theme.light.colors.primary-8}",
|
|
34
|
+
"type": "color"
|
|
35
|
+
},
|
|
36
|
+
"surface-accent-highlight-hover": {
|
|
37
|
+
"value": "{theme.light.colors.primary-12}",
|
|
38
|
+
"type": "color"
|
|
39
|
+
},
|
|
40
|
+
|
|
41
|
+
"surface-secondary": {
|
|
42
|
+
"value": "{theme.light.colors.secondary-container}",
|
|
43
|
+
"type": "color"
|
|
44
|
+
},
|
|
45
|
+
"surface-secondary-highlight": {
|
|
46
|
+
"value": "{theme.light.colors.secondary-8}",
|
|
47
|
+
"type": "color"
|
|
48
|
+
},
|
|
49
|
+
"surface-secondary-highlight-hover": {
|
|
50
|
+
"value": "{theme.light.colors.secondary-8}",
|
|
51
|
+
"type": "color"
|
|
52
|
+
},
|
|
53
|
+
|
|
54
|
+
"surface-positive": {
|
|
55
|
+
"value": "{theme.light.colors.positive-container}",
|
|
56
|
+
"type": "color"
|
|
57
|
+
},
|
|
58
|
+
"surface-positive-highlight": {
|
|
59
|
+
"value": "{theme.light.colors.positive-8}",
|
|
60
|
+
"type": "color"
|
|
61
|
+
},
|
|
62
|
+
"surface-positive-highlight-hover": {
|
|
63
|
+
"value": "{theme.light.colors.positive-8}",
|
|
64
|
+
"type": "color"
|
|
65
|
+
},
|
|
66
|
+
|
|
67
|
+
"surface-caution": {
|
|
68
|
+
"value": "{theme.light.colors.caution-container}",
|
|
69
|
+
"type": "color"
|
|
70
|
+
},
|
|
71
|
+
"surface-caution-highlight": {
|
|
72
|
+
"value": "{theme.light.colors.caution-8}",
|
|
73
|
+
"type": "color"
|
|
74
|
+
},
|
|
75
|
+
"surface-caution-highlight-hover": {
|
|
76
|
+
"value": "{theme.light.colors.caution-8}",
|
|
77
|
+
"type": "color"
|
|
78
|
+
},
|
|
79
|
+
|
|
80
|
+
"surface-negative": {
|
|
81
|
+
"value": "{theme.light.colors.negative-container}",
|
|
82
|
+
"type": "color"
|
|
83
|
+
},
|
|
84
|
+
"surface-negative-highlight": {
|
|
85
|
+
"value": "{theme.light.colors.negative-8}",
|
|
86
|
+
"type": "color"
|
|
87
|
+
},
|
|
88
|
+
"surface-negative-highlight-hover": {
|
|
89
|
+
"value": "{theme.light.colors.negative-8}",
|
|
90
|
+
"type": "color"
|
|
91
|
+
},
|
|
92
|
+
|
|
93
|
+
"surface-neutral": {
|
|
94
|
+
"value": "{theme.light.colors.surface-container-low}",
|
|
95
|
+
"type": "color"
|
|
96
|
+
},
|
|
97
|
+
"surface-neutral-highlight": {
|
|
98
|
+
"value": "rgba({theme.light.colors.surface-container-low}, 0.04)",
|
|
99
|
+
"type": "color"
|
|
100
|
+
},
|
|
101
|
+
"surface-neutral-highlight-hover": {
|
|
102
|
+
"value": "rgba({theme.light.colors.surface-container-low}, 0.08)",
|
|
103
|
+
"type": "color"
|
|
104
|
+
},
|
|
105
|
+
"surface-emphasis": {
|
|
106
|
+
"value": "{theme.light.colors.emphasis-container}",
|
|
107
|
+
"type": "color"
|
|
108
|
+
},
|
|
109
|
+
"surface-emphasis-highlight": {
|
|
110
|
+
"value": "{theme.light.colors.emphasis-8}",
|
|
111
|
+
"type": "color"
|
|
112
|
+
},
|
|
113
|
+
"surface-emphasis-highlight-hover": {
|
|
114
|
+
"value": "{theme.light.colors.emphasis-8}",
|
|
115
|
+
"type": "color"
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"dark": {
|
|
119
|
+
"background": {
|
|
120
|
+
"value": "{theme.dark.colors.surface}",
|
|
121
|
+
"type": "color"
|
|
122
|
+
},
|
|
123
|
+
"surface": {
|
|
124
|
+
"value": "{theme.dark.colors.surface}",
|
|
125
|
+
"type": "color"
|
|
126
|
+
},
|
|
127
|
+
"surface-canvas": {
|
|
128
|
+
"value": "{theme.dark.colors.surface-container}",
|
|
129
|
+
"type": "color"
|
|
130
|
+
},
|
|
131
|
+
|
|
132
|
+
"surface-primary": {
|
|
133
|
+
"value": "{theme.dark.colors.primary-container}",
|
|
134
|
+
"type": "color"
|
|
135
|
+
},
|
|
136
|
+
"surface-primary-highlight": {
|
|
137
|
+
"value": "{theme.dark.colors.primary-8}",
|
|
138
|
+
"type": "color"
|
|
139
|
+
},
|
|
140
|
+
"surface-primary-highlight-hover": {
|
|
141
|
+
"value": "{theme.dark.colors.primary-8}",
|
|
142
|
+
"type": "color"
|
|
143
|
+
},
|
|
144
|
+
"surface-accent": {
|
|
145
|
+
"value": "{theme.dark.colors.primary-container}",
|
|
146
|
+
"type": "color"
|
|
147
|
+
},
|
|
148
|
+
"surface-accent-highlight": {
|
|
149
|
+
"value": "{theme.dark.colors.primary-8}",
|
|
150
|
+
"type": "color"
|
|
151
|
+
},
|
|
152
|
+
"surface-accent-highlight-hover": {
|
|
153
|
+
"value": "{theme.dark.colors.primary-8}",
|
|
154
|
+
"type": "color"
|
|
155
|
+
},
|
|
156
|
+
|
|
157
|
+
"surface-secondary": {
|
|
158
|
+
"value": "{theme.dark.colors.secondary-container}",
|
|
159
|
+
"type": "color"
|
|
160
|
+
},
|
|
161
|
+
"surface-secondary-highlight": {
|
|
162
|
+
"value": "{theme.dark.colors.secondary-8}",
|
|
163
|
+
"type": "color"
|
|
164
|
+
},
|
|
165
|
+
"surface-secondary-highlight-hover": {
|
|
166
|
+
"value": "{theme.dark.colors.secondary-8}",
|
|
167
|
+
"type": "color"
|
|
168
|
+
},
|
|
169
|
+
|
|
170
|
+
"surface-positive": {
|
|
171
|
+
"value": "{theme.dark.colors.positive-container}",
|
|
172
|
+
"type": "color"
|
|
173
|
+
},
|
|
174
|
+
"surface-positive-highlight": {
|
|
175
|
+
"value": "{theme.dark.colors.positive-8}",
|
|
176
|
+
"type": "color"
|
|
177
|
+
},
|
|
178
|
+
"surface-positive-highlight-hover": {
|
|
179
|
+
"value": "{theme.dark.colors.positive-8}",
|
|
180
|
+
"type": "color"
|
|
181
|
+
},
|
|
182
|
+
|
|
183
|
+
"surface-caution": {
|
|
184
|
+
"value": "{theme.dark.colors.caution-container}",
|
|
185
|
+
"type": "color"
|
|
186
|
+
},
|
|
187
|
+
"surface-caution-highlight": {
|
|
188
|
+
"value": "{theme.dark.colors.caution-8}",
|
|
189
|
+
"type": "color"
|
|
190
|
+
},
|
|
191
|
+
"surface-caution-highlight-hover": {
|
|
192
|
+
"value": "{theme.dark.colors.caution-8}",
|
|
193
|
+
"type": "color"
|
|
194
|
+
},
|
|
195
|
+
|
|
196
|
+
"surface-negative": {
|
|
197
|
+
"value": "{theme.dark.colors.negative-container}",
|
|
198
|
+
"type": "color"
|
|
199
|
+
},
|
|
200
|
+
"surface-negative-highlight": {
|
|
201
|
+
"value": "{theme.dark.colors.negative-8}",
|
|
202
|
+
"type": "color"
|
|
203
|
+
},
|
|
204
|
+
"surface-negative-highlight-hover": {
|
|
205
|
+
"value": "{theme.dark.colors.negative-8}",
|
|
206
|
+
"type": "color"
|
|
207
|
+
},
|
|
208
|
+
|
|
209
|
+
"surface-neutral": {
|
|
210
|
+
"value": "{theme.light.colors.surface-container-low}",
|
|
211
|
+
"type": "color"
|
|
212
|
+
},
|
|
213
|
+
"surface-neutral-highlight": {
|
|
214
|
+
"value": "rgba({theme.light.colors.surface-container-low}, 0.04)",
|
|
215
|
+
"type": "color"
|
|
216
|
+
},
|
|
217
|
+
"surface-neutral-highlight-hover": {
|
|
218
|
+
"value": "rgba({theme.light.colors.surface-container-low}, 0.08)",
|
|
219
|
+
"type": "color"
|
|
220
|
+
},
|
|
221
|
+
"surface-emphasis": {
|
|
222
|
+
"value": "{theme.dark.colors.emphasis-container}",
|
|
223
|
+
"type": "color"
|
|
224
|
+
},
|
|
225
|
+
"surface-emphasis-highlight": {
|
|
226
|
+
"value": "{theme.dark.colors.emphasis-8}",
|
|
227
|
+
"type": "color"
|
|
228
|
+
},
|
|
229
|
+
"surface-emphasis-highlight-hover": {
|
|
230
|
+
"value": "{theme.dark.colors.emphasis-8}",
|
|
231
|
+
"type": "color"
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"teradata": {
|
|
3
|
+
"teal-50": { "value": "#def9f8", "type": "color" },
|
|
4
|
+
"teal-100": { "value": "#b2ebea", "type": "color" },
|
|
5
|
+
"teal-200": { "value": "#85dddc", "type": "color" },
|
|
6
|
+
"teal-300": { "value": "#59cecd", "type": "color" },
|
|
7
|
+
"teal-400": { "value": "#2cc0bf", "type": "color" },
|
|
8
|
+
"teal-500": { "value": "#00b2b1", "type": "color" },
|
|
9
|
+
"teal-600": { "value": "#00a2a2", "type": "color" },
|
|
10
|
+
"teal-700": { "value": "#009392", "type": "color" },
|
|
11
|
+
"teal-800": { "value": "#008383", "type": "color" },
|
|
12
|
+
"teal-900": { "value": "#007373", "type": "color" },
|
|
13
|
+
"teal-1000": { "value": "#016b6b", "type": "color" },
|
|
14
|
+
"teal-1100": { "value": "#036464", "type": "color" },
|
|
15
|
+
"teal-1200": { "value": "#045c5c", "type": "color" },
|
|
16
|
+
"teal-1300": { "value": "#055454", "type": "color" },
|
|
17
|
+
"teal-1400": { "value": "#074d4d", "type": "color" },
|
|
18
|
+
"teal-1500": { "value": "#084545", "type": "color" },
|
|
19
|
+
"teal-1600": { "value": "#0a3e3e", "type": "color" },
|
|
20
|
+
"teal-1700": { "value": "#0b3636", "type": "color" },
|
|
21
|
+
"teal-1800": { "value": "#0c2e2e", "type": "color" },
|
|
22
|
+
"teal-1900": { "value": "#0e2727", "type": "color" },
|
|
23
|
+
"teal-2000": { "value": "#0f1f1f", "type": "color" },
|
|
24
|
+
|
|
25
|
+
"slate-50": { "value": "#e3e7e8", "type": "color" },
|
|
26
|
+
"slate-100": { "value": "#c9cfd1", "type": "color" },
|
|
27
|
+
"slate-200": { "value": "#afb6b9", "type": "color" },
|
|
28
|
+
"slate-300": { "value": "#959ea2", "type": "color" },
|
|
29
|
+
"slate-400": { "value": "#7b858a", "type": "color" },
|
|
30
|
+
"slate-500": { "value": "#616d73", "type": "color" },
|
|
31
|
+
"slate-600": { "value": "#57646b", "type": "color" },
|
|
32
|
+
"slate-700": { "value": "#4d5b62", "type": "color" },
|
|
33
|
+
"slate-800": { "value": "#43515a", "type": "color" },
|
|
34
|
+
"slate-900": { "value": "#394851", "type": "color" },
|
|
35
|
+
"slate-1000": { "value": "#2e3d42", "type": "color" },
|
|
36
|
+
"slate-1100": { "value": "#28353b", "type": "color" },
|
|
37
|
+
"slate-1200": { "value": "#222e33", "type": "color" },
|
|
38
|
+
"slate-1300": { "value": "#1f282e", "type": "color" },
|
|
39
|
+
"slate-1400": { "value": "#1a2126", "type": "color" },
|
|
40
|
+
"slate-1500": { "value": "#161c1f", "type": "color" },
|
|
41
|
+
"slate-1600": { "value": "#14171a", "type": "color" },
|
|
42
|
+
"slate-1700": { "value": "#101314", "type": "color" },
|
|
43
|
+
"slate-1800": { "value": "#0c0e0f", "type": "color" },
|
|
44
|
+
"slate-1900": { "value": "#060708", "type": "color" },
|
|
45
|
+
"slate-2000": { "value": "#020203", "type": "color" },
|
|
46
|
+
|
|
47
|
+
"orange-100": { "value": "#FFCFB3", "type": "color" },
|
|
48
|
+
"orange-200": { "value": "#FFAF81", "type": "color" },
|
|
49
|
+
"orange-300": { "value": "#FF8F4E", "type": "color" },
|
|
50
|
+
"orange-400": { "value": "#FF7728", "type": "color" },
|
|
51
|
+
"orange-500": { "value": "#FF5F02", "type": "color" },
|
|
52
|
+
"orange-600": { "value": "#F05800", "type": "color" },
|
|
53
|
+
"orange-700": { "value": "#E54900", "type": "color" },
|
|
54
|
+
"orange-800": { "value": "#D83B03", "type": "color" },
|
|
55
|
+
"orange-900": { "value": "#C23200", "type": "color" }
|
|
56
|
+
}
|
|
57
|
+
}
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
{
|
|
2
|
+
"light": {
|
|
3
|
+
"text-primary-on-background": {
|
|
4
|
+
"value": "{theme.light.colors.on-surface}",
|
|
5
|
+
"type": "color"
|
|
6
|
+
},
|
|
7
|
+
"text-secondary-on-background": {
|
|
8
|
+
"value": "{theme.light.colors.on-surface-variant}",
|
|
9
|
+
"type": "color"
|
|
10
|
+
},
|
|
11
|
+
"text-hint-on-background": {
|
|
12
|
+
"value": "{theme.light.colors.on-surface-variant}",
|
|
13
|
+
"type": "color"
|
|
14
|
+
},
|
|
15
|
+
"text-disabled-on-background": {
|
|
16
|
+
"value": "{theme.light.colors.on-surface-38}",
|
|
17
|
+
"type": "color"
|
|
18
|
+
},
|
|
19
|
+
"text-icon-on-background": {
|
|
20
|
+
"value": "{theme.light.colors.on-surface-variant}",
|
|
21
|
+
"type": "color"
|
|
22
|
+
},
|
|
23
|
+
"text-logo-on-background": { "value": "#FF5F02", "type": "color" },
|
|
24
|
+
"text-primary-on-light": {
|
|
25
|
+
"value": "{theme.light.colors.on-surface}",
|
|
26
|
+
"type": "color"
|
|
27
|
+
},
|
|
28
|
+
"text-secondary-on-light": {
|
|
29
|
+
"value": "{theme.light.colors.on-surface-variant}",
|
|
30
|
+
"type": "color"
|
|
31
|
+
},
|
|
32
|
+
"text-hint-on-light": {
|
|
33
|
+
"value": "{theme.light.colors.on-surface-variant}",
|
|
34
|
+
"type": "color"
|
|
35
|
+
},
|
|
36
|
+
"text-disabled-on-light": {
|
|
37
|
+
"value": "{theme.light.colors.on-surface-38}",
|
|
38
|
+
"type": "color"
|
|
39
|
+
},
|
|
40
|
+
"text-icon-on-light": {
|
|
41
|
+
"value": "{theme.light.colors.on-surface-variant}",
|
|
42
|
+
"type": "color"
|
|
43
|
+
},
|
|
44
|
+
"text-primary-on-dark": {
|
|
45
|
+
"value": "{theme.dark.colors.on-surface}",
|
|
46
|
+
"type": "color"
|
|
47
|
+
},
|
|
48
|
+
"text-secondary-on-dark": {
|
|
49
|
+
"value": "{theme.dark.colors.on-surface-variant}",
|
|
50
|
+
"type": "color"
|
|
51
|
+
},
|
|
52
|
+
"text-hint-on-dark": {
|
|
53
|
+
"value": "{theme.dark.colors.on-surface-variant}",
|
|
54
|
+
"type": "color"
|
|
55
|
+
},
|
|
56
|
+
"text-disabled-on-dark": {
|
|
57
|
+
"value": "{theme.dark.colors.on-surface-38}",
|
|
58
|
+
"type": "color"
|
|
59
|
+
},
|
|
60
|
+
"text-icon-on-dark": {
|
|
61
|
+
"value": "{theme.dark.colors.on-surface-variant}",
|
|
62
|
+
"type": "color"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"dark": {
|
|
66
|
+
"text-primary-on-background": {
|
|
67
|
+
"value": "{theme.dark.colors.on-surface}",
|
|
68
|
+
"type": "color"
|
|
69
|
+
},
|
|
70
|
+
"text-secondary-on-background": {
|
|
71
|
+
"value": "{theme.dark.colors.on-surface-variant}",
|
|
72
|
+
"type": "color"
|
|
73
|
+
},
|
|
74
|
+
"text-hint-on-background": {
|
|
75
|
+
"value": "{theme.dark.colors.on-surface-variant}",
|
|
76
|
+
"type": "color"
|
|
77
|
+
},
|
|
78
|
+
"text-disabled-on-background": {
|
|
79
|
+
"value": "{theme.dark.colors.on-surface-38}",
|
|
80
|
+
"type": "color"
|
|
81
|
+
},
|
|
82
|
+
"text-icon-on-background": {
|
|
83
|
+
"value": "{theme.dark.colors.on-surface-variant}",
|
|
84
|
+
"type": "color"
|
|
85
|
+
},
|
|
86
|
+
"text-logo-on-background": { "value": "#ffffff", "type": "color" },
|
|
87
|
+
"text-primary-on-light": {
|
|
88
|
+
"value": "{theme.light.colors.on-surface}",
|
|
89
|
+
"type": "color"
|
|
90
|
+
},
|
|
91
|
+
"text-secondary-on-light": {
|
|
92
|
+
"value": "{theme.light.colors.on-surface-variant}",
|
|
93
|
+
"type": "color"
|
|
94
|
+
},
|
|
95
|
+
"text-hint-on-light": {
|
|
96
|
+
"value": "{theme.light.colors.on-surface-variant}",
|
|
97
|
+
"type": "color"
|
|
98
|
+
},
|
|
99
|
+
"text-disabled-on-light": {
|
|
100
|
+
"value": "{theme.light.colors.on-surface-38}",
|
|
101
|
+
"type": "color"
|
|
102
|
+
},
|
|
103
|
+
"text-icon-on-light": {
|
|
104
|
+
"value": "{theme.light.colors.on-surface-variant}",
|
|
105
|
+
"type": "color"
|
|
106
|
+
},
|
|
107
|
+
"text-primary-on-dark": {
|
|
108
|
+
"value": "{theme.dark.colors.on-surface}",
|
|
109
|
+
"type": "color"
|
|
110
|
+
},
|
|
111
|
+
"text-secondary-on-dark": {
|
|
112
|
+
"value": "{theme.dark.colors.on-surface-variant}",
|
|
113
|
+
"type": "color"
|
|
114
|
+
},
|
|
115
|
+
"text-hint-on-dark": {
|
|
116
|
+
"value": "{theme.dark.colors.on-surface-variant}",
|
|
117
|
+
"type": "color"
|
|
118
|
+
},
|
|
119
|
+
"text-disabled-on-dark": {
|
|
120
|
+
"value": "{theme.dark.colors.on-surface-38}",
|
|
121
|
+
"type": "color"
|
|
122
|
+
},
|
|
123
|
+
"text-icon-on-dark": {
|
|
124
|
+
"value": "{theme.dark.colors.on-surface-variant}",
|
|
125
|
+
"type": "color"
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|