Skip to content

Commit

Permalink
Bump version to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sakari Mursu committed Jul 11, 2020
1 parent 9551e53 commit 882c392
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.6.0

- Add type coloring to misiing graphql types (scalar and enum)
- Make custom grapqhl types use different color from regular types to distinguis them more easily from the built-in types

## 0.5.0

- Make word match highlight more prominent by changing it to yellow
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kiboku-vscode-theme",
"version": "0.5.0",
"version": "0.6.0",
"displayName": "Kiboku Theme",
"description": "Kiboku theme for VS Code",
"license": "MIT",
Expand Down
9 changes: 7 additions & 2 deletions themes/kiboku-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@
},
{
"name": "Types",
"scope": "entity.name.type, support.type.primitive, support.type.builtin, \tpunctuation.definition.typeparameters.begin, \tpunctuation.definition.typeparameters.end, keyword.operator.nulltype.graphql, support.type.graphql, variable.fragment.graphql",
"scope": "entity.name.type, support.type.primitive, support.type.builtin, \tpunctuation.definition.typeparameters.begin, \tpunctuation.definition.typeparameters.end",
"settings": { "foreground": "#FF9CE6" }
},
{
Expand All @@ -221,9 +221,14 @@
},
{
"name": "Graphql types",
"scope": "keyword.operator.nulltype.graphql, support.type.graphql",
"scope": "variable.fragment.graphql, keyword.operator.nulltype.graphql, support.type.enum.graphql, entity.scalar.graphql",
"settings": { "foreground": "#FF9CE6" }
},
{
"name": "Graphql custom types and function",
"scope": "support.type.graphql, entity.name.function.graphql",
"settings": { "foreground": "#9CB5FF" }
},
{
"name": "Graphql variables",
"scope": "variable.graphql, variable.fragment.graphql",
Expand Down

0 comments on commit 882c392

Please sign in to comment.