Skip to content

Commit

Permalink
improve colors
Browse files Browse the repository at this point in the history
  • Loading branch information
ZYinMD committed Dec 24, 2018
1 parent 86a7050 commit 998dcf1
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 17 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"scripts": {
"visualize": "node ./scripts/visualize.js",
"postvisualize": "printf 'For faster speed, you might want to run `node ./scripts/visualize.js` directly'",
"postversion": "auto-changelog -b 99 && git add CHANGELOG.md && git commit --amend --no-edit && git tag -f $(git tag | tail -1) HEAD"
"postversion": "auto-changelog -b 99 && git commit -a --amend --no-edit && git tag -f $(git tag | tail -1) HEAD"
},
"devDependencies": {
"auto-changelog": "^1.10.2",
Expand Down
46 changes: 37 additions & 9 deletions themes/sepia-from-cuttlefish.json
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@
"entity.name"
],
"settings": {
"foreground": "#9c3e"
"foreground": "#5b0"
}
},
{
Expand Down Expand Up @@ -375,7 +375,8 @@
{
"name": "function parameter declaration",
"scope": [
"variable.parameter"
"variable.parameter",
"entity.name.variable.parameter"
],
"settings": {
"foreground": "#dd8e"
Expand Down Expand Up @@ -448,7 +449,7 @@
"keyword.control.directive.include"
],
"settings": {
"foreground": "#f58c"
"foreground": "#e43a67dd"
}
},
{
Expand All @@ -457,7 +458,7 @@
"keyword.control"
],
"settings": {
"foreground": "#f58c"
"foreground": "#e43a67dd"
}
},
{
Expand All @@ -479,7 +480,7 @@
"keyword.operator"
],
"settings": {
"foreground": "#f58c"
"foreground": "#e43a67dd"
}
},
{
Expand Down Expand Up @@ -562,7 +563,7 @@
"punctuation.definition.directive"
],
"settings": {
"foreground": "#f58c"
"foreground": "#e43a67dd"
}
},
{
Expand Down Expand Up @@ -633,7 +634,7 @@
"keyword.control.at-rule.import punctuation.definition.keyword"
],
"settings": {
"foreground": "#f58c"
"foreground": "#e43a67dd"
}
},
{
Expand All @@ -651,7 +652,7 @@
"name": "CSS: !important",
"scope": "keyword.other.important",
"settings": {
"foreground": "#f58c"
"foreground": "#e43a67dd"
}
},
{
Expand Down Expand Up @@ -702,6 +703,24 @@
"foreground": "#00b673dd"
}
},
{
"name": "go: variable assignment",
"scope": [
"variable.other.assignment.go"
],
"settings": {
"foreground": "#0b7"
}
},
{
"name": "go: function call",
"scope": [
"support.function.go"
],
"settings": {
"foreground": "#9c3e"
}
},
{
"name": "go: import(string)",
"scope": [
Expand Down Expand Up @@ -789,6 +808,15 @@
"foreground": "#00b673dd"
}
},
{
"name": "java: variable declaration",
"scope": [
"variable.other.definition.java"
],
"settings": {
"foreground": "#0b7"
}
},
{
"name": "java: arguments",
"scope": [
Expand All @@ -815,7 +843,7 @@
"support.type.object.module"
],
"settings": {
"foreground": "#f58c"
"foreground": "#e43a67dd"
}
},
{
Expand Down
24 changes: 17 additions & 7 deletions themes/sepia.json
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,8 @@
{
"name": "function parameter declaration",
"scope": [
"variable.parameter"
"variable.parameter",
"entity.name.variable.parameter"
],
"settings": {
"foreground": "#67a"
Expand Down Expand Up @@ -424,7 +425,7 @@
"support.type"
],
"settings": {
"foreground": "#67a"
"foreground": "#b40b"
}
},
{
Expand Down Expand Up @@ -504,7 +505,7 @@
"constant.character.escape.backslash.regexp"
],
"settings": {
"foreground": "#e53d"
"foreground": "#e44d"
}
},
{
Expand Down Expand Up @@ -615,7 +616,7 @@
"keyword.control.at-rule punctuation.definition.keyword"
],
"settings": {
"foreground": "#094e"
"foreground": "#c10c"
}
},
{
Expand All @@ -636,7 +637,7 @@
"variable punctuation.definition"
],
"settings": {
"foreground": "#088"
"foreground": "#e44d"
}
},
{
Expand Down Expand Up @@ -799,6 +800,15 @@
"foreground": "#890"
}
},
{
"name": "java: variable declaration",
"scope": [
"variable.other.definition.java"
],
"settings": {
"foreground": "#780"
}
},
{
"name": "java: arguments",
"scope": [
Expand Down Expand Up @@ -880,7 +890,7 @@
"punctuation.section.embedded.end source.ruby"
],
"settings": {
"foreground": "#67a"
"foreground": "#b40b"
}
},
{
Expand Down Expand Up @@ -917,7 +927,7 @@
"string.quoted.docstring punctuation.definition.string"
],
"settings": {
"foreground": "#963c"
"foreground": "#b40b"
}
},
{
Expand Down

0 comments on commit 998dcf1

Please sign in to comment.