Skip to content

Commit

Permalink
fix(themes): update to latest styles of vscode, resolves #34
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Lieben committed Feb 13, 2017
1 parent 3399949 commit 994c411
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 27 deletions.
1 change: 0 additions & 1 deletion themes/dark_plus.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@
{
"name": "Variable and parameter name",
"scope": [
"variable.parameter",
"variable",
"meta.definition.variable.name",
"support.variable"
Expand Down
52 changes: 32 additions & 20 deletions themes/dark_vs.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@
}
},
{
"scope": "constant.numeric",
"scope": [
"constant.numeric"
],
"settings": {
"foreground": "#b5cea8"
}
Expand All @@ -50,20 +52,14 @@
"foreground": "#646695"
}
},
{
"scope": "constant.rgb-value",
"settings": {
"foreground": "#d4d4d4"
}
},
{
"scope": "entity.name.tag",
"settings": {
"foreground": "#569cd6"
}
},
{
"scope": "entity.name.selector",
"scope": "entity.name.tag.css",
"settings": {
"foreground": "#d7ba7d"
}
Expand All @@ -75,7 +71,19 @@
}
},
{
"scope": "entity.other.attribute-name.css",
"scope": [
"entity.other.attribute-name.class.css",
"entity.other.attribute-name.class.mixin.css",
"entity.other.attribute-name.id.css",
"entity.other.attribute-name.parent-selector.css",
"entity.other.attribute-name.pseudo-class.css",
"entity.other.attribute-name.pseudo-element.css",

"source.css.less entity.other.attribute-name.id",

"entity.other.attribute-name.attribute.scss",
"entity.other.attribute-name.scss"
],
"settings": {
"foreground": "#d7ba7d"
}
Expand Down Expand Up @@ -131,13 +139,13 @@
}
},
{
"scope": "markup.punctuation.quote.beginning",
"scope": "beginning.punctuation.definition.quote.markdown",
"settings": {
"foreground": "#608b4e"
}
},
{
"scope": "markup.punctuation.list.beginning",
"scope": "beginning.punctuation.definition.list.markdown",
"settings": {
"foreground": "#6796e6"
}
Expand Down Expand Up @@ -186,7 +194,7 @@
}
},
{
"scope": "meta.header.diff",
"scope": "meta.diff.header",
"settings": {
"foreground": "#569cd6"
}
Expand Down Expand Up @@ -233,8 +241,15 @@
"foreground": "#d16969"
}
},

{
"scope": "support.type.property-name",
"scope": [
"support.type.vendored.property-name",
"support.type.property-name",
"variable.css",
"variable.scss",
"variable.other.less"
],
"settings": {
"foreground": "#9cdcfe"
}
Expand All @@ -251,12 +266,6 @@
"foreground": "#569cd6"
}
},
{
"scope": "keyword.control.less",
"settings": {
"foreground": "#d7ba7d"
}
},
{
"scope": "keyword.operator",
"settings": {
Expand All @@ -276,7 +285,10 @@
}
},
{
"scope": "metatag.php",
"scope": [
"punctuation.section.embedded.begin.metatag.php",
"punctuation.section.embedded.end.metatag.php"
],
"settings": {
"foreground": "#569cd6"
}
Expand Down
13 changes: 7 additions & 6 deletions themes/light_vs.json
Original file line number Diff line number Diff line change
Expand Up @@ -270,18 +270,19 @@
},
{
"scope": [
"support.type.property-name.css",
"support.type.property-name.variable.css",
"support.type.property-name.media.css",
"support.type.property-name.less",
"support.type.property-name.scss"
"support.type.vendored.property-name",
"support.type.property-name",
"variable.css",
"variable.scss",
"variable.other.less"

],
"settings": {
"foreground": "#ff0000"
}
},
{
"scope": "support.type.property-name",
"scope": "support.type.property-name.json",
"settings": {
"foreground": "#0451a5"
}
Expand Down

0 comments on commit 994c411

Please sign in to comment.