Skip to content

Instantly share code, notes, and snippets.

@bdsqqq
Created December 9, 2023 15:14
Show Gist options
  • Save bdsqqq/8f6e9d456bcd8b5f3f139c54a513af86 to your computer and use it in GitHub Desktop.
Save bdsqqq/8f6e9d456bcd8b5f3f139c54a513af86 to your computer and use it in GitHub Desktop.
Vesper Overrides
// Plop these into your VSCode settings.json,
// can easily acces from the command palette
// then typing "Preferences: Open User Settings (JSON)"
"workbench.colorTheme": "Vesper",
// Overrides vesper theme start
"workbench.colorCustomizations": {
"editorGutter.addedBackground": "#A0A0A0",
"editorGutter.deletedBackground": "#A0A0A0",
"editorGutter.modifiedBackground": "#A0A0A0"
},
"editor.tokenColorCustomizations": {
"textMateRules": [
// remove peppermint flavor
{
"name": "String, Symbols, Inherited Class",
"scope": [
"string",
"constant.other.symbol",
"constant.other.key",
"meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js"
],
"settings": {
"foreground": "#A0A0A0"
}
},
{
"name": "CSS ID's",
"scope": [
"source.sass keyword.control",
"meta.attribute-selector.scss"
],
"settings": {
"foreground": "#ffffff"
}
},
{
"name": "Inserted",
"scope": ["markup.inserted"],
"settings": {
"foreground": "#ffffff"
}
}
]
},
// Overrides vesper theme end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment