Skip to content

Instantly share code, notes, and snippets.

@nickytoh
Created July 24, 2015 13:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nickytoh/3c5da4d664513de27424 to your computer and use it in GitHub Desktop.
Save nickytoh/3c5da4d664513de27424 to your computer and use it in GitHub Desktop.
Custom light yellow background color for the light theme in Visual Studio Code editor.
/* Code/app-0.5.0/resources/app/client/vs/monaco/ui/workbench/native/native.main.css */
.monaco-editor.vs,
.monaco-editor.vs .zone-widget .monaco-editor {
background-color: #fdf6e4;
}
.monaco-editor,
.monaco-editor-background {
background-color: #fdf6e4;
}
.monaco-workbench.vs > .part.editor > .content .title {
background-color: #fdf6e4;
}
.monaco-workbench-container .monaco-editor .glyph-margin {
background: #fdf6e4;
}
.monaco-workbench > .part.editor > .content .title .title-actions, .monaco-workbench.vs > .part.editor > .content .title .title-label .state-description {
background-color: #fdf6e4;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment