Skip to content

Instantly share code, notes, and snippets.

@alexciarlillo
Created November 30, 2018 22:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save alexciarlillo/b0352296a055a329e2696c6bcc55ebdb to your computer and use it in GitHub Desktop.
Save alexciarlillo/b0352296a055a329e2696c6bcc55ebdb to your computer and use it in GitHub Desktop.
VSCode customizations for Nord color theme
// color customizations for Nord
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"settings": {
"foreground": "#d1d5dc",
"background": "#2f343f"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"fontStyle": "italic bold",
"foreground": "#b3555e"
}
},
{
"name": "Entity Name Class/Type",
"scope": [
"entity.name.class",
"entity.name.type.class"
],
"settings": {
"foreground": "#ebcb8b"
}
},
{
"name": "Support Class",
"scope": "support.class",
"settings": {
"foreground": "#7191b1",
"fontStyle": "italic"
}
},
{
"name": "Variable",
"scope": "variable.other",
"settings": {
"foreground": "#d1d5dc"
}
},
{
"name": "Variable Language",
"scope": "variable.language",
"settings": {
"foreground": "#bf616a",
"fontStyle": "italic"
}
},
{
"name": "Punctuation",
"scope": "punctuation.definition",
"settings": {
"foreground": "#ebcb8b"
}
},
{
"name": "Punctuation Variable",
"scope": "punctuation.definition.variable",
"settings": {
"foreground": "#81a1c1"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"foreground": "#a3be8c"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"foreground": "#81a1c1"
}
},
{
"name": "Punctuation Definition Comment",
"scope": [
"punctuation.definition.comment",
"punctuation.end.definition.comment",
"punctuation.start.definition.comment"
],
"settings": {
"foreground": "#81a1c1"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"foreground": "#bf616a",
}
},
{
"name": "Storage type",
"scope": "storage.type",
"settings": {
"foreground": "#a6809f",
"fontStyle": "italic"
}
},
{
"name": "Entity Name Function",
"scope": "entity.name.function",
"settings": {
"foreground": "#7bcdb4"
}
},
{
"name": "Keyword",
"scope": [
"keyword - keyword.operator",
"keyword.operator.word",
"keyword.control"
],
"settings": {
"foreground": "#b48ead"
}
},
{
"name": "Operators",
"scope": "keyword.operator",
"settings": {
"foreground": "#ebcb8b"
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#7bcdb4"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"foreground": "#b48ead"
}
},
{
"name": "Entity Other Inherited Class",
"scope": "entity.other.inherited-class",
"settings": {
"fontStyle": "bold",
"foreground": "#a6809f"
}
},
],
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment