Can anyone help me figure out how to change the text color of my Sass variable tokens within VS Code

I'm looking for the setting that will allow me to change the color of the actual text of the variable in Sass. Any help is greatly appreciated!
3 Replies
b1mind
b1mind16mo ago
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "Sass Variables",
"scope": [
"meta.property-list.scss variable.scss",
"meta.property-list.sass variable.sass"
],
"settings": {
"foreground": "#colorHex"
}
}
]
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "Sass Variables",
"scope": [
"meta.property-list.scss variable.scss",
"meta.property-list.sass variable.sass"
],
"settings": {
"foreground": "#colorHex"
}
}
]
},
something like this in your settings.json
Raedel
RaedelOP16mo ago
Thanks so much! This got me exactly what I needed
b1mind
b1mind16mo ago
Np glad it helped!

Did you find this page helpful?