Skip to content

Commit bbc891e

Browse files
committed
feat: some default extensions
1 parent 36597b7 commit bbc891e

29 files changed

+2378
-0
lines changed

src/extensions/index.ts

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* Default extensions
3+
*/
4+
export const defaultExtensions = [
5+
'theme-defaults',
6+
'theme-monokai',
7+
];

src/extensions/locale-zh-cn/package.json

Whitespace-only changes.
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
{
2+
"iconDefinitions": {
3+
"_root_folder_dark": {
4+
"iconPath": "./images/root-folder-dark.svg"
5+
},
6+
"_root_folder_open_dark": {
7+
"iconPath": "./images/root-folder-open-dark.svg"
8+
},
9+
"_folder_dark": {
10+
"iconPath": "./images/folder-dark.svg"
11+
},
12+
"_folder_open_dark": {
13+
"iconPath": "./images/folder-open-dark.svg"
14+
},
15+
"_file_dark": {
16+
"iconPath": "./images/document-dark.svg"
17+
},
18+
"_root_folder": {
19+
"iconPath": "./images/root-folder-light.svg"
20+
},
21+
"_root_folder_open": {
22+
"iconPath": "./images/root-folder-open-light.svg"
23+
},
24+
"_folder_light": {
25+
"iconPath": "./images/folder-light.svg"
26+
},
27+
"_folder_open_light": {
28+
"iconPath": "./images/folder-open-light.svg"
29+
},
30+
"_file_light": {
31+
"iconPath": "./images/document-light.svg"
32+
}
33+
},
34+
35+
"folderExpanded": "_folder_open_dark",
36+
"folder": "_folder_dark",
37+
"file": "_file_dark",
38+
"rootFolderExpanded": "_root_folder_open_dark",
39+
"rootFolder": "_root_folder_dark",
40+
"fileExtensions": {
41+
// icons by file extension
42+
},
43+
"fileNames": {
44+
// icons by file name
45+
},
46+
"languageIds": {
47+
// icons by language id
48+
},
49+
"light": {
50+
"folderExpanded": "_folder_open_light",
51+
"folder": "_folder_light",
52+
"rootFolderExpanded": "_root_folder_open",
53+
"rootFolder": "_root_folder",
54+
"file": "_file_light",
55+
"fileExtensions": {
56+
// icons by file extension
57+
},
58+
"fileNames": {
59+
// icons by file name
60+
},
61+
"languageIds": {
62+
// icons by language id
63+
}
64+
},
65+
"highContrast": {
66+
// overrides for high contrast
67+
}
68+
}
+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"name": "theme-defaults",
3+
"displayName": "%displayName%",
4+
"description": "%description%",
5+
"categories": [ "Themes" ],
6+
"version": "1.0.0",
7+
"publisher": "vscode",
8+
"license": "MIT",
9+
"engines": { "vscode": "*" },
10+
"contributes": {
11+
"themes": [
12+
{
13+
"id": "Default Dark+",
14+
"label": "Dark+ (default dark)",
15+
"uiTheme": "vs-dark",
16+
"path": "./themes/dark_plus.json"
17+
},
18+
{
19+
"id": "Default Light+",
20+
"label": "Light+ (default light)",
21+
"uiTheme": "vs",
22+
"path": "./themes/light_plus.json"
23+
},
24+
{
25+
"id": "Visual Studio Dark",
26+
"label": "Dark (Visual Studio)",
27+
"uiTheme": "vs-dark",
28+
"path": "./themes/dark_vs.json"
29+
},
30+
{
31+
"id": "Visual Studio Light",
32+
"label": "Light (Visual Studio)",
33+
"uiTheme": "vs",
34+
"path": "./themes/light_vs.json"
35+
},
36+
{
37+
"id": "Default High Contrast",
38+
"label": "High Contrast",
39+
"uiTheme": "hc-black",
40+
"path": "./themes/hc_black.json"
41+
}
42+
],
43+
"iconThemes": [
44+
{
45+
"id": "vs-minimal",
46+
"label": "Minimal (Visual Studio Code)",
47+
"path": "./fileicons/vs_minimal-icon-theme.json"
48+
}
49+
]
50+
}
51+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"displayName": "Default Themes",
3+
"description": "The default Visual Studio light and dark themes"
4+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"$schema": "vscode://schemas/color-theme",
3+
"name": "Dark Default Colors",
4+
"colors": {
5+
"editor.background": "#1E1E1E",
6+
"editor.foreground": "#D4D4D4",
7+
"editor.inactiveSelectionBackground": "#3A3D41",
8+
"editorIndentGuide.background": "#404040",
9+
"editorIndentGuide.activeBackground": "#707070",
10+
"editor.selectionHighlightBackground": "#ADD6FF26",
11+
"list.dropBackground": "#383B3D",
12+
"activityBarBadge.background": "#007ACC",
13+
"sideBarTitle.foreground": "#BBBBBB",
14+
"input.placeholderForeground": "#A6A6A6",
15+
"settings.textInputBackground": "#292929",
16+
"settings.numberInputBackground": "#292929",
17+
"menu.background": "#252526",
18+
"menu.foreground": "#CCCCCC",
19+
"statusBarItem.remoteForeground": "#FFF",
20+
"statusBarItem.remoteBackground": "#16825D",
21+
"sideBarSectionHeader.background": "#0000",
22+
"sideBarSectionHeader.border": "#ccc3"
23+
},
24+
"semanticHighlighting": true
25+
}

0 commit comments

Comments
 (0)