Skip to content

Commit

Permalink
Merge pull request #4 from dyriavin/feat/add-dark-version
Browse files Browse the repository at this point in the history
Add dark version support
  • Loading branch information
dyriavin committed Aug 10, 2023
2 parents 55a6419 + 0aa3545 commit f7b7adc
Show file tree
Hide file tree
Showing 3 changed files with 891 additions and 4 deletions.
9 changes: 7 additions & 2 deletions 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.0.7",
"version": "1.1.1",
"publisher": "AlexanderDyriavin",
"icon" : "images/logo.png",
"repository": {
Expand Down Expand Up @@ -48,9 +48,14 @@
"contributes": {
"themes": [
{
"label": "Mimesis",
"label": "Mimesis Light",
"uiTheme": "vs",
"path": "./themes/Mimesis-color-theme.json"
},
{
"label": "Mimesis Dark",
"uiTheme": "vs-dark",
"path": "./themes/Mimesis-dark-color-theme.json"
}
]
}
Expand Down
8 changes: 6 additions & 2 deletions themes/Mimesis-color-theme.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "Mimesis",
"name": "Mimesis Light",
"colors": {
"focusBorder": "#63B0FF",
"foreground": "#6a737d",
Expand Down Expand Up @@ -587,7 +587,11 @@
"constant.language.undefined.js",
"constant.language.null.js",
"constant.language.boolean.false.js",
"constant.language.boolean.true.js"
"constant.language.boolean.true.js",
"constant.language.boolean.false.ts",
"constant.language.boolean.true.ts",
"constant.language.null.ts",
"constant.language.undefined.ts"
],
"settings": {
"foreground": "#0060DF"
Expand Down
Loading

0 comments on commit f7b7adc

Please sign in to comment.