Upload files to "eww/scss/osd"

This commit is contained in:
Candifloss 2024-08-03 14:54:33 +00:00
parent 9a589d3920
commit e1c967a581

27
eww/scss/osd/_vol.scss Normal file
View File

@ -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;
}
}
}
}