Skip to content

Commit

Permalink
Merge pull request #5 from dyriavin/feat/adjust-typescript-syntax-sup…
Browse files Browse the repository at this point in the history
…port

[feat] Adjust typescript syntax support [ts]
  • Loading branch information
dyriavin committed Sep 6, 2023
2 parents f7b7adc + a3f6d9b commit ff1fbd5
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "mimesis",
"displayName": "mimesis",
"description": "Light color scheme color scheme well-suited for those who prefer a light and minimalist design for their coding environment",
"version": "1.1.1",
"version": "1.1.2",
"publisher": "AlexanderDyriavin",
"icon" : "images/logo.png",
"repository": {
Expand Down
13 changes: 11 additions & 2 deletions themes/Mimesis-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,12 @@
"entity.other.attribute-name.pseudo-element.css",
"entity.other.attribute-name.pseudo-class.css",
"punctuation.definition.binding-pattern.object.js",
"punctuation.definition.binding-pattern.array.js"
"punctuation.definition.binding-pattern.array.js",
"punctuation.definition.typeparameters.begin.ts",
"punctuation.definition.typeparameters.end.ts",
"keyword.operator.relational.ts",
"keyword.operator.ternary.ts",
"keyword.operator.type.ts"
],
"settings": {
"foreground": "#b5007f"
Expand Down Expand Up @@ -349,7 +354,8 @@
"support.class.php",
"constant.other.php",
"entity.other.alias.php",
"entity.other.inherited-class.php"
"entity.other.inherited-class.php",
"entity.name.type.interface.php"
],
"settings": {
"foreground": "#D70022"
Expand Down Expand Up @@ -589,6 +595,7 @@
"constant.language.boolean.false.js",
"constant.language.boolean.true.js",
"constant.language.boolean.false.ts",
"support.type.builtin.ts",
"constant.language.boolean.true.ts",
"constant.language.null.ts",
"constant.language.undefined.ts"
Expand Down Expand Up @@ -779,6 +786,8 @@
"name": "Entity - TS",
"scope": [
"entity.name.type.module.ts",
"entity.name.type.class.ts",
"entity.name.type.ts",
"entity.name.type.interface.ts",
"entity.name.type.enum.ts"
],
Expand Down
13 changes: 11 additions & 2 deletions themes/Mimesis-dark-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,13 @@
"punctuation.section.method.end.bracket.curly.java",
"punctuation.section.class.begin.bracket.curly.java",
"punctuation.section.class.end.bracket.curly.java",
"punctuation.bracket.round.java"
"punctuation.bracket.round.java",
"punctuation.definition.binding-pattern.array.js",
"punctuation.definition.typeparameters.begin.ts",
"punctuation.definition.typeparameters.end.ts",
"keyword.operator.relational.ts",
"keyword.operator.ternary.ts",
"keyword.operator.type.ts"
],
"settings": {
"foreground": "#E354AF"
Expand Down Expand Up @@ -555,6 +561,7 @@
"constant.language.boolean.true.js",
"constant.language.boolean.false.ts",
"constant.language.boolean.true.ts",
"support.type.builtin.ts",
"constant.language.null.ts",
"constant.language.undefined.ts"
],
Expand Down Expand Up @@ -745,7 +752,9 @@
"scope": [
"entity.name.type.module.ts",
"entity.name.type.interface.ts",
"entity.name.type.enum.ts"
"entity.name.type.enum.ts",
"entity.name.type.class.ts",
"entity.name.type.ts",
],
"settings": {
"foreground": "#DB5860"
Expand Down

0 comments on commit ff1fbd5

Please sign in to comment.