stygio/.config/waybar/style.css
Jellyfish 060a6fc75f made a bubble-ish style for the bar. Hae a slightly better understanding
of waybar. Planning to make a more concrete style for the bar
2025-06-29 16:19:51 -07:00

49 lines
614 B
CSS

/* All things related to the bar itself */
* {
font-family: "FiraCode Nerd Font";
font-size: 14px;
border-radius: 0;
min-height: 0;
border: none;
font-weight: bold;
}
#waybar {
background-color: rgba(0,0,0,0);
transition-property: background-color;
transition-duration: 0.7s;
}
#waybar.hidden {
opacity: 0.5;
}
#window,
#clock,
#tray,
#tags {
border-radius: 21px;
padding: 7px 7px;
margin: 7px 3px 7px;
background-color: #1e1e2e;
color: #181825;
}
#tags button {
border-radius: 21px;
}
#tags button.focused {
background-color: #4e4e6e;
}
#window {
color: #656565;
}