Modify colors on waybar to make visible but unfocused workspaces clearer

This commit is contained in:
Salt 2024-07-27 23:31:22 -05:00
parent 8307ea7ed7
commit 43eed9be2e

View File

@ -26,17 +26,26 @@ window#waybar.bottom {
#workspaces {
}
#workspaces button {
/* Any random button */
background: transparent;
color: #a89984;
padding: 0 0.9em;
}
#workspaces button:hover {
/* A button that is currently being hovered over by the mouse cursor */
/* This comes with free transitions */
box-shadow: inherit;
text-shadow: inherit;
background-color: #504945;
}
#workspaces button.visible {
color: #282828;
background: #504945;
font-weight: bold;
}
#workspaces button.focused {
color: #ebdbb2;
color: #282828;
background: #83a598;
font-weight: bold;
}
#workspaces button.urgent {