2024-06-23 19:39:49 +02:00
|
|
|
@import "colors/mocha.css";
|
|
|
|
|
|
|
|
/* margin: top right bottom left */
|
|
|
|
/* Spacing outside the element */
|
|
|
|
|
|
|
|
/* Spacing inside the element */
|
|
|
|
|
|
|
|
* {
|
|
|
|
font-family: FiraCode Mono Nerd Font;
|
2025-01-18 20:12:19 +01:00
|
|
|
font-size: 13px;
|
|
|
|
min-height: 0;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 2px 0px;
|
|
|
|
border-radius: 6px;
|
2024-06-23 19:39:49 +02:00
|
|
|
}
|
|
|
|
|
2025-01-18 20:12:19 +01:00
|
|
|
#clock,
|
|
|
|
#battery,
|
|
|
|
#cpu,
|
|
|
|
#temperature,
|
|
|
|
#backlight,
|
|
|
|
#network,
|
|
|
|
#pulseaudio {
|
|
|
|
color: @crust;
|
|
|
|
font-family: FiraCode Mono Nerd Font;
|
|
|
|
font-size: 13px;
|
|
|
|
min-height: 0;
|
|
|
|
margin: 4px;
|
|
|
|
padding: 6px 1px;
|
|
|
|
background: #1B1B1B;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-06-23 19:39:49 +02:00
|
|
|
window#waybar {
|
2025-01-18 20:12:19 +01:00
|
|
|
background-color: #070707;
|
2024-06-23 19:39:49 +02:00
|
|
|
color: @text;
|
|
|
|
transition-property: background-color;
|
|
|
|
transition-duration: 0.5s;
|
|
|
|
transition-duration: .5s;
|
2025-01-18 20:12:19 +01:00
|
|
|
border-radius: 0px;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
2024-06-23 19:39:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#workspaces button {
|
|
|
|
color: #A9A1E1;
|
2025-01-18 20:12:19 +01:00
|
|
|
background: #1B1B1B;
|
2024-06-23 19:39:49 +02:00
|
|
|
transition: all 0.3s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
#workspaces button:hover {
|
|
|
|
background: @surface0;
|
|
|
|
color: @text;
|
|
|
|
}
|
|
|
|
|
|
|
|
#workspaces button.active {
|
2025-01-18 20:12:19 +01:00
|
|
|
color: #1B1B1B;
|
|
|
|
background: #A9A1E1;
|
|
|
|
padding: 0px;
|
|
|
|
margin: 7px;
|
2024-06-23 19:39:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#cpu {
|
|
|
|
color: #51AFEF;
|
|
|
|
}
|
|
|
|
|
|
|
|
#temperature {
|
|
|
|
color: #51AFEF;
|
|
|
|
}
|
|
|
|
|
|
|
|
#pulseaudio {
|
|
|
|
background-color: @joksi-bg;
|
2025-01-18 20:12:19 +01:00
|
|
|
color: #A9A1E1;
|
2024-06-23 19:39:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#network {
|
2024-07-10 11:10:00 +02:00
|
|
|
color: #A9A1E1;
|
2024-06-23 19:39:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#battery {
|
|
|
|
background-color: @joksi-bg;
|
|
|
|
color: #EC5F67;
|
|
|
|
}
|
|
|
|
|
|
|
|
#clock {
|
|
|
|
color: #98BE65;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes blink {
|
|
|
|
to {
|
|
|
|
background-color: rgba(30, 34, 42, 0.5);
|
|
|
|
color: #abb2bf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#battery.critical:not(.charging) {
|
|
|
|
color: #f53c3c;
|
|
|
|
animation-name: blink;
|
|
|
|
animation-duration: 0.5s;
|
|
|
|
animation-timing-function: linear;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-direction: alternate;
|
|
|
|
}
|
|
|
|
|
|
|
|
label:focus {
|
|
|
|
background-color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
|