Last active
May 8, 2020 06:17
-
-
Save tinvaan/7763d60514727f29f22412753d407093 to your computer and use it in GitHub Desktop.
Github VSCode theme tweaks
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
"[GitHub Light]": { | |
"textMateRules": [ | |
{ | |
"scope": "variable.language.special.self.python", | |
"settings": { | |
"foreground": "#D73A49" | |
} | |
}, | |
{ | |
"scope": [ | |
"meta.function-call.python", | |
"meta.function-call.generic.python" | |
], | |
"settings": { | |
"foreground": "#6F42C1", | |
} | |
}, | |
{ | |
"scope": [ | |
"meta.member.access.python", | |
"meta.function-call.arguments.python", | |
"entity.name.function.decorator.python" | |
], | |
"settings": { | |
"foreground": "#005CC5" | |
} | |
}, | |
{ | |
"scope": [ | |
"string.quoted", | |
"string.unquoted", | |
"string.quoted.single", | |
"string.quoted.double", | |
"string.quoted.triple", | |
"string.interpolated", | |
"string.regexp", | |
"string.other" | |
], | |
"settings": { | |
"foreground": "#6e95bd" | |
} | |
}, | |
] | |
}, | |
"[GitHub Dark]": { | |
"textMateRules": [ | |
{ | |
"scope": "variable.language.special.self.python", | |
"settings": { | |
"foreground": "#F97583" | |
} | |
}, | |
{ | |
"scope": [ | |
"meta.function-call.python", | |
"meta.function-call.generic.python" | |
], | |
"settings": { | |
"foreground": "#B392F0", | |
} | |
}, | |
{ | |
"scope": [ | |
"meta.member.access.python", | |
"meta.function-call.arguments.python", | |
"entity.name.function.decorator.python" | |
], | |
"settings": { | |
"foreground": "#79B8FF" | |
} | |
}, | |
{ | |
"scope": [ | |
"string.quoted", | |
"string.unquoted", | |
"string.quoted.single", | |
"string.quoted.double", | |
"string.quoted.triple", | |
"string.interpolated", | |
"string.regexp", | |
"string.other" | |
], | |
"settings": { | |
"foreground": "#a6cbf0" | |
} | |
}, | |
] | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment