/* Общие настройки бара */
window#waybar {
background-color: rgba(26, 26, 26, 0.9); /* Темно-серый с легкой прозрачностью */
border-bottom: 2px solid #333333;
color: #ffffff;
font-family: "JetBrains Mono", "monospace";
font-size: 13px;
transition-property: background-color;
transition-duration: .5s;
}
/* Настройка модулей (отступы) */
#clock, #custom-power {
padding: 0 15px;
margin: 4px 0;
}
/* Выделение модуля питания цветом (опционально) */
#custom-power {
background-color: #383838;
border-radius: 5px;
margin-right: 10px;
color: #ebdbb2; /* Цвет "песочный" в стиле Gruvbox */
}
/* Стиль для часов */
#clock {
font-weight: bold;
}