From 14765466fb222b35f4e999c06519b2125915fd1c Mon Sep 17 00:00:00 2001 From: Arcangelo Massari Date: Wed, 4 Mar 2026 02:28:09 +0100 Subject: [PATCH] Fix White theme name mismatch for VS Code/Codium (#4858) The White theme's vscode.json specified "White Omarchy" as the theme name, but the Bjarne.white-theme extension registers the theme as "White". This mismatch caused omarchy-theme-set-vscode to set workbench.colorTheme to a non-existent theme name. --- themes/white/vscode.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/white/vscode.json b/themes/white/vscode.json index 88d16fcd..70019ac5 100644 --- a/themes/white/vscode.json +++ b/themes/white/vscode.json @@ -1,4 +1,4 @@ { - "name": "White Omarchy", + "name": "White", "extension": "Bjarne.white-theme" }