Created
August 4, 2021 22:10
-
-
Save baronfel/5da3e9c084fbd1fc420a230de6d9589f to your computer and use it in GitHub Desktop.
ionide tokens highlighting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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