Skip to content

Instantly share code, notes, and snippets.

@Braytiner
Created February 18, 2019 11:37
Show Gist options
  • Save Braytiner/8e0bc6cf88f354836c2cd842f0a853cc to your computer and use it in GitHub Desktop.
Save Braytiner/8e0bc6cf88f354836c2cd842f0a853cc to your computer and use it in GitHub Desktop.
Tema personalizado VS Code
"editor.tokenColorCustomizations": {
"[Visual Studio Dark]": {
"comments": "#444444",
"functions": "#AAAAAA",
"keywords": "#00AAAA",
// "numbers": "#009999",
"strings": "#BF7766",
"types": "#AAAAAA",
"variables": "#AAAAAA",
"textMateRules": [
{
"scope": "constant",
"settings": {
"foreground": "#FF0000"
}
},
{
"scope": "constant.character",
"settings": {
"foreground": "#DD00DDCC"
}
},
{
"scope": "constant.character.escape",
"settings": {
"foreground": "#FF0000"
}
},
// {
// "scope": "constant.numeric",
// "settings": {
// "foreground": "#CCBB00"
// }
// },
{
"scope": "constant.rgb-value",
"settings": {
"foreground": "#FF0000"
}
},
{
"scope": "constant.other",
"settings": {
"foreground": "#AAAAAA"
}
},
{
"scope": "emphasis",
"settings": {
"foreground": "#BB00BB"
}
},
{
"scope": "entity.name.class",
"settings": {
"foreground": "#FF0000"
}
},
{
"scope": "entity.name",
"settings": {
"foreground": "#FF0000"
}
},
{
"scope": "entity.name.class",
"settings": {
"foreground": "#FF0000"
}
},
{
"scope": "entity.name.function",
"settings": {
"foreground": "#AAAA77"
}
},
{
"scope": "entity.name.method",
"settings": {
"foreground": "#AA00AA"
}
},
{
"scope": "entity.name.section",
"settings": {
"foreground": "#FF0000"
}
},
{
"scope": "entity.name.selector",
"settings": {
"foreground": "#FF0000"
}
},
// {
// "scope": "entity.name.tag",
// "settings": {
// "foreground": "#995599"
// }
// }
{
"scope": "entity.other.attribute-name",
"settings": {
"foreground": "#AAAAAA"
}
},
{
"scope": "entity.name.type",
"settings": {
"foreground": "#FF0000"
}
},
{
"scope": "entity.name.type",
"settings": {
"foreground": "#00AAAA"
}
},
{
"scope": "entity.other",
"settings": {
"foreground": "#FF0000"
}
},
{
"scope": "entity.other.inherited-class",
"settings": {
"foreground": "#FF0000"
}
},
{
"scope": "keyword.operator",
"settings": {
"foreground": "#AA88AA"
}
},
{
"scope": "keyword.control",
"settings": {
"foreground": "#AA77AA"
}
},
{
"scope": "keyword.operator.new",
"settings": {
"foreground": "#5599CC"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#5599CC"
}
},
{
"scope": "meta",
"settings": {
"foreground": "#AAAAAA"
}
},
{
"scope": "support",
"settings": {
"foreground": "#999999"
}
},
{
"scope": "support.function",
"settings": {
"foreground": "#AAAA88"
}
},
{
"scope": "support.type.property-name",
"settings": {
"foreground": "#AAAAAA"
}
},
{
"scope": "variable",
"settings": {
"foreground": "#AAAAAA"
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment