Created
October 20, 2022 01:02
-
-
Save diegocostares/b9a9e1b531a49b1f35399fa335df3796 to your computer and use it in GitHub Desktop.
Vscode theme Color Customizations - workbench
This file contains hidden or 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
{ | |
"workbench.colorTheme": "One Dark Pro Flat", | |
"workbench.colorCustomizations": { | |
// Welcompage | |
"welcomePage.background": "#14161b", | |
"welcomePage.progress.background": "#ecf1ff", | |
// Editor | |
"minimap.background": "#14161b", | |
"editor.background": "#14161b", | |
"editor.lineHighlightBackground": "#1c1f25c7", | |
"editorGroupHeader.tabsBackground": "#14161b", | |
// Ruler | |
"editorRuler.foreground": "#1a2849", | |
// ActivityBar | |
"activityBar.background": "#14161b", | |
"activityBar.activeBackground": "#282c34", | |
// SideBar | |
"sideBar.background": "#14161b", | |
"sideBarSectionHeader.background": "#14161b", | |
"sideBarSectionHeader.border": "#14161b", | |
"sideBar.border": "#1b1e25", | |
// TittleBar | |
"titleBar.activeBackground": "#14161b", | |
// Tab | |
"tab.inactiveBackground": "#14161b", | |
"tab.activeBackground": "#282c34", | |
"tab.activeBorder": "#d19a66", | |
"tab.activeForeground": "#d4d4d4", | |
// Terminal | |
"terminal.background": "#1b1e25", | |
// Panel | |
"panel.background": "#1b1e25", | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment