Load VS themes from theme file, clean tokens.css

This commit is contained in:
Martin Aeschlimann
2016-03-13 22:50:52 +01:00
parent 0785eecda3
commit 64a83fe3ad
12 changed files with 317 additions and 676 deletions

View File

@@ -0,0 +1,38 @@
{
"name": "theme-defaults",
"displayName": "Default Themes",
"description": "The default light and dark themes (Plus and Visual Studio)",
"categories": [ "Themes" ],
"version": "0.1.10",
"publisher": "vscode",
"engines": { "vscode": "*" },
"contributes": {
"themes": [
{
"label": "Dark+ (default dark)",
"uiTheme": "vs-dark",
"path": "./themes/dark_plus.json"
},
{
"label": "Light+ (default light)",
"uiTheme": "vs",
"path": "./themes/light_plus.json"
},
{
"label": "Dark (Visual Studio)",
"uiTheme": "vs-dark",
"path": "./themes/dark_vs.json"
},
{
"label": "Light (Visual Studio)",
"uiTheme": "vs",
"path": "./themes/light_vs.json"
},
{
"label": "High Contrast",
"uiTheme": "hc-black",
"path": "./themes/hc_black.json"
}
]
}
}