Add eww/scss/osd/_bri.scss

This commit is contained in:
Candifloss 2024-08-03 14:50:48 +00:00
parent c9429fd76a
commit c4dd2deab8

24
eww/scss/osd/_bri.scss Normal file
View File

@ -0,0 +1,24 @@
@use "../colors/_glassy.scss" as *;
//OSD - fill colors - brightness
@mixin osd_fill_cols_bri {
&.osd_bri {
.osd_prog_filled {
&.low {
background-color: $osd_fill_col_bri_low;
}
&.med {
background-color: $osd_fill_col_bri_med;
}
&.high {
background-color: $osd_fill_col_bri_high;
}
&.vhigh {
background-color: $osd_fill_col_bri_vhigh;
}
&.full {
background-color: $osd_fill_col_bri_full;
}
}
}
}