forked from daylerees/colour-schemes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request daylerees#214 from danvirsen/master
Added patterns for vscode
- Loading branch information
Showing
179 changed files
with
41,037 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{% set uiTheme = 'vs' %} | ||
{% set uiTheme = theme.type == 'dark' ? 'vs-dark' : uiTheme %} | ||
{% set uiTheme = theme.dir == 'contrast' ? 'hc-black' : uiTheme %} | ||
{ | ||
"name": "{{ theme.slug }}", | ||
"version": "1.0.0", | ||
"displayName": "{{ theme.name }} Theme", | ||
"description": "{{ theme.name }} theme by {{ theme.author }}", | ||
"publisher": "Dayle Rees", | ||
"repository": "https://github.com/daylerees/colour-schemes", | ||
"license": "MIT", | ||
"engines": { | ||
"vscode": "^1.13.0" | ||
}, | ||
"categories": [ | ||
"Themes" | ||
], | ||
"contributes": { | ||
"themes": [ | ||
{ | ||
"label": "{{ theme.name }}", | ||
"uiTheme": "{{ uiTheme }}", | ||
"path": "./{{ theme.slug }}.json" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"type": "Visual Studio Code Colour Scheme", | ||
"directory": "vscode", | ||
|
||
"templates": [ | ||
{ | ||
"file": "package.pattern", | ||
"name": "daylerees.theme.%theme.slug%/package", | ||
"directory": "", | ||
"extension": ".json" | ||
}, | ||
{ | ||
"file": "vscode.pattern", | ||
"name": "daylerees.theme.%theme.slug%/%theme.slug%", | ||
"directory": "", | ||
"extension": ".json" | ||
} | ||
] | ||
} |
Oops, something went wrong.