dotfiles-mirror/config/waybar/style.css
2025-09-25 04:38:18 +03:30

97 lines
1.8 KiB
CSS

@define-color bg #1c1c1c; /* Dark grey */
@define-color fg #d3d3d3; /* Light grey */
@define-color blk #000000; /* Black */
@define-color white #ffffff; /* White */
* {
font-family: "UbuntuMono", monospace;
font-size: 18px;
font-weight: bold;
}
window#waybar {
background-color: @bg;
color: @fg;
}
#workspaces button {
padding: 0 6px;
color: @fg; /* Light grey */
background: transparent;
border-bottom: 3px solid @bg;
}
#workspaces button.active {
color: @fg; /* Light grey */
border-bottom: 3px solid @fg; /* Light grey */
}
#workspaces button.empty {
color: @white; /* White */
}
#workspaces button.empty.active {
color: @fg; /* Light grey */
border-bottom: 3px solid @fg; /* Light grey */
}
#workspaces button.urgent {
background-color: @blk; /* Black */
}
button:hover {
background: inherit;
box-shadow: inset 0 -3px @white; /* White */
}
#clock,
#custom-sep,
#battery,
#cpu,
#memory,
#disk,
#network,
#tray {
padding: 0 8px;
color: @white; /* White */
}
#custom-sep {
color: @bg; /* Dark grey */
}
#clock {
color: @fg; /* Light grey */
border-bottom: 4px solid @fg; /* Light grey */
}
#battery {
color: @fg; /* Light grey */
border-bottom: 4px solid @fg; /* Light grey */
}
#disk {
color: @fg; /* Light grey */
border-bottom: 4px solid @fg; /* Light grey */
}
#memory {
color: @fg; /* Light grey */
border-bottom: 4px solid @fg; /* Light grey */
}
#cpu {
color: @fg; /* Light grey */
border-bottom: 4px solid @fg; /* Light grey */
}
#network {
color: @fg; /* Light grey */
border-bottom: 4px solid @fg; /* Light grey */
}
#network.disconnected {
background-color: @blk; /* Black */
}
#tray {
background-color: @bg; /* Dark grey */
}