mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 02:58:56 +01:00
Load VS themes from theme file, clean tokens.css
This commit is contained in:
38
extensions/theme-defaults/package.json
Normal file
38
extensions/theme-defaults/package.json
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user