Skip to content

Instantly share code, notes, and snippets.

@Brontojoris
Created March 16, 2021 23:28
Show Gist options
  • Save Brontojoris/290de584485209df6ba0c752ad41f0e7 to your computer and use it in GitHub Desktop.
Save Brontojoris/290de584485209df6ba0c752ad41f0e7 to your computer and use it in GitHub Desktop.
My preferred colour theme for VS Code
{
"name": "IntelliJ Coda Salad",
"colors": {
"activityBar.background": "#f2f2f2",
"activityBar.border": "#bcbcbc",
"activityBar.foreground": "#000000",
"breadcrumb.background":"#F3F3F3",
"breadcrumb.border":"#C0C0C0",
"editor.background": "#ffffff",
"editor.findMatchBorder": "#ffffff00",
"editor.findMatchBackground": "#FFE419",
"editor.findMatchHighlightBorder": "#ffffff00",
"editor.findMatchHighlightBackground": "#ffe4194b",
"editor.foreground": "#000000",
"editor.lineHighlightBackground": "#FFFBE7",
"editor.selectionHighlightBackground": "#e7e8ff8c",
"editor.wordHighlightBackground":"#e7e8ff8c",
"editor.fontFamily": "Consolas,'SF Mono', Menlo, Monaco, 'Courier New', monospace",
"editorGutter.background": "#ffffff",
"editorLineNumber.activeForeground": "#000000",
"editorLineNumber.foreground": "#CFD3D4",
"editorOverviewRuler.wordHighlightStrongForeground": "#ff0000",
"sideBar.background": "#ffffff",
"sideBar.border": "#c0c0c0",
"sideBar.foreground": "#000000",
"sideBarSectionHeader.background": "#d4d4d4",
"statusBar.background": "#f2f2f2",
"tab.activeBorder": "#c0c0c0",
"tab.activeBackground": "#F6F6F6",
"tab.border": "#c0c0c0",
"tab.inactiveBackground": "#d4d4d4",
"tab.inactiveForeground": "#333333",
"statusBar.border": "#c0c0c0",
"statusBar.foreground": "#000000",
"terminal.background":"#000000",
"terminal.foreground":"#FFD479"
},
"window":{
"titleBarStyle": "native"
},
"workbench":{
"editor":{
"tabCloseButton": "left",
"showIcons": false
}
},
"tokenColors": [
{
"settings": {
"foreground": "#000000"
}
},
{
"name": "Comment",
"scope": "comment",
"settings": {
"fontStyle": "italic",
"foreground": "#88a18b"
}
},
{
"name": "String",
"scope": "string",
"settings": {
"fontStyle": "",
"foreground": "#0002BF"
}
},
{
"name": "Number",
"scope": "constant.numeric",
"settings": {
"foreground": "#F50EA8"
}
},
{
"name": "Built-in constant",
"scope": "constant.language",
"settings": {
"fontStyle": "",
"foreground": "#916319"
}
},
{
"name": "User-defined constant",
"scope": [
"constant.character",
"constant.other"
],
"settings": {
"fontStyle": "",
"foreground": "#916319"
}
},
{
"name": "Variable",
"scope": "variable",
"settings": {
"foreground": "#356A6A"
}
},
{
"name": "Keyword",
"scope": "keyword",
"settings": {
"fontStyle": "",
"foreground": "#CC4C07"
}
},
{
"name": "Storage",
"scope": "storage",
"settings": {
"fontStyle": "",
"foreground": "#970006"
}
},
{
"name": "Class name",
"scope": "entity.name.class",
"settings": {
"foreground": "#291FB7"
}
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"settings": {
"foreground": "#CC4C07"
}
},
{
"name": "Function name",
"scope": "entity.name.function",
"settings": {
"fontStyle": " italic",
"foreground": "#000000"
}
},
{
"name": "Function argument",
"scope": "variable.parameter",
"settings": {
"foreground": "#164D7A",
"fontStyle": " underline"
}
},
{
"name": "Tag name",
"scope": "entity.name.tag",
"settings": {
"fontStyle": "",
"foreground": "#000080"
}
},
{
"name": "Tag attribute",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "",
"foreground": "#008000"
}
},
{
"name": "Library function",
"scope": "support.function",
"settings": {
"foreground": "#660e7a",
"fontStyle": " bold"
}
},
{
"name": "Class Variable",
"scope": [
"variable.other",
"variable.js",
"punctuation.separator.variable"
],
"settings": {
"foreground": "#356a6a"
}
},
{
"name": "Language Constant",
"scope": "constant.language",
"settings": {
"fontStyle": " italic",
"foreground": "#F50EA8"
}
},
{
"name": "Keyword Operator",
"scope": [
"keyword.operator",
"declaration.function.operator",
"meta.preprocessor.c.include"
],
"settings": {
"foreground": "#000000"
}
},
{
"name": "Meta Brace",
"scope": [
"punctuation.section.embedded -(source string source punctuation.section.embedded)",
"meta.brace.erb.html"
],
"settings": {
"foreground": "#F02A1D"
}
},
{
"name": "Invalid",
"scope": "invalid",
"settings": {
"foreground": "#EB291C"
}
},
{
"name": "Normal Variable",
"settings": {
"fontStyle": "bold",
"foreground": "#000000"
}
},
{
"name": "Function Call",
"scope": "meta.function-call",
"settings": {
"fontStyle": "bold",
"foreground": "#0000FF"
}
},
{
"name": "Keyword Control",
"scope": "keyword.control",
"settings": {
"fontStyle": "",
"foreground": "#970006"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment