Skip to content

Commit

Permalink
fix(themes): update dark plus theme to color css scopes, resolves #34
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Lieben committed Feb 3, 2017
1 parent 0c566e7 commit a10ac53
Showing 1 changed file with 40 additions and 17 deletions.
57 changes: 40 additions & 17 deletions themes/dark_plus.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"name": "Function declarations",
"scope": [
"entity.name.function",
"support.function"
"support.function",

"support.constant.handlebars"
],
"settings": {
"foreground": "#DCDCAA"
Expand All @@ -19,8 +21,28 @@
"support.class",
"support.type",
"entity.name.type",
"entity.name.class",

"storage.type.cs",
"storage.type.java"
"storage.type.generic.cs",
"storage.type.modifier.cs",
"storage.type.variable.cs",

"storage.type.annotation.java",
"storage.type.generic.java",
"storage.type.java",
"storage.type.object.array.java",
"storage.type.primitive.array.java",
"storage.type.primitive.java",
"storage.type.token.java",

"storage.type.groovy",
"storage.type.annotation.groovy",
"storage.type.parameters.groovy",
"storage.type.generic.groovy",
"storage.type.object.array.groovy",
"storage.type.primitive.array.groovy",
"storage.type.primitive.groovy"
],
"settings": {
"foreground": "#4EC9B0"
Expand All @@ -34,7 +56,9 @@
"meta.type.new.expr",
"support.constant.math",
"support.constant.dom",
"support.constant.json"
"support.constant.json",

"entity.other.inherited-class"
],
"settings": {
"foreground": "#4EC9B0"
Expand All @@ -52,38 +76,37 @@
"scope": [
"variable.parameter",
"variable",
"variable.name",
"meta.definition.variable.name",
"support.variable"
],
"settings": {
"foreground": "#9CDCFE"
}
},
{
"name": "Object keys, TS gammar specific",
"scope": "object-literal.member.key",
"name": "Object keys, TS grammar specific",
"scope": [
"meta.object-literal.key",
"meta.object-literal.key entity.name.function"
],
"settings": {
"foreground": "#9CDCFE"
}
},
{
"name": "CSS property value",
"scope": [
"support.property-value",
"constant.rgb-value",
"support.property-value.scss",
"constant.rgb-value.scss"
"support.constant.property-value",
"support.constant.font-name",
"support.constant.media-type",
"support.constant.media",
"constant.other.color.rgb-value",
"constant.other.rgb-value",
"support.constant.color"
],
"settings": {
"foreground": "#CE9178"
}
},
{
"name": "JSX Tag names, workaround for flattening match with function",
"scope": "entity.name.function.tag",
"settings": {
"foreground": "#569cd6"
}
}
]
}

0 comments on commit a10ac53

Please sign in to comment.