Created
December 31, 2020 10:52
-
-
Save NanoMichael/54776ddd33735a53b3ce1f06969b4367 to your computer and use it in GitHub Desktop.
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.tokenColorCustomizations": { | |
"[One Dark Pro]": { | |
"textMateRules": [ | |
{ | |
"scope": "variable.other.local", | |
"settings": { | |
"foreground": "#7DBBBB" | |
} | |
}, | |
{ | |
"scope": "variable.parameter", | |
"settings": { | |
"foreground": "#FFFFFF", | |
"fontStyle": "" | |
} | |
}, | |
{ | |
"scope": "entity.name.function", | |
"settings": { | |
"foreground": "#FFC66D" | |
} | |
}, | |
{ | |
"scope": "entity.name.type", | |
"settings": { | |
"foreground": "#41BB28", | |
"fontStyle": "bold" | |
} | |
}, | |
{ | |
"scope": "variable.other.property", | |
"settings": { | |
"foreground": "#CC7832" | |
} | |
}, | |
{ | |
"scope": "variable.other.enummember", | |
"settings": { | |
"fontStyle": "bold" | |
} | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment