Candyrice/eww/scss/osd/_bri.scss

24 lines
476 B
SCSS

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