mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
117 lines
1.6 KiB
CSS
117 lines
1.6 KiB
CSS
@define-color bg #1c1c1c;
|
|
@define-color fg #B0B0B0;
|
|
@define-color blk #000000;
|
|
@define-color white #ffffff;
|
|
|
|
* {
|
|
font-family: "UbuntuMono", monospace;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
button,
|
|
#workspaces button,
|
|
#clock,
|
|
#battery,
|
|
#cpu,
|
|
#memory,
|
|
#disk,
|
|
#network,
|
|
#tray {
|
|
transition-property: none;
|
|
animation: none;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
window#waybar {
|
|
background-color: @bg;
|
|
color: @fg;
|
|
}
|
|
|
|
#workspaces button {
|
|
padding: 0 6px;
|
|
color: @fg;
|
|
background: transparent;
|
|
border-bottom: 3px solid @bg;
|
|
}
|
|
|
|
#workspaces button.active {
|
|
color: @fg;
|
|
border-bottom: 3px solid @fg;
|
|
}
|
|
|
|
#workspaces button.empty {
|
|
color: @fg;
|
|
}
|
|
|
|
#workspaces button.empty.active {
|
|
color: @fg;
|
|
border-bottom: 3px solid @fg;
|
|
}
|
|
|
|
#workspaces button.urgent {
|
|
background-color: @blk;
|
|
}
|
|
|
|
/* Disable hover effects completely */
|
|
button:hover,
|
|
#workspaces button:hover {
|
|
background: transparent;
|
|
box-shadow: none;
|
|
color: inherit;
|
|
}
|
|
|
|
#clock,
|
|
#custom-sep,
|
|
#battery,
|
|
#cpu,
|
|
#memory,
|
|
#disk,
|
|
#network,
|
|
#tray {
|
|
padding: 0 8px;
|
|
color: @white;
|
|
}
|
|
|
|
#custom-sep {
|
|
color: @fg;
|
|
}
|
|
|
|
#clock {
|
|
color: @fg;
|
|
border-bottom: 4px solid @fg;
|
|
}
|
|
|
|
#battery {
|
|
color: @fg;
|
|
border-bottom: 4px solid @fg;
|
|
}
|
|
|
|
#disk {
|
|
color: @fg;
|
|
border-bottom: 4px solid @fg;
|
|
}
|
|
|
|
#memory {
|
|
color: @fg;
|
|
border-bottom: 4px solid @fg;
|
|
}
|
|
|
|
#cpu {
|
|
color: @fg;
|
|
border-bottom: 4px solid @fg;
|
|
}
|
|
|
|
#network {
|
|
color: @fg;
|
|
border-bottom: 4px solid @fg;
|
|
}
|
|
|
|
#network.disconnected {
|
|
background-color: @blk;
|
|
}
|
|
|
|
#tray {
|
|
background-color: @bg;
|
|
}
|
|
|