dotfiles/configs/waybar/style.css

86 lines
1.6 KiB
CSS
Raw Normal View History

@import "macchiato.css";
* {
2022-11-22 20:35:08 +03:00
font-family: "JetBrains Mono", "Noto Sans";
font-size: 9pt;
border: none;
2022-08-30 13:46:55 +03:00
font-weight: 400;
2022-09-11 14:26:57 +03:00
padding: 1 1px;
}
window#waybar {
background-color: @base;
color: @yellow;
}
#workspaces button {
background-color: transparent;
2022-09-11 14:26:57 +03:00
border-radius: 2px;
color: @subtext0;
2022-11-20 10:25:51 +03:00
margin: 4px 1px;
}
#workspaces button:hover {
color: @red;
background-color: @surface1;
}
#workspaces button.focused {
color: @yellow;
background-color: @mantle;
}
#workspaces button.urgent {
background-color: @pink;
}
2022-11-20 10:25:51 +03:00
#mode {
background-color: @mantle;
2022-11-20 10:25:51 +03:00
}
#language, #clock, #battery, #cpu, #memory, #disk, #temperature, #backlight, #network, #pulseaudio, #custom-media, #tray, #mode, #idle_inhibitor, #mpd{
2022-09-11 14:26:57 +03:00
padding: 0 4px;
color: @text;
background-color: @mantle;
2022-09-11 14:26:57 +03:00
border-radius: 2px;
2022-11-20 10:25:51 +03:00
margin: 4px 1px;
2022-08-31 20:13:17 +03:00
}
2022-08-30 12:27:19 +03:00
#window {
color: @yellow;
2022-11-20 10:25:51 +03:00
font-weight: 800;
2022-08-30 12:27:19 +03:00
}
/* If workspaces is the leftmost module, omit left margin */
.modules-left > widget:first-child > #workspaces {
margin-left: 0;
}
/* If workspaces is the rightmost module, omit right margin */
.modules-right > widget:last-child > #workspaces {
margin-right: 0;
}
@keyframes blink {
to {
background-color: #888888;
color: #000000;
}
}
#battery.critical:not(.charging) {
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
label:focus {
background-color: #000000;
}
#language {
2022-09-11 14:26:57 +03:00
padding: 0 4px;
min-width: 16px;
}
2022-11-20 10:25:51 +03:00