Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save saurookadook/5d0b5298f99f829dfcc7d0ac8e42a665 to your computer and use it in GitHub Desktop.

Select an option

Save saurookadook/5d0b5298f99f829dfcc7d0ac8e42a665 to your computer and use it in GitHub Desktop.
{
"editor.semanticTokenColorCustomizations": {
"enabled": false,
// "rules": {
// "variable.defaultLibrary": "#E5C07B"
// },
"[One Dark Pro]": {
// Apply to this theme only
"enabled": true,
"rules": {
"magicFunction:python": "#ee0000",
"function.declaration:python": "#990000",
"*.decorator:python": "#0000dd",
"*.typeHint:python": "#5500aa",
"*.typeHintComment:python": "#aaaaaa"
}
}
},
"editor.tokenColorCustomizations": {
"[Atom One Dark]": {
"textMateRules": [
{
"scope": [
"variable.other.object.js",
"variable.other.object.ts",
"meta.array.literal.js variable",
"meta.array.literal.jsx variable",
"meta.array.literal.ts variable",
"meta.array.literal.tsx variable"
],
"settings": {
"foreground": "#E06C75"
}
},
{
"scope": [
"variable.other-literal.key.js",
"variable.other-literal.key.jsx",
"variable.other-literal.key.ts",
"variable.other-literal.key.tsx",
"punctuation.separator.period.python"
],
"settings": {
"foreground": "#ABB2BF"
}
},
{
"scope": ["constant.other.caps.python"],
"settings": {
"foreground": "#D19A66"
}
},
{
"scope": [
"meta.function-call.python",
"meta.member.access.python"
],
"settings": {
"foreground": "#61AFEF"
}
},
{
"scope": ["meta.function-call.arguments.python"],
"settings": {
"foreground": "#D19A66"
}
},
{
"scope": [
"meta.attribute.python",
"meta.indexed-name.python",
"meta.item-access.python"
],
"settings": {
"foreground": "#E06C75"
}
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment