villa-design-tokens 1.0.119 → 1.0.120

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "villa-design-tokens",
3
3
  "description": "Design Tokens published by Design Token Studio with VPRO's Figma Design System",
4
4
  "author": "VPRO",
5
- "version": "1.0.119",
5
+ "version": "1.0.120",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "git+https://github.com/vpro/Design-tokens.git"
@@ -3,6 +3,7 @@
3
3
  "global",
4
4
  "base",
5
5
  "brands/whitelabel",
6
- "brands/human"
6
+ "brands/human",
7
+ "brands/vpro"
7
8
  ]
8
9
  }
@@ -108,7 +108,8 @@
108
108
  "selectedTokenSets": {
109
109
  "global": "source",
110
110
  "brands/whitelabel": "enabled",
111
- "base": "enabled"
111
+ "base": "enabled",
112
+ "brands/vpro": "disabled"
112
113
  }
113
114
  },
114
115
  {
@@ -225,7 +226,8 @@
225
226
  "selectedTokenSets": {
226
227
  "global": "source",
227
228
  "brands/human": "enabled",
228
- "base": "enabled"
229
+ "base": "enabled",
230
+ "brands/vpro": "disabled"
229
231
  }
230
232
  }
231
233
  ]
@@ -0,0 +1,302 @@
1
+ {
2
+ "fontfamily": {
3
+ "body": {
4
+ "value": "{fontfamily.global.roboto}",
5
+ "type": "fontFamilies"
6
+ },
7
+ "utility": {
8
+ "value": "{fontfamily.global.roboto}",
9
+ "type": "fontFamilies"
10
+ },
11
+ "heading": {
12
+ "value": "{fontfamily.global.bureau}",
13
+ "type": "fontFamilies"
14
+ },
15
+ "display": {
16
+ "value": "{fontfamily.global.bureau}",
17
+ "type": "fontFamilies"
18
+ }
19
+ },
20
+ "lineheight": {
21
+ "body": {
22
+ "value": "{lineheight.global.300}",
23
+ "type": "lineHeights"
24
+ },
25
+ "utility": {
26
+ "value": "{lineheight.global.100}",
27
+ "type": "lineHeights"
28
+ },
29
+ "heading": {
30
+ "value": "{lineheight.global.100}",
31
+ "type": "lineHeights"
32
+ },
33
+ "display": {
34
+ "value": "{lineheight.global.100}",
35
+ "type": "lineHeights"
36
+ }
37
+ },
38
+ "letterspacing": {
39
+ "body": {
40
+ "value": "{letterspacing.global.200}",
41
+ "type": "letterSpacing"
42
+ },
43
+ "utility": {
44
+ "value": "{letterspacing.global.200}",
45
+ "type": "letterSpacing"
46
+ },
47
+ "heading": {
48
+ "value": "{letterspacing.global.200}",
49
+ "type": "letterSpacing"
50
+ },
51
+ "display": {
52
+ "value": "{letterspacing.global.200}",
53
+ "type": "letterSpacing"
54
+ }
55
+ },
56
+ "color": {
57
+ "brand": {
58
+ "primary": {
59
+ "value": "{color.global.mint.100}",
60
+ "type": "color"
61
+ },
62
+ "secondary": {
63
+ "value": "{color.global.grey.500}",
64
+ "type": "color"
65
+ }
66
+ },
67
+ "background": {
68
+ "default": {
69
+ "value": "{color.global.grey.100}",
70
+ "type": "color"
71
+ },
72
+ "secondary": {
73
+ "value": "{color.global.grey.150}",
74
+ "type": "color"
75
+ },
76
+ "tertiairy": {
77
+ "value": "{color.global.grey.200}",
78
+ "type": "color"
79
+ }
80
+ },
81
+ "surface": {
82
+ "default": {
83
+ "value": "{color.global.grey.150}",
84
+ "type": "color"
85
+ },
86
+ "secondary": {
87
+ "value": "{color.global.grey.100}",
88
+ "type": "color"
89
+ },
90
+ "tertiary": {
91
+ "value": "{color.global.grey.300}",
92
+ "type": "color"
93
+ },
94
+ "disabled": {
95
+ "value": "{color.global.grey.300}",
96
+ "type": "color"
97
+ },
98
+ "dark": {
99
+ "value": "{color.global.grey.500}",
100
+ "type": "color"
101
+ },
102
+ "brand": {
103
+ "value": "{color.brand.primary}",
104
+ "type": "color"
105
+ }
106
+ },
107
+ "text": {
108
+ "title": {
109
+ "value": "{color.global.grey.500}",
110
+ "type": "color"
111
+ },
112
+ "default": {
113
+ "value": "{color.global.grey.500}",
114
+ "type": "color"
115
+ },
116
+ "subtle": {
117
+ "value": "{color.global.grey.400}",
118
+ "type": "color"
119
+ },
120
+ "disabled": {
121
+ "value": "{color.global.grey.300}",
122
+ "type": "color"
123
+ },
124
+ "inverse": {
125
+ "value": "{color.global.grey.100}",
126
+ "type": "color"
127
+ },
128
+ "error": {
129
+ "value": "{color.global.red.100}",
130
+ "type": "color"
131
+ }
132
+ },
133
+ "icon": {
134
+ "primary": {
135
+ "value": "{color.global.grey.500}",
136
+ "type": "color"
137
+ },
138
+ "secondary": {
139
+ "value": "{color.global.grey.400}",
140
+ "type": "color"
141
+ },
142
+ "tertiary": {
143
+ "value": "{color.global.grey.300}",
144
+ "type": "color"
145
+ },
146
+ "inverse": {
147
+ "value": "{color.global.grey.100}",
148
+ "type": "color"
149
+ },
150
+ "error": {
151
+ "value": "{color.global.red.100}",
152
+ "type": "color"
153
+ }
154
+ },
155
+ "primary": {
156
+ "interactive": {
157
+ "default": {
158
+ "value": "{color.global.orange.100}",
159
+ "type": "color"
160
+ },
161
+ "hover": {
162
+ "value": "{color.global.orange.50}",
163
+ "type": "color"
164
+ },
165
+ "active": {
166
+ "value": "{color.global.blue.150}",
167
+ "type": "color"
168
+ }
169
+ },
170
+ "on-interactive": {
171
+ "default": {
172
+ "value": "{color.global.grey.500}",
173
+ "type": "color"
174
+ },
175
+ "hover": {
176
+ "value": "{color.global.grey.500}",
177
+ "type": "color"
178
+ },
179
+ "active": {
180
+ "value": "{color.global.grey.100}",
181
+ "type": "color"
182
+ }
183
+ }
184
+ },
185
+ "border": {
186
+ "default": {
187
+ "value": "{color.global.grey.250}",
188
+ "type": "color"
189
+ },
190
+ "hover": {
191
+ "value": "{color.global.blue.100}",
192
+ "type": "color"
193
+ },
194
+ "active": {
195
+ "value": "{color.global.blue.100}",
196
+ "type": "color"
197
+ },
198
+ "error": {
199
+ "value": "{color.global.red.100}",
200
+ "type": "color"
201
+ },
202
+ "inverse": {
203
+ "value": "{color.global.grey.300}",
204
+ "type": "color"
205
+ },
206
+ "focus": {
207
+ "value": "{color.brand.primary}",
208
+ "type": "color"
209
+ },
210
+ "filled": {
211
+ "value": "{color.global.grey.500}",
212
+ "type": "color"
213
+ }
214
+ },
215
+ "link": {
216
+ "default": {
217
+ "value": "{color.global.blue.150}",
218
+ "type": "color"
219
+ },
220
+ "hover": {
221
+ "value": "{color.global.blue.100}",
222
+ "type": "color"
223
+ },
224
+ "inverse": {
225
+ "value": "{color.global.grey.100}",
226
+ "type": "color"
227
+ },
228
+ "inverse-hover": {
229
+ "value": "{color.global.grey.300}",
230
+ "type": "color"
231
+ },
232
+ "inverse-subtle": {
233
+ "value": "{color.global.grey.300}",
234
+ "type": "color"
235
+ },
236
+ "inverse-subtle-hover": {
237
+ "value": "{color.global.grey.100}",
238
+ "type": "color"
239
+ }
240
+ },
241
+ "secondary": {
242
+ "interactive": {
243
+ "default": {
244
+ "value": "{color.brand.secondary}",
245
+ "type": "color"
246
+ },
247
+ "hover": {
248
+ "value": "{color.global.blue.100}",
249
+ "type": "color"
250
+ },
251
+ "active": {
252
+ "value": "{color.global.grey.450}",
253
+ "type": "color"
254
+ }
255
+ },
256
+ "on-interactive": {
257
+ "default": {
258
+ "value": "{color.global.grey.100}",
259
+ "type": "color"
260
+ },
261
+ "hover": {
262
+ "value": "{color.global.grey.100}",
263
+ "type": "color"
264
+ },
265
+ "active": {
266
+ "value": "{color.global.grey.100}",
267
+ "type": "color"
268
+ }
269
+ }
270
+ },
271
+ "tertiary": {
272
+ "interactive": {
273
+ "default": {
274
+ "value": "{color.background.default}",
275
+ "type": "color"
276
+ },
277
+ "hover": {
278
+ "value": "{color.global.orange.50}",
279
+ "type": "color"
280
+ },
281
+ "active": {
282
+ "value": "{color.global.blue.150}",
283
+ "type": "color"
284
+ }
285
+ },
286
+ "on-interactive": {
287
+ "default": {
288
+ "value": "{color.global.grey.500}",
289
+ "type": "color"
290
+ },
291
+ "hover": {
292
+ "value": "{color.global.grey.500}",
293
+ "type": "color"
294
+ },
295
+ "active": {
296
+ "value": "{color.global.grey.100}",
297
+ "type": "color"
298
+ }
299
+ }
300
+ }
301
+ }
302
+ }