146 lines
1.7 KiB
CSS
146 lines
1.7 KiB
CSS
/* --------------- Defaults --------------- */
|
|
|
|
|
|
/* Universal */
|
|
* {
|
|
font-family: "FiraCode";
|
|
font-size: 15px;
|
|
font-weight: bold;
|
|
border-radius: 20px;
|
|
min-height: 0;
|
|
border: none;
|
|
}
|
|
|
|
/* Main Bar */
|
|
#waybar {
|
|
background-color: #16161D;
|
|
border-radius: 0px;
|
|
}
|
|
|
|
/* Elements */
|
|
#tags,
|
|
#window,
|
|
#wireplumber,
|
|
#cpu,
|
|
#memory,
|
|
#temperature,
|
|
#disk,
|
|
#network,
|
|
#battery,
|
|
#tray,
|
|
#clock
|
|
{
|
|
background-color: #1f1f28;
|
|
margin: 5px;
|
|
padding: 5px;
|
|
}
|
|
|
|
|
|
/* --------------- Tags ---------------*/
|
|
|
|
/* On empty tags*/
|
|
#tags button {
|
|
color: #363646;
|
|
}
|
|
|
|
|
|
/* On occupied tags */
|
|
#tags button.occupied {
|
|
color: #dcd7ba;
|
|
}
|
|
|
|
/* On focused tags */
|
|
#tags button.focused {
|
|
color: #1f1f28;
|
|
background-color: #dcd7ba;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
/* On urgent tags */
|
|
#tags button.urgent {
|
|
|
|
}
|
|
|
|
|
|
/* --------------- Window --------------- */
|
|
|
|
/* Defaults */
|
|
#window {
|
|
color: #363646;
|
|
}
|
|
|
|
/* On Focus */
|
|
#window.focused {
|
|
color: #1f1f28;
|
|
background-color: #6A9589;
|
|
}
|
|
|
|
|
|
/* --------------- Wireplumber --------------- */
|
|
|
|
/* Defaults */
|
|
#wireplumber {
|
|
color: #dcd7ba;
|
|
}
|
|
|
|
#wireplumber.muted {
|
|
color: #1f1f28;
|
|
background-color: #FF5D62;
|
|
}
|
|
|
|
|
|
/* --------------- Network --------------- */
|
|
|
|
/* Wifi */
|
|
#network.wifi {
|
|
color: #1f1f28;
|
|
background-color: #E6C384;
|
|
|
|
}
|
|
|
|
/* Ethernet */
|
|
#network.ethernet {
|
|
|
|
}
|
|
|
|
/* On disconnected */
|
|
#network.disconnect {
|
|
|
|
}
|
|
|
|
/* When disabled */
|
|
#network.disabled {
|
|
|
|
}
|
|
|
|
|
|
/* --------------- Clock --------------- */
|
|
|
|
#clock {
|
|
color: #dcd7ba;
|
|
}
|
|
|
|
|
|
/* --------------- System --------------- */
|
|
|
|
/* CPU */
|
|
#cpu {
|
|
color: #dcd7ba;
|
|
}
|
|
|
|
/* Memory */
|
|
#memory {
|
|
color: #dcd7ba;
|
|
}
|
|
|
|
/* Temperature */
|
|
#temperature {
|
|
color: #dcd7ba;
|
|
}
|
|
|
|
/* Disk */
|
|
#disk {
|
|
color: #dcd7ba;
|
|
}
|
|
|