Skip to content

Commit

Permalink
base00 in light means base0 in dark, tweak contrat for math operators
Browse files Browse the repository at this point in the history
  • Loading branch information
braver committed Feb 25, 2019
1 parent 0185501 commit dbc409c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
17 changes: 11 additions & 6 deletions Solarized (dark).sublime-color-scheme
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,14 @@
"foreground": "var(orange)"
},
{
"name": "Arithmetical, Assignment, Comparision Operators",
"scope": "keyword.operator.comparison, keyword.operator.assignment, keyword.operator.arithmetic",
"foreground": "var(base00)"
"name": "Assignment, Comparision Operators",
"scope": "keyword.operator.comparison, keyword.operator.assignment",
"foreground": "var(base0)"
},
{
"name": "Arithmetical Operators",
"scope": "keyword.operator.arithmetic",
"foreground": "var(base1)"
},
{
"name": "Storage",
Expand Down Expand Up @@ -231,7 +236,7 @@
{
"name": "(),{}",
"scope": "meta.brace.round, meta.brace.curly, punctuation.section, punctuation.section.block, punctuation.definition.parameters, punctuation.section.group",
"foreground": "var(base00)"
"foreground": "var(base0)"
},
{
"name": "CSS: Standard color value",
Expand All @@ -241,7 +246,7 @@
{
"name": "CSS: Selector > [] and non-spec tags",
"scope": "meta.selector.css",
"foreground": "var(base00)"
"foreground": "var(base0)"
},
{
"name": "CSS: Tag",
Expand Down Expand Up @@ -276,7 +281,7 @@
{
"name": "HTML: =",
"scope": "text.html.basic meta.tag.other.html, text.html.basic meta.tag.any.html, text.html.basic meta.tag.block.any, text.html.basic meta.tag.inline.any, text.html.basic meta.tag.structure.any.html, text.html.basic source.js.embedded.html, punctuation.separator.key-value.html",
"foreground": "var(base00)"
"foreground": "var(base0)"
},
{
"name": "HTML: something=",
Expand Down
9 changes: 7 additions & 2 deletions Solarized (light).sublime-color-scheme
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,15 @@
"foreground": "var(orange)"
},
{
"name": "Arithmetical, Assignment, Comparision Operators",
"scope": "keyword.operator.comparison, keyword.operator.assignment, keyword.operator.arithmetic",
"name": "Assignment, Comparision Operators",
"scope": "keyword.operator.comparison, keyword.operator.assignment",
"foreground": "var(base00)"
},
{
"name": "Arithmetical Operators",
"scope": "keyword.operator.arithmetic",
"foreground": "var(base01)"
},
{
"name": "Storage",
"scope": "storage",
Expand Down

0 comments on commit dbc409c

Please sign in to comment.