Last active
October 12, 2025 19:25
-
-
Save haasr/64803859ad62d24608c446d131a2520c to your computer and use it in GitHub Desktop.
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
| /* | |
| 1. Open command palette (Cmd shift p) | |
| 2. Type "install ext" and choose the option "Extensions: Install Extensions" | |
| 3. In the Extensions Marketplace, search "minimal". Select "Minimal" by nichabosh and install it. | |
| 4. Open command palette (Cmd shift p) | |
| 5. Type "open user settings" and choose the option "Preferences: Open User Settings (JSON)" | |
| 6. Paste below and save: | |
| */ | |
| { | |
| "workbench.colorCustomizations": { | |
| "editor.lineHighlightBackground": "#282447", | |
| "editor.background": "#1e1b35", // Sets the main editor background | |
| "editor.selectionBackground": "#433c53", // Selected text | |
| "selection.background": "#7f7b9aa8", // Selected text inside input box | |
| "editorGutter.background":"#211e3e", | |
| "editorLineNumber.activeForeground": "#f7c797", | |
| "editorLineNumber.foreground": "#787582", | |
| "activityBar.background": "#412f79", // Sets the background of the activity bar | |
| "activityBarBadge.background": "#120053", | |
| "activityBarBadge.foreground": "#b9ace6", | |
| "sideBar.background": "#282744", // Sets the background of the sidebar | |
| "sideBarTitle.foreground": "#d0d0d0", | |
| "sideBarSectionHeader.background": "#1e1f36", | |
| "list.activeSelectionBackground": "#2f3d79", | |
| "list.inactiveSelectionBackground": "#2f3d79c5", | |
| "list.hoverBackground": "#2f3d79", | |
| "titleBar.activeBackground": "#1d576c", // Sets the background of the active title bar | |
| "titleBar.activeForeground": "#eeeeee", | |
| "titleBar.border":"#2e2050", | |
| "statusBar.background": "#120053", | |
| "statusBar.foreground": "#ffffff", | |
| "statusBar.noFolderBackground": "#00445d", | |
| "statusBar.debuggingBackground": "#28728e", | |
| "statusBar.debuggingForeground": "#ffffff", | |
| "input.background": "#2e2d50", | |
| "input.foreground": "#f7c797", | |
| "input.placeholderForeground": "#b0afb7", | |
| "input.border": "#8e8baa", | |
| "editorGroupHeader.tabsBackground": "#1d476c", | |
| "tab.activeBackground": "#242f5e", // Sets the active tab bg | |
| "tab.inactiveBackground": "#2b3c8696", // Inactive tab background | |
| "tab.activeForeground": "#ffffff", // White text for active tab | |
| "tab.inactiveForeground": "#aaaaaa", // Gray text for inactive tabs | |
| "tab.hoverBackground": "#2f3d79", | |
| "scrollbarSlider.background": "#262145", | |
| "scrollbarSlider.hoverBackground": "#2f2a53", | |
| "scrollbarSlider.activeBackground": "#23485ae7", | |
| "scrollbar.shadow": "#313131", | |
| "focusBorder": "#007fd4", | |
| "terminal.foreground": "#ffffff", | |
| "terminal.background": "#23222b", | |
| }, | |
| "editor.fontSize": 16, | |
| "terminal.integrated.fontSize": 15, | |
| "editor.fontFamily": "Ubuntu Mono", | |
| "editor.fontLigatures": true, | |
| "terminal.integrated.fontFamily": "'SF Mono', 'Consolas', 'Monaco', monospace", | |
| "workbench.colorTheme": "Minimal", | |
| "notebook.cellToolbarLocation": { | |
| "default": "right", | |
| "jupyter-notebook": "left" | |
| }, | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "workbench.editorAssociations": { | |
| "*.svg": "default" | |
| }, | |
| "[python]": { | |
| "editor.rulers": [ | |
| { | |
| "column": 79, | |
| "color": "#48467c3c" // Red color for the ruler | |
| } | |
| ] | |
| }, | |
| "[javascript]": { | |
| "editor.rulers": [ | |
| { | |
| "column": 90, | |
| "color": "#ff6bb330" // Pink ruler with transparency | |
| } | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment