Files
dotfiles/waybar/style.css
T
2026-04-30 21:27:00 -07:00

69 lines
966 B
CSS

@import url("../theme/colors.css");
* {
font-family: JetBrainsMono Nerd Font;
font-size: 13px;
}
window#waybar {
background: @tn-bg-a90;
color: @tn-fg;
}
#workspaces button {
padding: 0 8px;
color: @tn-fg-muted;
}
#workspaces button.focused {
color: @tn-blue;
}
#custom-clock, #battery, #network, #pulseaudio,
#cpu, #temperature,
#custom-power-profile, #custom-fan-profile {
padding: 0 12px;
}
#custom-power-profile.performance {
color: @tn-yellow;
}
#custom-power-profile.power-saver {
color: @tn-green;
}
#battery.warning {
color: @tn-yellow;
}
#battery.critical {
color: @tn-red;
}
#cpu.warning {
color: @tn-yellow;
}
#cpu.critical {
color: @tn-red;
}
#temperature.warm {
color: @tn-yellow;
}
#temperature.critical {
color: @tn-red;
}
#custom-tray-arrow {
padding: 0 12px;
color: @tn-fg-muted;
transition: transform 200ms ease;
}
#group-tray-drawer.expanded #custom-tray-arrow {
transform: rotate(180deg);
}