Skip to content

Instantly share code, notes, and snippets.

@haasr
Created October 12, 2025 08:18
Show Gist options
  • Save haasr/0ef75756e97cf9d196ce96bd38ea8234 to your computer and use it in GitHub Desktop.
Save haasr/0ef75756e97cf9d196ce96bd38ea8234 to your computer and use it in GitHub Desktop.
/*
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": "#2a1a35",
"editor.background": "#1a0f24",
"editor.selectionBackground": "#4a2d5a",
"selection.background": "#aa69c2a8",
"editorGutter.background": "#1f1429",
"editorLineNumber.activeForeground": "#ff8c42",
"editorLineNumber.foreground": "#7a5a8a",
"activityBar.background": "#2d1b47",
"activityBarBadge.background": "#ff6b1a",
"activityBarBadge.foreground": "#1a0f24",
"sideBar.background": "#221533",
"sideBarTitle.foreground": "#e0d0e0",
"sideBarSectionHeader.background": "#1a0f2e",
"list.activeSelectionBackground": "#4a2d5a",
"list.inactiveSelectionBackground": "#4a2d5ac5",
"list.hoverBackground": "#3d2450",
"titleBar.activeBackground": "#3d1f5c",
"titleBar.activeForeground": "#ffa64d",
"titleBar.border": "#2a1540",
"statusBar.background": "#3d1f5c",
"statusBar.foreground": "#ffa64d",
"statusBar.noFolderBackground": "#513667",
"statusBar.debuggingBackground": "#622b8b",
"statusBar.debuggingForeground": "#ffffff",
"input.background": "#2a1a35",
"input.foreground": "#ff8c42",
"input.placeholderForeground": "#b08fc0",
"input.border": "#7a4d8a",
"editorGroupHeader.tabsBackground": "#1f0f33",
"tab.activeBackground": "#3d1f5c",
"tab.inactiveBackground": "#2a1a3596",
"tab.activeForeground": "#ffa64d",
"tab.inactiveForeground": "#a89fb0",
"tab.hoverBackground": "#4a2d5a",
"scrollbarSlider.background": "#2a1a35",
"scrollbarSlider.hoverBackground": "#3d2450",
"scrollbarSlider.activeBackground": "#4a2d5ae7",
"scrollbar.shadow": "#0f0a1a",
"focusBorder": "#ff8c42",
"terminal.foreground": "#e8d4f0",
"terminal.background": "#1a0f24"
},
"editor.fontSize": 15,
"terminal.integrated.fontSize": 14,
"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": "#4a2d5a30"
}
]
},
"[javascript]": {
"editor.rulers": [
{
"column": 90,
"color": "#ff8c4230"
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment