dotfiles/home/apps/waybar/style.css

64 lines
1.1 KiB
CSS
Raw Normal View History

2023-03-10 06:53:53 +01:00
@define-color red #f38ba8;
@define-color pink #f5c2e7;
@define-color crust #11111c;
@define-color base #1e1e2e;
@define-color text #cdd6f4;
@define-color surface0 #313244;
@define-color surface2 #585b70;
2023-03-08 08:52:23 +01:00
* {
2023-03-10 06:53:53 +01:00
font-family: Symbols Nerd Font, IBM Plex Sans;
2023-03-08 08:52:23 +01:00
font-size: 16px;
2023-03-10 06:53:53 +01:00
color: @text;
2023-03-08 08:52:23 +01:00
}
window#waybar {
2023-03-10 06:53:53 +01:00
background-color: @base;
border: 2px solid @crust;
border-radius: 5px;
}
#workspaces button:first-child {
padding: 0 5px;
border-radius: 5px 0 0 5px;
border-left: 2px solid @crust;
}
#workspaces button.active:first-child {
padding: 0 5px;
box-shadow: unset;
border-radius: 5px 0 0 5px;
border-left: 2px solid @pink;
border-top: 2px solid @pink;
border-bottom: 2px solid @pink;
2023-03-08 08:52:23 +01:00
}
#workspaces button {
padding: 0 5px;
border-radius: 0;
2023-03-10 06:53:53 +01:00
border-top: 2px solid @crust;
border-bottom: 2px solid @crust;
2023-03-08 08:52:23 +01:00
}
#workspaces button:hover {
2023-03-10 06:53:53 +01:00
background: @surface2;
2023-03-08 08:52:23 +01:00
}
#workspaces button.active {
2023-03-10 06:53:53 +01:00
color: @pink;
background: @surface0;
border-top: 2px solid @pink;
border-bottom: 2px solid @pink;
2023-03-08 08:52:23 +01:00
}
#workspaces button.urgent {
2023-03-10 06:53:53 +01:00
background-color: @red;
2023-03-08 08:52:23 +01:00
}
#clock,
#network,
#pulseaudio,
#tray,
#idle_inhibitor {
padding: 0 10px;
}