Skip to content

Instantly share code, notes, and snippets.

@baronfel
Created August 4, 2021 22:10
Show Gist options
  • Save baronfel/5da3e9c084fbd1fc420a230de6d9589f to your computer and use it in GitHub Desktop.
Save baronfel/5da3e9c084fbd1fc420a230de6d9589f to your computer and use it in GitHub Desktop.
ionide tokens highlighting
{
"editor.semanticTokenColorCustomizations": {
// note: the keys of this dictionary are your installed themes. you'll have to set these for each theme you want to override.
"[Default Dark+]": {
"enabled": true,
"rules": {
"member.mutable": {
"foreground": "#FF0000",
"fontStyle": "underline",
},
"variable.disposable": {
"foreground": "#ff8b2c",
"fontStyle": "bold"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment