Skip to content

Commit e035f4e

Browse files
committed
fix improperly referenced tokens
1 parent 835e9d0 commit e035f4e

File tree

2 files changed

+61
-70
lines changed

2 files changed

+61
-70
lines changed

src/theme.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ export function getTheme({ themeKey, name, type }) {
266266
"font_weight": null
267267
},
268268
"hint": {
269-
"color": "fgColor/muted",
269+
"color": tokens["fgColor/muted"],
270270
"font_style": null,
271271
"font_weight": 700
272272
},
@@ -296,12 +296,12 @@ export function getTheme({ themeKey, name, type }) {
296296
"font_weight": null
297297
},
298298
"operator": {
299-
"color": "fgColor/default",
299+
"color": tokens["fgColor/default"],
300300
"font_style": null,
301301
"font_weight": null
302302
},
303303
"predictive": {
304-
"color": "fgColor/placeholder",
304+
"color": tokens["fgColor/placeholder"],
305305
"font_style": "italic",
306306
"font_weight": null
307307
},
@@ -311,7 +311,7 @@ export function getTheme({ themeKey, name, type }) {
311311
"font_weight": null
312312
},
313313
"primary": {
314-
"color": "fgColor/default",
314+
"color": tokens["fgColor/default"],
315315
"font_style": null,
316316
"font_weight": null
317317
},
@@ -321,17 +321,17 @@ export function getTheme({ themeKey, name, type }) {
321321
"font_weight": null
322322
},
323323
"punctuation": {
324-
"color": "fgColor/default",
324+
"color": tokens["fgColor/default"],
325325
"font_style": null,
326326
"font_weight": null
327327
},
328328
"punctuation.bracket": {
329-
"color": "fgColor/default",
329+
"color": tokens["fgColor/default"],
330330
"font_style": null,
331331
"font_weight": null
332332
},
333333
"punctuation.delimiter": {
334-
"color": "fgColor/default",
334+
"color": tokens["fgColor/default"],
335335
"font_style": null,
336336
"font_weight": null
337337
},

0 commit comments

Comments
 (0)