Skip to content

Instantly share code, notes, and snippets.

@topisani
Last active November 10, 2019 15:30
Show Gist options
  • Save topisani/92b6209d909076e4618eb5bdf09f24d1 to your computer and use it in GitHub Desktop.
Save topisani/92b6209d909076e4618eb5bdf09f24d1 to your computer and use it in GitHub Desktop.
vs code flatblue-dark
"window.menuBarVisibility": "toggle",
"editor.tokenColorCustomizations": {
"comments": {
"foreground": "#766f6f",
"fontStyle": "italic"
},
"functions": "#ffe000",
"variables": "#178ca6",
"types": "#07b0ff",
"strings": "#71ba51",
"numbers": "#dd465a",
"keywords": "#f24130",
"module": "#fe8019",
"textMateRules": [
{
"scope": [
"entity.name.scope-resolution",
"entity.name.namespace",
"keyword.control.directive",
"storage.type.class.doxygen",
"markup.heading",
"entity.other.attribute",
],
"settings": {
"foreground": "#fe8019"
}
},
{
"scope": [
"keyword.other.using",
"keyword.other.typedef",
"keyword.other.unit",
"keyword.other.operator",
"keyword.operator.noexcept",
"keyword.operator.wordlike",
"keyword.operator.cast",
"constant.language",
"variable.language.this",
"storage.modifier",
"storage.modifier.inline",
"storage.modifier.constexpr",
"storage.modifier.specifier",
"storage.modifier.const",
"storage.type.template",
"storage.type.template.argument.typename",
"storage.type.template.argument.class",
"storage.type.template.argument.struct",
"storage.type.namespace",
"storage.type.struct",
"storage.type.class",
"storage.type.enum",
"entity.other.attribute-name",
],
"settings": {
"foreground": "#f24130",
}
},
{
"scope": [
"storage.modifier.reference",
],
"settings": {
"foreground": "#c5c5c5",
}
},
{
"scope": [
"entity.name.operator",
"markup.bold"
],
"settings": {
"foreground": "#fdf4d1",
}
},
{
"scope": [
"comment.line.double-slash.documentation",
"comment.block.documentation"
],
"settings": {
"foreground": "#71ba51",
"fontStyle": "italic"
}
},
{
"scope": [
"storage.type",
"storage.type.template.argument"
],
"settings": {
"foreground": "#07b0ff",
}
},
{
"scope": [
"variable.other.enummember",
"support.type.property-name",
],
"settings": {
"foreground": "#178ca6",
}
},
]
},
"ccls.highlight.function.face": [
"enabled"
],
"ccls.highlight.type.face": [
"enabled"
],
"ccls.highlight.variable.face": [
"enabled"
],
"ccls.highlight.function.colors": [
"#ffe000"
],
"ccls.highlight.type.colors": [
"#07b0ff"
],
"ccls.highlight.variable.colors": [
"#178ca6"
],
"ccls.highlight.macro.colors": [
"#ff465a"
],
"ccls.highlight.namespace.colors": [
"#fe8019"
],
"ccls.codeLens.enabled": false,
"workbench.colorCustomizations": {
"editor.background": "#08090c",
"editor.foreground": "#fdf4d1",
"titleBar.activeBackground": "#000000",
"activityBar.background": "#0e0f11",
"focusBorder": "#3c383c",
"foreground": "#fdf4d1",
"sideBar.background": "#0e0f13",
"sideBar.border": "#000000",
"sideBarSectionHeader.background": "#202227",
"tab.inactiveBackground": "#0e0f11",
"tab.border": "#000000",
"editorGroupHeader.tabsBackground": "#0e0f11",
"editorGroup.border": "#000000",
"scrollbar.shadow": "#1c1e20",
"scrollbarSlider.background": "#17181b",
"scrollbarSlider.activeBackground": "#27292e",
"scrollbarSlider.hoverBackground": "#1e2024",
"editor.lineHighlightBorder": "#00000000",
"editor.lineHighlightBackground": "#000000",
"editor.selectionBackground": "#063446",
"editor.inactiveSelectionBackground": "#08222c",
"editor.selectionHighlightBackground": "#313642",
"statusBar.background": "#0e0f11",
"statusBar.foreground": "#c2bfb1",
"editorLineNumber.foreground": "#3c383c",
"editorIndentGuide.background": "#1a181a",
"editorIndentGuide.activeBackground": "#222222",
"editor.hoverHighlightBackground": "#151920",
"editorHoverWidget.background": "#0b0c0e",
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment