diff --git a/tree/.config/eww/eww.scss b/tree/.config/eww/eww.scss index 19ee137..c7de8c2 100644 --- a/tree/.config/eww/eww.scss +++ b/tree/.config/eww/eww.scss @@ -142,12 +142,23 @@ scale trough { .battery-gauge.low { color: red; + animation: 1s ease-in 1s infinite alternate battery-gauge-low; } .battery-gauge.charging { color: purple; } +@keyframes battery-gauge-low { + from { + background-color: $background; + } + + to { + background-color: red; + } +} + .calendar { background: $lowlight2; }