51 lines
748 B
CSS
51 lines
748 B
CSS
|
|
/* All things related to the bar itself */
|
|
* {
|
|
font-family: "FiraCode Nerd Font";
|
|
font-size: 16px;
|
|
border-radius: 0;
|
|
min-height: 0;
|
|
border: none;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#waybar {
|
|
background-color: #181825;
|
|
transition-property: background-color;
|
|
transition-duration: 0.5s;
|
|
}
|
|
|
|
|
|
#waybar.hidden {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
/* All stuff related to the tags*/
|
|
#tags button {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
#tags button.occupied {
|
|
background-color: #000044;
|
|
}
|
|
|
|
#tags button.focused {
|
|
background-color: #004400;
|
|
}
|
|
|
|
#tags button.urgent {
|
|
background-color: #000044;
|
|
}
|
|
|
|
|
|
/* All stuff related to the window name */
|
|
#window {
|
|
background-color: #333333;
|
|
color: #ffffff;
|
|
}
|
|
|
|
#window.focused {
|
|
background-color: #666666;
|
|
color: #ffffff;
|
|
}
|