dotfiles-mirror/config/waybar/style.css

99 lines
1.6 KiB
CSS
Raw Normal View History

@define-color border #3c3836;
@define-color background #282828;
@define-color surface0 #3c3836;
@define-color overlay0 #504945;
@define-color text #ebdbb2;
@define-color text_dim #a89984;
@define-color blue #458588;
@define-color green #b8bb26;
@define-color yellow #d79921;
@define-color peach #fe8019;
@define-color maroon #fb4934;
@define-color lavender #b16286;
@define-color pink #d3869b;
@define-color teal #689d6a;
@define-color grey #928374;
2025-10-31 22:14:15 +03:30
* {
border: none;
font-family: "JetBrainsMono Nerd Font";
font-size: 15px;
min-height: 10px;
2025-10-31 22:14:15 +03:30
}
window#waybar {
background: @background;
2025-11-03 15:00:40 +03:30
border-top: 2px solid @surface0;
2025-10-31 22:14:15 +03:30
}
#disk,
#pulseaudio,
#window,
#clock,
#network,
#battery,
#privacy,
#memory,
#cpu,
#workspaces,
#tray,
#bluetooth,
#tray menu {
padding: 5px 10px;
margin: 8px 0 8px 10px;
background: @surface0;
color: @text;
2025-10-31 22:14:15 +03:30
transition: 0.3s;
border: 1.5px solid @border;
border-radius: 8px;
2025-10-31 22:14:15 +03:30
}
#window {
transition: none;
}
window#waybar.empty #window {
background: transparent;
box-shadow: none;
border: none;
}
#network {
margin: 8px 12px 8px 12px;
color: @text;
2025-10-31 22:14:15 +03:30
}
#pulseaudio,
#clock {
color: @text;
2025-10-31 22:14:15 +03:30
}
#workspaces {
margin-left: 12px;
color: @text;
2025-10-31 22:14:15 +03:30
}
#workspaces button {
margin: 0;
padding: 1px 3px;
color: @text;
transition: none;
2025-10-31 22:14:15 +03:30
}
#workspaces button.empty {
color: @text;
2025-10-31 22:14:15 +03:30
}
#workspaces button.active {
color: @peach;
2025-10-31 22:14:15 +03:30
}
#workspaces button.urgent {
color: @maroon;
2025-10-31 22:14:15 +03:30
}
#workspaces button:hover {
background: @overlay0;
color: @text;
2025-10-31 22:14:15 +03:30
}