dotfiles/config/waybar/style-gruvbox.css

66 lines
908 B
CSS
Raw Normal View History

2022-12-18 20:05:28 +01:00
* {
font-size: 18px;
font-family: 'Inter Nerd Font';
2022-12-18 20:05:28 +01:00
font-weight: bold;
border-radius: 0;
}
window#waybar {
background: #282828;
color: #ebdbb2;
}
#sway-mode {
background-color: #1d2021;
}
widget label {
padding: 0px 12px;
2022-12-18 20:05:28 +01:00
}
#workspaces label {
padding: 0px 0px;
}
#workspaces button {
color: #ebdbb2;
font-size: 20px;
font-style: italic;
}
#workspaces button.focused {
background: #458588;
color: #282828;
}
#workspaces button:hover {
box-shadow: inherit;
text-shadow: inherit;
}
#workspaces button:hover {
background: #888888;
}
#clock {
color: #282828;
background: #689d6a;
}
2023-09-06 07:07:10 +02:00
#battery {
color: #282828;
background: #b16286;
}
#battery.warning:not(.charging) {
color: #282828;
background: #cc241d;
}
#battery.critical:not(.charging) {
animation: blink_effect 0.5s steps(2) infinite;
}
@keyframes blink_effect {
50% { color: #FF0000; }
100% { color: #0000FF; }
}
2022-12-18 20:05:28 +01:00