Skip to content

Instantly share code, notes, and snippets.

@gwmccubbin
Last active July 12, 2025 01:17
Show Gist options
  • Save gwmccubbin/a6dda2fd105ac402908bbc83b4efe1e0 to your computer and use it in GitHub Desktop.
Save gwmccubbin/a6dda2fd105ac402908bbc83b4efe1e0 to your computer and use it in GitHub Desktop.
Monokai GPT
{
// Theme & Icons
"workbench.colorTheme": "Monokai Classic",
"workbench.iconTheme": "Monokai Classic Monochrome Icons",
// Editor
"editor.lineHeight": 22,
"editor.cursorStyle": "block",
"editor.cursorBlinking": "phase",
"editor.glyphMargin": false,
"editor.folding": false,
"editor.lineNumbers": "on",
"editor.renderLineHighlight": "none",
"editor.fontLigatures": true,
"editor.minimap.enabled": false,
// Custom token colors
"editor.tokenColorCustomizations": {
"textMateRules": [
{ "scope": ["comment"], "settings": { "foreground": "#6c6c6c" } },
{ "scope": ["string"], "settings": { "foreground": "#c2d94c" } },
{ "scope": ["keyword"], "settings": { "foreground": "#f7768e" } },
{
"scope": ["variable", "meta.definition.variable.name"],
"settings": { "foreground": "#82aaff" }
}
]
},
// Terminal
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontWeight": "normal",
"terminal.integrated.fontLigatures": true,
// UI Tweaks
"workbench.activityBar.visible": false,
"workbench.tree.indent": 12,
// Markdown Preview
"markdown.styles": [
"file:///Users/gregory/.vscode/markdown-preview.css"
],
// Status Bar Items
"statusBarItem.remoteBackground": "#282828",
"statusBarItem.remoteForeground": "#ffffff",
"statusBarItem.prominentBackground": "#282828",
"statusBarItem.prominentHoverBackground": "#373737",
// Custom Colors
"workbench.colorCustomizations": {
// Editor
"editor.background": "#2C2C2C",
"editor.foreground": "#ffffff",
"editorLineNumber.foreground": "#555555",
"editorLineNumber.activeForeground": "#ffffff",
"editorGutter.background": "#2C2C2C",
"editor.findMatchBackground": "#ffd33d44",
"editor.findMatchHighlightBackground": "#ffd33d22",
"editor.findRangeHighlightBackground": "#ffffff10",
"editorWidget.background": "#303030",
"editorWidget.foreground": "#ffffff",
"editorWidget.border": "#333333",
"editorGroupHeader.tabsBackground": "#242424",
// Terminal
"terminal.background": "#373737",
"terminal.foreground": "#ffffff",
"terminalCursor.background": "#ffffff",
"terminalCursor.foreground": "#ffffff",
"terminal.ansiBlack": "#000000",
"terminal.ansiRed": "#ff5c57",
"terminal.ansiGreen": "#5af78e",
"terminal.ansiYellow": "#f3f99d",
"terminal.ansiBlue": "#57c7ff",
"terminal.ansiMagenta": "#ff6ac1",
"terminal.ansiCyan": "#9aedfe",
"terminal.ansiWhite": "#f1f1f0",
"terminal.ansiBrightBlack": "#686868",
"terminal.ansiBrightRed": "#ff5c57",
"terminal.ansiBrightGreen": "#5af78e",
"terminal.ansiBrightYellow": "#f3f99d",
"terminal.ansiBrightBlue": "#57c7ff",
"terminal.ansiBrightMagenta": "#ff6ac1",
"terminal.ansiBrightCyan": "#9aedfe",
"terminal.ansiBrightWhite": "#ffffff",
// Tabs
"tab.activeBackground": "#242424",
"tab.inactiveBackground": "#242424",
"tab.activeForeground": "#ffffff",
"tab.inactiveForeground": "#888888",
"tab.border": "#242424",
"tab.activeBorderBottom": "#00000000",
// Sidebar
"sideBar.background": "#282828",
"sideBar.foreground": "#ffffff27",
"sideBarTitle.foreground": "#ffffff",
"sideBarSectionHeader.background": "#282828",
"sideBarSectionHeader.foreground": "#ffffff",
// Activity Bar
"activityBar.background": "#1a1a1a",
"activityBar.foreground": "#ffffff",
"activityBar.activeBorder": "#ffffff",
// Status Bar
"statusBar.background": "#1a1a1a",
// Title Bar
"titleBar.activeBackground": "#1a1a1a",
"titleBar.inactiveBackground": "#1a1a1a",
// Lists & Trees
"list.activeSelectionForeground": "#ffffff",
"list.inactiveSelectionForeground": "#ffffff",
"list.hoverForeground": "#ffffff",
// Panel
"panel.background": "#282828",
"panelTitle.activeBackground": "#282828",
"panelTitle.inactiveBackground": "#282828",
// Quick Input
"quickInput.background": "#303030",
"quickInput.foreground": "#ffffff",
"quickInputList.focusBackground": "#242424",
"quickInputList.focusForeground": "#ffffff",
"pickerGroup.border": "#333333",
"pickerGroup.foreground": "#aaaaaa",
// Command Center
"commandCenter.background": "#242424",
"commandCenter.foreground": "#cccccc",
"commandCenter.border": "#333333",
// Inputs
"input.background": "#303030",
"input.foreground": "#ffffff",
"input.border": "#3a3a3a",
"input.placeholderForeground": "#aaaaaa",
// Settings UI
"settings.editor.background": "#333333",
"settings.headerForeground": "#ffffff",
"settings.numberInputBackground": "#333333",
"settings.textInputBackground": "#333333",
"settings.dropdownBackground": "#333333",
"settings.dropdownForeground": "#ffffff"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment