From 681db679b94b83128065e2288651fe62fbbaae5b Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Thu, 9 Aug 2018 22:02:50 +0200 Subject: [PATCH] feat: Add support for custom menus and menubar on Windows/Linux (vscode v1.26.0) Close #228 --- extensions/defaults.json | 12 ++++++++++++ src/themes/theme-template-color-theme.json | 14 +++++++++++++- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/extensions/defaults.json b/extensions/defaults.json index 236daf6..bea1892 100644 --- a/extensions/defaults.json +++ b/extensions/defaults.json @@ -96,6 +96,18 @@ "panelTitle.activeBorder": { "alpha": 100, "value": null + }, + "breadcrumb.activeSelectionForeground": { + "alpha": 100, + "value": null + }, + "menu.selectionForeground": { + "alpha": 100, + "value": null + }, + "menubar.selectionForeground": { + "alpha": 100, + "value": null } }, "changelog": { diff --git a/src/themes/theme-template-color-theme.json b/src/themes/theme-template-color-theme.json index 80a4f45..1ad3368 100644 --- a/src/themes/theme-template-color-theme.json +++ b/src/themes/theme-template-color-theme.json @@ -823,6 +823,18 @@ "gitDecoration.untrackedResourceForeground": "{{variant.scheme.base.green}}90", "gitDecoration.ignoredResourceForeground": "{{variant.scheme.sidebarForeground}}90", "peekViewResult.selectionBackground": "{{variant.scheme.sidebarForeground}}70", - "settings.modifiedItemForeground": "{{commons.accents.Teal}}" + "settings.modifiedItemForeground": "{{commons.accents.Teal}}", + "breadcrumb.foreground": "{{variant.scheme.sidebarForeground}}", + "breadcrumb.focusForeground": "{{variant.scheme.foreground}}", + "breadcrumb.activeSelectionForeground": "{{commons.accents.Teal}}", + "breadcrumbPicker.background": "{{variant.scheme.backgroundAlt}}", + "menu.background": "{{variant.scheme.background}}", + "menu.foreground": "{{variant.scheme.sidebarForeground}}", + "menu.selectionBackground": "{{variant.scheme.inactiveSelectionBackground}}", + "menu.selectionForeground": "{{commons.accents.Teal}}", + "menu.selectionBorder": "{{variant.scheme.inactiveSelectionBackground}}", + "menubar.selectionBackground": "{{variant.scheme.inactiveSelectionBackground}}", + "menubar.selectionForeground": "{{commons.accents.Teal}}", + "menubar.selectionBorder": "{{variant.scheme.inactiveSelectionBackground}}" } }