From 0f4929ad7175719a076dc9ef2d24b660986a0644 Mon Sep 17 00:00:00 2001 From: CofCat Date: Thu, 4 Apr 2024 18:24:56 +0800 Subject: [PATCH] fix: fix focusBackground color (#34) --- scripts/theme.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/theme.ts b/scripts/theme.ts index d8d7524..e2d7e0d 100644 --- a/scripts/theme.ts +++ b/scripts/theme.ts @@ -94,7 +94,7 @@ export default function getTheme(options: GetThemeOptions) { 'list.inactiveSelectionBackground': activeBackground, 'list.activeSelectionBackground': activeBackground, 'list.inactiveFocusBackground': background, - 'list.focusBackground': background, + 'list.focusBackground': activeBackground, 'list.highlightForeground': primary, 'tree.indentGuidesStroke': pick({ light: colors.gray[2], dark: colors.gray[1] }),