From c4dd2deab8377b74b97f27a4af66e95187c781f8 Mon Sep 17 00:00:00 2001 From: Candifloss Date: Sat, 3 Aug 2024 14:50:48 +0000 Subject: [PATCH] Add eww/scss/osd/_bri.scss --- eww/scss/osd/_bri.scss | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 eww/scss/osd/_bri.scss diff --git a/eww/scss/osd/_bri.scss b/eww/scss/osd/_bri.scss new file mode 100644 index 0000000..1a8ca79 --- /dev/null +++ b/eww/scss/osd/_bri.scss @@ -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; + } + } + } +} \ No newline at end of file