[theme] dark & light plus (#1470)

This commit is contained in:
Martin Aeschlimann
2016-01-06 12:16:29 +01:00
parent 910b7cd436
commit 8ec0425c67
3 changed files with 132 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{
"name": "theme-dark-plus",
"version": "0.1.0",
"publisher": "vscode",
"engines": { "vscode": "*" },
"contributes": {
"themes": [
{
"label": "Dark+",
"description": "Dark theme with a touch of color",
"uiTheme": "vs-dark",
"path": "./themes/dark_plus.tmTheme"
},
{
"label": "Light+",
"description": "Light theme with a touch of color",
"uiTheme": "vs",
"path": "./themes/light_plus.tmTheme"
}
]
}
}