mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
97 lines
1.8 KiB
CSS
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: @blk;
|
|
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: @fg; /* 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 */
|
|
}
|
|
|