Files
dotfiles/.config/waybar/style.css
T
Joel Mathew Thomas e311dec2a7 dotfiles for nitro5
2024-04-07 22:27:16 +05:30

206 lines
3.2 KiB
CSS

@define-color base #1e1e2e;
@define-color mantle #181825;
@define-color crust rgba(0, 0, 0, 0);
@define-color text #cdd6f4;
@define-color subtext0 #a6adc8;
@define-color subtext1 #bac2de;
@define-color surface0 #313244;
@define-color surface1 #45475a;
@define-color surface2 #585b70;
@define-color overlay0 #6c7086;
@define-color overlay1 #7f849c;
@define-color overlay2 #9399b2;
@define-color blue #89b4fa;
@define-color lavender #b4befe;
@define-color sapphire #74c7ec;
@define-color sky #89dceb;
@define-color teal #94e2d5;
@define-color green #a6e3a1;
@define-color yellow #f9e2af;
@define-color peach #fab387;
@define-color maroon #eba0ac;
@define-color red #f38ba8;
@define-color mauve #cba6f7;
@define-color pink #f5c2e7;
@define-color flamingo #f2cdcd;
@define-color rosewater #f5e0dc;
* {
font-family: Cantarell, Symbols Nerd Font;
font-weight: bolder;
font-size: 14px;
}
window#waybar {
background-color: @crust;
color: @text;
transition-property: background-color;
transition-duration: .5s;
}
window#waybar.hidden {
opacity: 0.2;
}
window#waybar.termite {
background-color: #3F3F3F;
}
window#waybar.chromium {
background-color: #000000;
border: none;
}
button {
/* Use box-shadow instead of border so the text isn't offset */
box-shadow: inset 0 -3px transparent;
/* Avoid rounded borders under each button name */
border: none;
border-radius: 0;
}
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
#workspaces button:hover {
color: @blue;
box-shadow: inherit;
text-shadow: inherit;
background: @crust;
border: @crust;
}
#workspaces button {
padding: 0px;
color: @surface2;
margin: 2px;
transition: color 200ms ease-in-out;
}
#workspaces button.selected {
color: @blue;
}
#workspaces button.active {
color: @blue;
}
#workspaces button.urgent {
color: @red;
}
#clock,
#battery,
#cpu,
#memory,
#disk,
#temperature,
#backlight,
#network,
#pulseaudio,
#wireplumber,
#custom-pacman,
#tray,
#mode,
#idle_inhibitor,
#scratchpad,
#mpd {
padding: 0 2px;
color: @text;
border-radius: 15px;
margin: 2px 0;
}
#cpu {
margin-left: 4px;
}
#idle_inhibitor.activated {
color: @green;
}
#clock {
color: @text;
}
#custom-pacman {
color: @peach;
}
#pulseaudio {
color: @mauve;
}
#pulseaudio.muted {
color: @surface2;
}
#network {
color: @blue;
}
#network.disconnected {
color: @surface2;
}
#battery {
color: @green;
}
#battery.warning:not(.charging) {
color: @red;
}
#group-power {
color: @maroon;
}
#group-cpu {
margin-right: 3px;
}
#custom-reboot {
color: @green;
}
#custom-lock {
color: @blue;
}
#custom-quit {
color: @lavender;
}
#custom-sleep {
color: @sky;
}
#keyboard-state > label {
padding: 0 5px;
}
#keyboard-state > label.locked {
background: rgba(0, 0, 0, 0.2);
}
#scratchpad {
background: rgba(0, 0, 0, 0.2);
}
#scratchpad.empty {
background-color: transparent;
}
#tray menu {
background-color: rgba(0, 0, 0, 0.25); /* Transparent background */
color: white;
}