From 127f4aa506118470cfc981f751eb1ffb27befb44 Mon Sep 17 00:00:00 2001 From: Nate Butler Date: Wed, 21 Jun 2023 13:14:39 -0400 Subject: [PATCH] Fix status bar buttons --- styles/src/styleTree/statusBar.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/styles/src/styleTree/statusBar.ts b/styles/src/styleTree/statusBar.ts index e4a48e8215..636da15bad 100644 --- a/styles/src/styleTree/statusBar.ts +++ b/styles/src/styleTree/statusBar.ts @@ -132,6 +132,15 @@ export default function statusBar(colorScheme: ColorScheme) { iconColor: foreground(layer, "active"), background: background(layer, "active"), }, + hovered: { + iconColor: foreground(layer, "hovered"), + background: background(layer, "hovered"), + }, + clicked: { + iconColor: foreground(layer, "pressed"), + background: background(layer, "pressed"), + }, + } } }