tileos-settings-river/etc/skel/.config/waybar/style.css

207 lines
2.7 KiB
CSS

@import "colors/macchiato.css";
@keyframes blink-warning {
70% {
color: @wm_icon_bg;
}
to {
color: @wm_icon_bg;
background-color: @yellow;
}
}
@keyframes blink-critical {
70% {
color: @wm_icon_bg;
}
to {
color: @wm_icon_bg;
background-color: @red;
}
}
/* Reset all styles */
* {
border: 0px;
border-radius: 0px;
color: @text;
padding: 0 0;
margin-right: 2px;
margin-left: 2px;
font-family: "Noto Sans", "Font Awesome 6 Free", "Font Awesome";
font-size: 14px;
}
#window {
margin-left: 10px;
margin-bottom: 3px;
}
window#waybar {
background: @base;
}
window#waybar.hidden {
opacity: 0.2;
}
#tags button {
border-bottom: 2px;
border-color: @base;
border-style: solid;
margin-bottom: 3px;
transition-property: none;
}
#tags button.focused {
color: @sapphire;
border-color: @sapphire;
}
#tags button.focused.occupied {
color: @sapphire;
border-color: @sapphire;
}
#tags button.occupied {
color: @overlay2;
border-color: @overlay2;
}
#tags button.urgent {
color: @red;
border-color: @red;
}
#clock,
#custom-help,
#custom-playerctl,
#custom-power,
#custom-wlsunset,
#custom-clipboard,
#custom-menu,
#custom-dunst,
#battery,
#cpu,
#memory,
#network,
#bluetooth,
#pulseaudio,
#tray,
#mode,
#idle_inhibitor {
padding: 0 6px;
border-bottom: 2px;
border-style: solid;
margin-bottom: 3px;
}
#custom-menu {
color: @green;
}
#custom-wf-recorder {
color: @red;
padding-right: 10px;
}
#clock {
color: @lavender;
}
#tray {
padding-left: 5px;
padding-right: 5px;
color: @flamingo;
}
#custom-playerctl {
color: @pink;
}
#custom-help {
color: @mauve;
}
#custom-wlsunset {
color: @red;
}
#idle_inhibitor {
color: @maroon;
}
#custom-dunst {
color: @peach;
}
#custom-clipboard {
color: @yellow;
}
#cpu {
color: @green;
}
#memory {
color: @teal;
}
#battery {
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
color: @sky;
}
#battery.warning {
color: @warning_color;
}
#battery.critical {
color: @error_color;
}
#battery.warning.discharging {
animation-name: blink-warning;
animation-duration: 3s;
}
#battery.critical.discharging {
animation-name: blink-critical;
animation-duration: 2s;
}
label:focus {
background-color: #000000;
}
#network {
color: @sapphire;
}
#network.disconnected {
color: @wm_icon_bg
}
#bluetooth {
color: @blue;
}
#bluetooth.disabled {
color: @wm_icon_bg;
}
#pulseaudio {
color: @lavender;
}
#pulseaudio.muted {
color: @wm_icon_bg;
}
#custom-power {
color: @text;
}