Fix status bar buttons

This commit is contained in:
Nate Butler 2023-06-21 13:14:39 -04:00
parent 86506a89ab
commit 127f4aa506

View file

@ -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"),
},
}
}
}