mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 00:04:14 +08:00
💄
This commit is contained in:
parent
ea05102c9e
commit
52212f2a2e
@ -2,12 +2,13 @@
|
||||
"$schema": "vscode://schemas/color-theme",
|
||||
"name": "Dark Default Colors",
|
||||
"colors": {
|
||||
"editor.background": "#1e1e1e",
|
||||
"editor.background": "#1E1E1E",
|
||||
"editor.foreground": "#D4D4D4",
|
||||
"editor.inactiveSelectionBackground": "#3A3D41",
|
||||
"editorIndentGuide.background": "#404040",
|
||||
"editor.selectionHighlightBackground": "#add6ff26",
|
||||
"editor.selectionHighlightBackground": "#ADD6FF26",
|
||||
"list.dropBackground": "#383B3D",
|
||||
"activityBarBadge.background": "#007ACC"
|
||||
"activityBarBadge.background": "#007ACC",
|
||||
"sideBarTitle.foreground": "#BBBBBB"
|
||||
}
|
||||
}
|
||||
@ -4,7 +4,8 @@
|
||||
"colors": {
|
||||
"editor.background": "#000000",
|
||||
"editor.foreground": "#FFFFFF",
|
||||
"editorIndentGuide.background": "#FFFFFF"
|
||||
"editorIndentGuide.background": "#FFFFFF",
|
||||
"sideBarTitle.foreground": "#FFFFFF"
|
||||
},
|
||||
"settings": [
|
||||
{
|
||||
|
||||
@ -2,12 +2,13 @@
|
||||
"$schema": "vscode://schemas/color-theme",
|
||||
"name": "Light Default Colors",
|
||||
"colors": {
|
||||
"editor.background": "#ffffff",
|
||||
"editor.background": "#FFFFFF",
|
||||
"editor.foreground": "#000000",
|
||||
"editor.inactiveSelectionBackground": "#E5EBF1",
|
||||
"editorIndentGuide.background": "#d3d3d3",
|
||||
"editor.selectionHighlightBackground": "#add6ff4d",
|
||||
"editorIndentGuide.background": "#D3D3D3",
|
||||
"editor.selectionHighlightBackground": "#ADD6FF4D",
|
||||
"editorSuggestWidget.background": "#F3F3F3",
|
||||
"activityBarBadge.background": "#007ACC"
|
||||
"activityBarBadge.background": "#007ACC",
|
||||
"sideBarTitle.foreground": "#6F6F6F"
|
||||
}
|
||||
}
|
||||
@ -205,9 +205,9 @@ export const SIDE_BAR_FOREGROUND = registerColor('sideBar.foreground', {
|
||||
}, nls.localize('sideBarForeground', "Side bar foreground color. The side bar is the container for views like explorer and search."));
|
||||
|
||||
export const SIDE_BAR_TITLE_FOREGROUND = registerColor('sideBarTitle.foreground', {
|
||||
dark: '#BBBBBB',
|
||||
light: '#6f6f6f',
|
||||
hc: '#FFFFFF'
|
||||
dark: SIDE_BAR_FOREGROUND,
|
||||
light: SIDE_BAR_FOREGROUND,
|
||||
hc: SIDE_BAR_FOREGROUND
|
||||
}, nls.localize('sideBarTitleForeground', "Side bar title foreground color. The side bar is the container for views like explorer and search."));
|
||||
|
||||
export const SIDE_BAR_SECTION_HEADER_BACKGROUND = registerColor('sideBarSectionHeader.background', {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user