Skip to content

Instantly share code, notes, and snippets.

@haasr
Last active October 12, 2025 07:53
Show Gist options
  • Save haasr/df4a0d144ede3a21a877d28ae49f882d to your computer and use it in GitHub Desktop.
Save haasr/df4a0d144ede3a21a877d28ae49f882d 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": "#2d1a3d",
"editor.background": "#1a0d28", // Deep purple-black base
"editor.selectionBackground": "#6b2d5e", // Rich magenta selection
"selection.background": "#ff6bb388", // Bright pink selection in inputs
"editorGutter.background": "#150a22",
"editorLineNumber.activeForeground": "#ff6bb3", // Hot pink active line
"editorLineNumber.foreground": "#6d5578",
"activityBar.background": "#0f2942", // Deep ocean blue
"activityBar.foreground": "#7dd3fc",
"activityBar.activeBorder": "#ff6bb3", // Pink border for active icon
"activityBar.inactiveForeground": "#4a6b82",
"activityBarBadge.background": "#c05086", // Pink badges
"activityBarBadge.foreground": "#ffffff",
"sideBar.background": "#1a1035", // Deep purple sidebar
"sideBarTitle.foreground": "#bae6fd",
"sideBarSectionHeader.background": "#2d1a52",
"sideBarSectionHeader.foreground": "#fba9d1",
"sideBarSectionHeader.border": "#7dd3fc30",
"list.activeSelectionBackground": "#3d2060", // Purple selection
"list.activeSelectionForeground": "#bae6fd",
"list.inactiveSelectionBackground": "#2d1a52",
"list.hoverBackground": "#2d1a5280",
"list.focusOutline": "#ac5a82",
"titleBar.activeBackground": "#d96a9f",
"titleBar.activeForeground": "#ffffff",
"titleBar.inactiveBackground": "#8b1e5f",
"titleBar.inactiveForeground": "#d4a8c4",
"titleBar.border": "#7dd3fc",
"statusBar.background": "#0891b2", // Cyan status bar
"statusBar.foreground": "#ffffff",
"statusBar.noFolderBackground": "#8b1e5f",
"statusBar.debuggingBackground": "#ff6bb3",
"statusBar.debuggingForeground": "#ffffff",
"input.background": "#2d1a52",
"input.foreground": "#bae6fd", // Light blue input text
"input.placeholderForeground": "#7d6b8f",
"input.border": "#df78aa",
"inputOption.activeBorder": "#7dd3fc",
"editorGroupHeader.tabsBackground": "#0c1e2e", // Dark blue-gray tabs bg
"tab.activeBackground": "#1a0d28", // Matches editor
"tab.inactiveBackground": "#0c1e2e",
"tab.activeForeground": "#bae6fd", // Light blue active text
"tab.inactiveForeground": "#7d8a95",
"tab.activeBorder": "#ff6bb3", // Pink bottom border
"tab.activeBorderTop": "#7dd3fc", // Light blue top border
"tab.hoverBackground": "#1a2f45",
"tab.hoverBorder": "#7dd3fc80",
"tab.border": "#1a3a52",
"scrollbarSlider.background": "#ff6bb340",
"scrollbarSlider.hoverBackground": "#ff6bb360",
"scrollbarSlider.activeBackground": "#7dd3fcb0",
"scrollbar.shadow": "#00000080",
"focusBorder": "#7dd3fc",
"contrastBorder": "#3d2a5220",
"button.background": "#bb4e83",
"button.foreground": "#ffffff",
"button.hoverBackground": "#ff8bc8",
"terminal.foreground": "#e8e8e8",
"terminal.background": "#0a0514",
"terminal.border": "#3d2a52",
"terminal.ansiBlue": "#7dd3fc",
"terminal.ansiCyan": "#a5f3fc",
"terminal.ansiMagenta": "#ff6bb3",
"terminal.ansiRed": "#ff6b9d",
"terminal.ansiBrightBlue": "#bae6fd",
"terminal.ansiBrightCyan": "#cffafe",
"terminal.ansiBrightMagenta": "#ffc4e1",
"terminal.ansiBrightRed": "#ff9dc4",
"editorWidget.background": "#1a0d28",
"editorWidget.border": "#ff6bb3",
"editorSuggestWidget.background": "#1a0d28",
"editorSuggestWidget.border": "#7dd3fc",
"editorSuggestWidget.selectedBackground": "#3d2060",
"editorSuggestWidget.highlightForeground": "#ff6bb3",
"panel.background": "#0a0514",
"panel.border": "#3d2a52",
"panelTitle.activeBorder": "#7dd3fc",
"panelTitle.activeForeground": "#bae6fd",
"panelTitle.inactiveForeground": "#7d8a95",
},
"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": "#ff6bb330" // Pink ruler with transparency
}
]
},
"[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