From 599d5a5ecaf8d3cc2d6e8a1fafcdda4c74852abb Mon Sep 17 00:00:00 2001 From: Daniel Thwaites Date: Tue, 11 Mar 2025 21:54:27 +0000 Subject: [PATCH] vscode: use base01 for title bar (#979) VSCode on Linux now uses a custom title bar by default. This should be colored in base01 to match our theming of GTK title bars (although this is not explicitly mentioned in the style guide). Link: https://github.com/danth/stylix/pull/979 Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com> --- modules/vscode/template.mustache | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/vscode/template.mustache b/modules/vscode/template.mustache index 8ccc195c..61697f8f 100644 --- a/modules/vscode/template.mustache +++ b/modules/vscode/template.mustache @@ -474,13 +474,13 @@ "statusBarItem.offlineForeground": "#{{base00-hex}}", "statusBarItem.offlineHoverForeground": "#{{base00-hex}}", "statusBarItem.offlineHoverBackground": "#{{base09-hex}}C0", - "titleBar.activeBackground": "#{{base00-hex}}", + "titleBar.activeBackground": "#{{base01-hex}}", "titleBar.activeForeground": "#{{base05-hex}}", "titleBar.inactiveBackground": "#{{base01-hex}}", "titleBar.inactiveForeground": "#{{base03-hex}}", "titleBar.border": null, "menubar.selectionForeground": "#{{base05-hex}}", - "menubar.selectionBackground": "#{{base01-hex}}", + "menubar.selectionBackground": "#{{base02-hex}}", "menubar.selectionBorder": null, "menu.foreground": "#{{base05-hex}}", "menu.background": "#{{base01-hex}}", @@ -490,9 +490,9 @@ "menu.separatorBackground": "#{{base02-hex}}", "menu.border": "#{{base02-hex}}", "commandCenter.foreground": "#{{base05-hex}}", - "commandCenter.activeForeground": "#{{base07-hex}}", + "commandCenter.activeForeground": "#{{base05-hex}}", "commandCenter.background": "#{{base00-hex}}", - "commandCenter.activeBackground": "#{{base01-hex}}", + "commandCenter.activeBackground": "#{{base00-hex}}", "commandCenter.border": null, "commandCenter.inactiveForeground": null, "commandCenter.inactiveBorder": null,