-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
2,378 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/** | ||
* Default extensions | ||
*/ | ||
export const defaultExtensions = [ | ||
'theme-defaults', | ||
'theme-monokai', | ||
]; |
Empty file.
3 changes: 3 additions & 0 deletions
3
src/extensions/theme-defaults/fileicons/images/document-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions
3
src/extensions/theme-defaults/fileicons/images/document-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions
3
src/extensions/theme-defaults/fileicons/images/folder-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions
3
src/extensions/theme-defaults/fileicons/images/folder-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions
4
src/extensions/theme-defaults/fileicons/images/folder-open-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions
4
src/extensions/theme-defaults/fileicons/images/folder-open-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions
5
src/extensions/theme-defaults/fileicons/images/root-folder-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions
5
src/extensions/theme-defaults/fileicons/images/root-folder-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions
5
src/extensions/theme-defaults/fileicons/images/root-folder-open-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions
5
src/extensions/theme-defaults/fileicons/images/root-folder-open-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
68 changes: 68 additions & 0 deletions
68
src/extensions/theme-defaults/fileicons/vs_minimal-icon-theme.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,68 @@ | ||
{ | ||
"iconDefinitions": { | ||
"_root_folder_dark": { | ||
"iconPath": "./images/root-folder-dark.svg" | ||
}, | ||
"_root_folder_open_dark": { | ||
"iconPath": "./images/root-folder-open-dark.svg" | ||
}, | ||
"_folder_dark": { | ||
"iconPath": "./images/folder-dark.svg" | ||
}, | ||
"_folder_open_dark": { | ||
"iconPath": "./images/folder-open-dark.svg" | ||
}, | ||
"_file_dark": { | ||
"iconPath": "./images/document-dark.svg" | ||
}, | ||
"_root_folder": { | ||
"iconPath": "./images/root-folder-light.svg" | ||
}, | ||
"_root_folder_open": { | ||
"iconPath": "./images/root-folder-open-light.svg" | ||
}, | ||
"_folder_light": { | ||
"iconPath": "./images/folder-light.svg" | ||
}, | ||
"_folder_open_light": { | ||
"iconPath": "./images/folder-open-light.svg" | ||
}, | ||
"_file_light": { | ||
"iconPath": "./images/document-light.svg" | ||
} | ||
}, | ||
|
||
"folderExpanded": "_folder_open_dark", | ||
"folder": "_folder_dark", | ||
"file": "_file_dark", | ||
"rootFolderExpanded": "_root_folder_open_dark", | ||
"rootFolder": "_root_folder_dark", | ||
"fileExtensions": { | ||
// icons by file extension | ||
}, | ||
"fileNames": { | ||
// icons by file name | ||
}, | ||
"languageIds": { | ||
// icons by language id | ||
}, | ||
"light": { | ||
"folderExpanded": "_folder_open_light", | ||
"folder": "_folder_light", | ||
"rootFolderExpanded": "_root_folder_open", | ||
"rootFolder": "_root_folder", | ||
"file": "_file_light", | ||
"fileExtensions": { | ||
// icons by file extension | ||
}, | ||
"fileNames": { | ||
// icons by file name | ||
}, | ||
"languageIds": { | ||
// icons by language id | ||
} | ||
}, | ||
"highContrast": { | ||
// overrides for high contrast | ||
} | ||
} |
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,51 @@ | ||
{ | ||
"name": "theme-defaults", | ||
"displayName": "%displayName%", | ||
"description": "%description%", | ||
"categories": [ "Themes" ], | ||
"version": "1.0.0", | ||
"publisher": "vscode", | ||
"license": "MIT", | ||
"engines": { "vscode": "*" }, | ||
"contributes": { | ||
"themes": [ | ||
{ | ||
"id": "Default Dark+", | ||
"label": "Dark+ (default dark)", | ||
"uiTheme": "vs-dark", | ||
"path": "./themes/dark_plus.json" | ||
}, | ||
{ | ||
"id": "Default Light+", | ||
"label": "Light+ (default light)", | ||
"uiTheme": "vs", | ||
"path": "./themes/light_plus.json" | ||
}, | ||
{ | ||
"id": "Visual Studio Dark", | ||
"label": "Dark (Visual Studio)", | ||
"uiTheme": "vs-dark", | ||
"path": "./themes/dark_vs.json" | ||
}, | ||
{ | ||
"id": "Visual Studio Light", | ||
"label": "Light (Visual Studio)", | ||
"uiTheme": "vs", | ||
"path": "./themes/light_vs.json" | ||
}, | ||
{ | ||
"id": "Default High Contrast", | ||
"label": "High Contrast", | ||
"uiTheme": "hc-black", | ||
"path": "./themes/hc_black.json" | ||
} | ||
], | ||
"iconThemes": [ | ||
{ | ||
"id": "vs-minimal", | ||
"label": "Minimal (Visual Studio Code)", | ||
"path": "./fileicons/vs_minimal-icon-theme.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,4 @@ | ||
{ | ||
"displayName": "Default Themes", | ||
"description": "The default Visual Studio light and dark themes" | ||
} |
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,25 @@ | ||
{ | ||
"$schema": "vscode://schemas/color-theme", | ||
"name": "Dark Default Colors", | ||
"colors": { | ||
"editor.background": "#1E1E1E", | ||
"editor.foreground": "#D4D4D4", | ||
"editor.inactiveSelectionBackground": "#3A3D41", | ||
"editorIndentGuide.background": "#404040", | ||
"editorIndentGuide.activeBackground": "#707070", | ||
"editor.selectionHighlightBackground": "#ADD6FF26", | ||
"list.dropBackground": "#383B3D", | ||
"activityBarBadge.background": "#007ACC", | ||
"sideBarTitle.foreground": "#BBBBBB", | ||
"input.placeholderForeground": "#A6A6A6", | ||
"settings.textInputBackground": "#292929", | ||
"settings.numberInputBackground": "#292929", | ||
"menu.background": "#252526", | ||
"menu.foreground": "#CCCCCC", | ||
"statusBarItem.remoteForeground": "#FFF", | ||
"statusBarItem.remoteBackground": "#16825D", | ||
"sideBarSectionHeader.background": "#0000", | ||
"sideBarSectionHeader.border": "#ccc3" | ||
}, | ||
"semanticHighlighting": true | ||
} |
Oops, something went wrong.