diff --git a/eww/scss/osd/_vol.scss b/eww/scss/osd/_vol.scss new file mode 100644 index 0000000..0ffb1ff --- /dev/null +++ b/eww/scss/osd/_vol.scss @@ -0,0 +1,27 @@ +@use "../colors/_glassy.scss" as *; +//OSD - fill colors - volume + +@mixin osd_fill_cols_vol { + &.osd_vol { + .osd_prog_filled { + &.off { + background-color: $osd_fill_col_vol_off; + } + &.low { + background-color: $osd_fill_col_vol_low; + } + &.med { + background-color: $osd_fill_col_vol_med; + } + &.high { + background-color: $osd_fill_col_vol_high; + } + &.vhigh { + background-color: $osd_fill_col_vol_vhigh; + } + &.full { + background-color: $osd_fill_col_vol_full; + } + } + } +}