Created
July 14, 2020 12:12
-
-
Save tinvaan/f1f4e914872aef66258f37a5a02e85cf to your computer and use it in GitHub Desktop.
CodePen-Nights VSCode syntax tweaks for Python
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
"[CodePen-Nights]": { | |
"textMateRules": [ | |
{ | |
"scope": "variable.parameter.function-call.python", | |
"settings": { | |
"foreground": "#E06C75" | |
} | |
}, | |
{ | |
"scope": "meta.function-call.arguments.python", | |
"settings": { | |
"foreground": "#D19A66", | |
} | |
}, | |
{ | |
"scope": [ | |
"meta.function-call.python", | |
"meta.function-call.generic.python" | |
], | |
"settings": { | |
"foreground": "#61afefff", | |
} | |
}, | |
{ | |
"scope": [ | |
"comment.line.double-slash", | |
"comment.line.number-sign.python", | |
"keyword.control.flow.python" | |
], | |
"settings": { | |
"fontStyle": "" | |
} | |
}, | |
{ | |
"scope": [ | |
"keyword.control.import.python", | |
"variable.language.special.self.python", | |
"variable.parameter.function.language.special.self.python" | |
], | |
"settings": { | |
"foreground": "#FF8D41", | |
"fontStyle": "" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment