Skip to content

Instantly share code, notes, and snippets.

@tinvaan
Created July 14, 2020 12:12
Show Gist options
  • Save tinvaan/f1f4e914872aef66258f37a5a02e85cf to your computer and use it in GitHub Desktop.
Save tinvaan/f1f4e914872aef66258f37a5a02e85cf to your computer and use it in GitHub Desktop.
CodePen-Nights VSCode syntax tweaks for Python
"[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