From c2e46f098ef601e6b566de83a40c23e32fd538a2 Mon Sep 17 00:00:00 2001 From: Jas Singh Date: Thu, 31 Oct 2024 00:49:05 -0700 Subject: [PATCH] Fixed an issue where the correct global colors to the icon weren't being applied in split variant. (#409) * Fix global icon coloring * Fix themes * Update custom modules to use global colors if enabled * Fix icons * Fix custom module icon color --- scss/style/bar/audio.scss | 3 +- scss/style/bar/battery.scss | 4 +- scss/style/bar/bluetooth.scss | 3 +- scss/style/bar/clock.scss | 3 +- scss/style/bar/media.scss | 3 +- scss/style/bar/menu.scss | 2 +- scss/style/bar/network.scss | 3 +- scss/style/bar/notifications.scss | 10 +- scss/style/bar/window_title.scss | 3 +- scss/style/customModules/style.scss | 9 +- themes/catppuccin_frappe_split.json | 4 +- themes/catppuccin_latte_split.json | 4 +- themes/catppuccin_macchiato_split.json | 4 +- themes/catppuccin_mocha_split.json | 688 +++++++++---------- themes/cyberpunk_split.json | 4 +- themes/dracula_split.json | 4 +- themes/everforest_split.json | 4 +- themes/gruvbox_split.json | 4 +- themes/monochrome_split.json | 4 +- themes/nord_split.json | 4 +- themes/one_dark_split.json | 4 +- themes/rose_pine_moon_split.json | 4 +- themes/rose_pine_split.json | 4 +- themes/tokyo_night_split.json | 4 +- widget/settings/pages/config/menus/volume.ts | 1 + 25 files changed, 399 insertions(+), 385 deletions(-) diff --git a/scss/style/bar/audio.scss b/scss/style/bar/audio.scss index 10e1a9d..d69c0e7 100644 --- a/scss/style/bar/audio.scss +++ b/scss/style/bar/audio.scss @@ -13,7 +13,7 @@ .bar-button-icon.volume { border-top-left-radius: $bar-buttons-radius; border-bottom-left-radius: $bar-buttons-radius; - background: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-volume-icon_background); + background: if($bar-buttons-monochrome, $bar-buttons-icon_background, $bar-buttons-volume-icon_background); padding: $bar-buttons-padding_y 0em; padding-left: $bar-buttons-padding_x; padding-right: $bar-buttons-volume-spacing; @@ -27,6 +27,7 @@ $bar-buttons-radius * 0.4, $bar-buttons-radius ); + color: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-volume-icon); } .bar-button-label.volume { diff --git a/scss/style/bar/battery.scss b/scss/style/bar/battery.scss index f1b449a..11f5802 100644 --- a/scss/style/bar/battery.scss +++ b/scss/style/bar/battery.scss @@ -11,7 +11,7 @@ .bar-button-icon.battery { border-top-left-radius: $bar-buttons-radius; border-bottom-left-radius: $bar-buttons-radius; - background: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-battery-icon_background); + background: if($bar-buttons-monochrome, $bar-buttons-icon_background, $bar-buttons-battery-icon_background); padding: $bar-buttons-padding_y 0em; padding-left: $bar-buttons-padding_x; padding-right: $bar-buttons-battery-spacing; @@ -29,6 +29,7 @@ &:last-child { border-radius: $bar-buttons-radius; } + color: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-battery-icon); } .bar-button-label.battery { @@ -60,4 +61,3 @@ 0em ); } - diff --git a/scss/style/bar/bluetooth.scss b/scss/style/bar/bluetooth.scss index f641765..8aaf91c 100644 --- a/scss/style/bar/bluetooth.scss +++ b/scss/style/bar/bluetooth.scss @@ -23,7 +23,7 @@ .bar-button-icon.bluetooth { border-top-left-radius: $bar-buttons-radius; border-bottom-left-radius: $bar-buttons-radius; - background: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-bluetooth-icon_background); + background: if($bar-buttons-monochrome, $bar-buttons-icon_background, $bar-buttons-bluetooth-icon_background); padding: $bar-buttons-padding_y 0em; padding-left: $bar-buttons-padding_x; padding-right: $bar-buttons-bluetooth-spacing; @@ -37,6 +37,7 @@ $bar-buttons-radius * 0.4, $bar-buttons-radius ); + color: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-bluetooth-icon); } .bar-button-label.bluetooth { diff --git a/scss/style/bar/clock.scss b/scss/style/bar/clock.scss index c861ce7..56d4d93 100644 --- a/scss/style/bar/clock.scss +++ b/scss/style/bar/clock.scss @@ -12,7 +12,7 @@ .bar-button-icon.clock { border-top-left-radius: $bar-buttons-radius; border-bottom-left-radius: $bar-buttons-radius; - background: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-clock-icon_background); + background: if($bar-buttons-monochrome, $bar-buttons-icon_background, $bar-buttons-clock-icon_background); padding: $bar-buttons-padding_y 0em; padding-left: $bar-buttons-padding_x; padding-right: $bar-buttons-clock-spacing; @@ -26,6 +26,7 @@ $bar-buttons-radius * 0.4, $bar-buttons-radius ); + color: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-clock-icon); } .bar-button-label.clock { diff --git a/scss/style/bar/media.scss b/scss/style/bar/media.scss index 95e8b49..c0a4060 100644 --- a/scss/style/bar/media.scss +++ b/scss/style/bar/media.scss @@ -10,7 +10,7 @@ .style2 { .bar-button-icon.media { - background: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-media-icon_background); + background: if($bar-buttons-monochrome, $bar-buttons-icon_background, $bar-buttons-media-icon_background); padding: $bar-buttons-padding_y 0em; padding-left: $bar-buttons-padding_x; padding-right: $bar-buttons-media-spacing; @@ -24,6 +24,7 @@ $bar-buttons-radius * 0.4, $bar-buttons-radius ); + color: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-media-icon); } .bar-button-label.media { diff --git a/scss/style/bar/menu.scss b/scss/style/bar/menu.scss index 224956e..eafa2d2 100644 --- a/scss/style/bar/menu.scss +++ b/scss/style/bar/menu.scss @@ -5,7 +5,7 @@ } .bar_item_box_visible.style2.dashboard { - background: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-dashboard-background); + background: if($bar-buttons-monochrome, $bar-buttons-icon_background, $bar-buttons-dashboard-background); .bar-menu_label { color: if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-dashboard-icon); diff --git a/scss/style/bar/network.scss b/scss/style/bar/network.scss index a2b02c4..60318e7 100644 --- a/scss/style/bar/network.scss +++ b/scss/style/bar/network.scss @@ -11,7 +11,7 @@ .bar-button-icon.network-icon { border-top-left-radius: $bar-buttons-radius; border-bottom-left-radius: $bar-buttons-radius; - background: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-network-icon_background); + background: if($bar-buttons-monochrome, $bar-buttons-icon_background, $bar-buttons-network-icon_background); padding: $bar-buttons-padding_y 0em; padding-left: $bar-buttons-padding_x; padding-right: $bar-buttons-network-spacing; @@ -25,6 +25,7 @@ $bar-buttons-radius * 0.4, $bar-buttons-radius ); + color: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-network-icon); } .bar-button-label.network-label { diff --git a/scss/style/bar/notifications.scss b/scss/style/bar/notifications.scss index 5818a26..d368630 100644 --- a/scss/style/bar/notifications.scss +++ b/scss/style/bar/notifications.scss @@ -13,7 +13,11 @@ .bar-button-icon.notifications { border-top-left-radius: $bar-buttons-radius; border-bottom-left-radius: $bar-buttons-radius; - background: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-notifications-icon_background); + background: if( + $bar-buttons-monochrome, + $bar-buttons-icon_background, + $bar-buttons-notifications-icon_background + ); padding: $bar-buttons-padding_y 0em; padding-left: $bar-buttons-padding_x; padding-right: $bar-buttons-notifications-spacing; @@ -27,11 +31,11 @@ $bar-buttons-radius * 0.4, $bar-buttons-radius ); - color: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-notifications-icon); - &:last-child { border-radius: $bar-buttons-radius; } + + color: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-notifications-icon); } .bar-button-label.notifications { diff --git a/scss/style/bar/window_title.scss b/scss/style/bar/window_title.scss index 0fd422c..6dda03f 100644 --- a/scss/style/bar/window_title.scss +++ b/scss/style/bar/window_title.scss @@ -15,7 +15,7 @@ .bar-button-icon.windowtitle { border-top-left-radius: $bar-buttons-radius; border-bottom-left-radius: $bar-buttons-radius; - background: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-windowtitle-icon_background); + background: if($bar-buttons-monochrome, $bar-buttons-icon_background, $bar-buttons-windowtitle-icon_background); padding: $bar-buttons-padding_y 0em; padding-left: $bar-buttons-padding_x; padding-right: $bar-buttons-windowtitle-spacing; @@ -29,6 +29,7 @@ $bar-buttons-radius * 0.4, $bar-buttons-radius ); + color: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-windowtitle-icon); } .bar-button-label.windowtitle { diff --git a/scss/style/customModules/style.scss b/scss/style/customModules/style.scss index 1522e8a..c5e11fc 100644 --- a/scss/style/customModules/style.scss +++ b/scss/style/customModules/style.scss @@ -54,7 +54,10 @@ $transparency-value-hover: 1 - $bar-button-background-hover-opacity-ratio; .bar_item_box_visible { &.#{$class} { - background: transparentize($labelBackground, $transparency-value); + background: transparentize( + if($bar-buttons-monochrome, $bar-buttons-background, $labelBackground), + $transparency-value + ); border: if( $borderEnabled or $bar-buttons-enableBorders, $bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $borderColor), @@ -84,9 +87,9 @@ .style2 { .module-icon.#{$class} { - background: if($bar-buttons-monochrome, $bar-buttons-icon, $iconBackground); + background: if($bar-buttons-monochrome, $bar-buttons-icon_background, $iconBackground); padding-right: $spacing; - color: if($bar-buttons-monochrome, $bar-buttons-background, $iconColor); + color: if($bar-buttons-monochrome, $bar-buttons-icon, $iconColor); border-top-left-radius: if( $borderEnabled or $bar-buttons-enableBorders, $bar-buttons-radius * 0.4, diff --git a/themes/catppuccin_frappe_split.json b/themes/catppuccin_frappe_split.json index da8d897..aaeb55c 100644 --- a/themes/catppuccin_frappe_split.json +++ b/themes/catppuccin_frappe_split.json @@ -3,7 +3,7 @@ "theme.bar.background": "#232634", "theme.bar.buttons.media.icon": "#303446", "theme.bar.buttons.media.text": "#babbf1", - "theme.bar.buttons.icon": "#babbf1", + "theme.bar.buttons.icon": "#242438", "theme.bar.buttons.text": "#babbf1", "theme.bar.buttons.hover": "#51576d", "theme.bar.buttons.background": "#303446", @@ -251,7 +251,7 @@ "theme.bar.menus.check_radio_button.background": "#232534", "theme.bar.menus.check_radio_button.active": "#b9baf1", "theme.bar.buttons.style": "split", - "theme.bar.buttons.icon_background": "#242438", + "theme.bar.buttons.icon_background": "#babbf1", "theme.bar.buttons.volume.icon_background": "#ea999c", "theme.bar.buttons.network.icon_background": "#ca9ee6", "theme.bar.buttons.bluetooth.icon_background": "#99d1db", diff --git a/themes/catppuccin_latte_split.json b/themes/catppuccin_latte_split.json index c2ca1c8..8641dd7 100644 --- a/themes/catppuccin_latte_split.json +++ b/themes/catppuccin_latte_split.json @@ -309,10 +309,10 @@ "theme.bar.buttons.dashboard.icon": "#dcdee8", "theme.bar.buttons.dashboard.border": "#df8e1d", "theme.bar.buttons.dashboard.background": "#df8e1d", - "theme.bar.buttons.icon": "#7287fd", + "theme.bar.buttons.icon": "#242438", "theme.bar.buttons.text": "#7287fd", "theme.bar.buttons.hover": "#bcc0cc", - "theme.bar.buttons.icon_background": "#242438", + "theme.bar.buttons.icon_background": "#7287fd", "theme.bar.buttons.background": "#e6e9ef", "theme.bar.buttons.style": "split", "theme.bar.background": "#eff1f5", diff --git a/themes/catppuccin_macchiato_split.json b/themes/catppuccin_macchiato_split.json index 0575838..0b4e43b 100644 --- a/themes/catppuccin_macchiato_split.json +++ b/themes/catppuccin_macchiato_split.json @@ -3,7 +3,7 @@ "theme.bar.background": "#181926", "theme.bar.buttons.media.icon": "#24273a", "theme.bar.buttons.media.text": "#b7bdf8", - "theme.bar.buttons.icon": "#b7bdf8", + "theme.bar.buttons.icon": "#242438", "theme.bar.buttons.text": "#b7bdf8", "theme.bar.buttons.hover": "#494d64", "theme.bar.buttons.background": "#24273a", @@ -251,7 +251,7 @@ "theme.bar.menus.check_radio_button.background": "#181826", "theme.bar.menus.check_radio_button.active": "#b7bcf8", "theme.bar.buttons.style": "split", - "theme.bar.buttons.icon_background": "#242438", + "theme.bar.buttons.icon_background": "#b7bdf8", "theme.bar.buttons.volume.icon_background": "#ee999f", "theme.bar.buttons.network.icon_background": "#c5a0f6", "theme.bar.buttons.bluetooth.icon_background": "#91d7e3", diff --git a/themes/catppuccin_mocha_split.json b/themes/catppuccin_mocha_split.json index 2cdfccd..2bc8929 100644 --- a/themes/catppuccin_mocha_split.json +++ b/themes/catppuccin_mocha_split.json @@ -1,345 +1,345 @@ { - "theme.bar.menus.background": "#11111b", - "theme.bar.background": "#11111b", - "theme.bar.buttons.media.icon": "#1e1e2e", - "theme.bar.buttons.media.text": "#b4befe", - "theme.bar.buttons.icon": "#b4befe", - "theme.bar.buttons.text": "#b4befe", - "theme.bar.buttons.hover": "#45475a", - "theme.bar.buttons.background": "#242438", - "theme.bar.menus.text": "#cdd6f4", - "theme.bar.menus.border.color": "#313244", - "theme.bar.buttons.media.background": "#242438", - "theme.bar.menus.menu.volume.text": "#cdd6f4", - "theme.bar.menus.menu.volume.card.color": "#1e1e2e", - "theme.bar.menus.menu.volume.label.color": "#eba0ac", - "theme.bar.menus.popover.text": "#b4befe", - "theme.bar.menus.popover.background": "#181824", - "theme.bar.menus.menu.dashboard.powermenu.shutdown": "#f38ba8", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#f38ba8", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#a6e3a1", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#11111a", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#cdd6f4", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#b4befe", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#313244", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#11111b", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#1e1e2e", - "theme.bar.menus.menu.notifications.switch.puck": "#454759", - "theme.bar.menus.menu.notifications.switch.disabled": "#313245", - "theme.bar.menus.menu.notifications.switch.enabled": "#b4befe", - "theme.bar.menus.menu.notifications.clear": "#f38ba8", - "theme.bar.menus.menu.notifications.switch_divider": "#45475a", - "theme.bar.menus.menu.notifications.border": "#313244", - "theme.bar.menus.menu.notifications.card": "#1e1e2e", - "theme.bar.menus.menu.notifications.background": "#11111b", - "theme.bar.menus.menu.notifications.no_notifications_label": "#313244", - "theme.bar.menus.menu.notifications.label": "#b4befe", - "theme.bar.menus.menu.dashboard.monitors.disk.label": "#f5c2e7", - "theme.bar.menus.menu.dashboard.monitors.disk.bar": "#f5c2e8", - "theme.bar.menus.menu.dashboard.monitors.disk.icon": "#f5c2e7", - "theme.bar.menus.menu.dashboard.monitors.gpu.label": "#a6e3a1", - "theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#a6e3a2", - "theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#a6e3a1", - "theme.bar.menus.menu.dashboard.monitors.ram.label": "#f9e2af", - "theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f9e2ae", - "theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f9e2af", - "theme.bar.menus.menu.dashboard.monitors.cpu.label": "#eba0ac", - "theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eba0ad", - "theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eba0ac", - "theme.bar.menus.menu.dashboard.monitors.bar_background": "#45475a", - "theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#b4befe", - "theme.bar.menus.menu.dashboard.directories.right.middle.color": "#cba6f7", - "theme.bar.menus.menu.dashboard.directories.right.top.color": "#94e2d5", - "theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#eba0ac", - "theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f9e2af", - "theme.bar.menus.menu.dashboard.directories.left.top.color": "#f5c2e7", - "theme.bar.menus.menu.dashboard.controls.input.text": "#181824", - "theme.bar.menus.menu.dashboard.controls.input.background": "#f5c2e7", - "theme.bar.menus.menu.dashboard.controls.volume.text": "#181824", - "theme.bar.menus.menu.dashboard.controls.volume.background": "#eba0ac", - "theme.bar.menus.menu.dashboard.controls.notifications.text": "#181824", - "theme.bar.menus.menu.dashboard.controls.notifications.background": "#f9e2af", - "theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#181824", - "theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#89dceb", - "theme.bar.menus.menu.dashboard.controls.wifi.text": "#181824", - "theme.bar.menus.menu.dashboard.controls.wifi.background": "#cba6f7", - "theme.bar.menus.menu.dashboard.controls.disabled": "#585b70", - "theme.bar.menus.menu.dashboard.shortcuts.recording": "#a6e3a1", - "theme.bar.menus.menu.dashboard.shortcuts.text": "#181824", - "theme.bar.menus.menu.dashboard.shortcuts.background": "#b4befe", - "theme.bar.menus.menu.dashboard.powermenu.sleep": "#89dceb", - "theme.bar.menus.menu.dashboard.powermenu.logout": "#a6e3a1", - "theme.bar.menus.menu.dashboard.powermenu.restart": "#fab387", - "theme.bar.menus.menu.dashboard.profile.name": "#f5c2e7", - "theme.bar.menus.menu.dashboard.border.color": "#313244", - "theme.bar.menus.menu.dashboard.background.color": "#11111b", - "theme.bar.menus.menu.dashboard.card.color": "#1e1e2e", - "theme.bar.menus.menu.clock.weather.hourly.temperature": "#f5c2e7", - "theme.bar.menus.menu.clock.weather.hourly.icon": "#f5c2e7", - "theme.bar.menus.menu.clock.weather.hourly.time": "#f5c2e7", - "theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#89dceb", - "theme.bar.menus.menu.clock.weather.thermometer.cold": "#89b4fa", - "theme.bar.menus.menu.clock.weather.thermometer.moderate": "#b4befe", - "theme.bar.menus.menu.clock.weather.thermometer.hot": "#fab387", - "theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#f38ba8", - "theme.bar.menus.menu.clock.weather.stats": "#f5c2e7", - "theme.bar.menus.menu.clock.weather.status": "#94e2d5", - "theme.bar.menus.menu.clock.weather.temperature": "#cdd6f4", - "theme.bar.menus.menu.clock.weather.icon": "#f5c2e7", - "theme.bar.menus.menu.clock.calendar.contextdays": "#585b70", - "theme.bar.menus.menu.clock.calendar.days": "#cdd6f4", - "theme.bar.menus.menu.clock.calendar.currentday": "#f5c2e7", - "theme.bar.menus.menu.clock.calendar.paginator": "#f5c2e6", - "theme.bar.menus.menu.clock.calendar.weekdays": "#f5c2e7", - "theme.bar.menus.menu.clock.calendar.yearmonth": "#94e2d5", - "theme.bar.menus.menu.clock.time.timeperiod": "#94e2d5", - "theme.bar.menus.menu.clock.time.time": "#f5c2e7", - "theme.bar.menus.menu.clock.text": "#cdd6f4", - "theme.bar.menus.menu.clock.border.color": "#313244", - "theme.bar.menus.menu.clock.background.color": "#11111b", - "theme.bar.menus.menu.clock.card.color": "#1e1e2e", - "theme.bar.menus.menu.battery.slider.puck": "#6c7086", - "theme.bar.menus.menu.battery.slider.backgroundhover": "#45475a", - "theme.bar.menus.menu.battery.slider.background": "#585b71", - "theme.bar.menus.menu.battery.slider.primary": "#f9e2af", - "theme.bar.menus.menu.battery.icons.active": "#f9e2af", - "theme.bar.menus.menu.battery.icons.passive": "#9399b2", - "theme.bar.menus.menu.battery.listitems.active": "#f9e2af", - "theme.bar.menus.menu.battery.listitems.passive": "#cdd6f3", - "theme.bar.menus.menu.battery.text": "#cdd6f4", - "theme.bar.menus.menu.battery.label.color": "#f9e2af", - "theme.bar.menus.menu.battery.border.color": "#313244", - "theme.bar.menus.menu.battery.background.color": "#11111b", - "theme.bar.menus.menu.battery.card.color": "#1e1e2e", - "theme.bar.menus.menu.systray.dropdownmenu.divider": "#1e1e2e", - "theme.bar.menus.menu.systray.dropdownmenu.text": "#cdd6f4", - "theme.bar.menus.menu.systray.dropdownmenu.background": "#11111b", - "theme.bar.menus.menu.bluetooth.iconbutton.active": "#89dceb", - "theme.bar.menus.menu.bluetooth.iconbutton.passive": "#cdd6f4", - "theme.bar.menus.menu.bluetooth.icons.active": "#89dceb", - "theme.bar.menus.menu.bluetooth.icons.passive": "#9399b2", - "theme.bar.menus.menu.bluetooth.listitems.active": "#89dcea", - "theme.bar.menus.menu.bluetooth.listitems.passive": "#cdd6f4", - "theme.bar.menus.menu.bluetooth.switch.puck": "#454759", - "theme.bar.menus.menu.bluetooth.switch.disabled": "#313245", - "theme.bar.menus.menu.bluetooth.switch.enabled": "#89dceb", - "theme.bar.menus.menu.bluetooth.switch_divider": "#45475a", - "theme.bar.menus.menu.bluetooth.status": "#6c7086", - "theme.bar.menus.menu.bluetooth.text": "#cdd6f4", - "theme.bar.menus.menu.bluetooth.label.color": "#89dceb", - "theme.bar.menus.menu.bluetooth.border.color": "#313244", - "theme.bar.menus.menu.bluetooth.background.color": "#11111b", - "theme.bar.menus.menu.bluetooth.card.color": "#1e1e2e", - "theme.bar.menus.menu.network.iconbuttons.active": "#cba6f7", - "theme.bar.menus.menu.network.iconbuttons.passive": "#cdd6f4", - "theme.bar.menus.menu.network.icons.active": "#cba6f7", - "theme.bar.menus.menu.network.icons.passive": "#9399b2", - "theme.bar.menus.menu.network.listitems.active": "#cba6f6", - "theme.bar.menus.menu.network.listitems.passive": "#cdd6f4", - "theme.bar.menus.menu.network.status.color": "#6c7086", - "theme.bar.menus.menu.network.text": "#cdd6f4", - "theme.bar.menus.menu.network.label.color": "#cba6f7", - "theme.bar.menus.menu.network.border.color": "#313244", - "theme.bar.menus.menu.network.background.color": "#11111b", - "theme.bar.menus.menu.network.card.color": "#1e1e2e", - "theme.bar.menus.menu.volume.input_slider.puck": "#585b70", - "theme.bar.menus.menu.volume.input_slider.backgroundhover": "#45475a", - "theme.bar.menus.menu.volume.input_slider.background": "#585b71", - "theme.bar.menus.menu.volume.input_slider.primary": "#eba0ac", - "theme.bar.menus.menu.volume.audio_slider.puck": "#585b70", - "theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#45475a", - "theme.bar.menus.menu.volume.audio_slider.background": "#585b71", - "theme.bar.menus.menu.volume.audio_slider.primary": "#eba0ac", - "theme.bar.menus.menu.volume.icons.active": "#eba0ac", - "theme.bar.menus.menu.volume.icons.passive": "#9399b2", - "theme.bar.menus.menu.volume.iconbutton.active": "#eba0ac", - "theme.bar.menus.menu.volume.iconbutton.passive": "#cdd6f4", - "theme.bar.menus.menu.volume.listitems.active": "#eba0ab", - "theme.bar.menus.menu.volume.listitems.passive": "#cdd6f4", - "theme.bar.menus.menu.volume.border.color": "#313244", - "theme.bar.menus.menu.volume.background.color": "#11111b", - "theme.bar.menus.menu.media.slider.puck": "#6c7086", - "theme.bar.menus.menu.media.slider.backgroundhover": "#45475a", - "theme.bar.menus.menu.media.slider.background": "#585b71", - "theme.bar.menus.menu.media.slider.primary": "#f5c2e7", - "theme.bar.menus.menu.media.buttons.text": "#11111b", - "theme.bar.menus.menu.media.buttons.background": "#b4beff", - "theme.bar.menus.menu.media.buttons.enabled": "#94e2d4", - "theme.bar.menus.menu.media.buttons.inactive": "#585b70", - "theme.bar.menus.menu.media.border.color": "#313244", - "theme.bar.menus.menu.media.background.color": "#11111b", - "theme.bar.menus.menu.media.album": "#f5c2e8", - "theme.bar.menus.menu.media.artist": "#94e2d6", - "theme.bar.menus.menu.media.song": "#b4beff", - "theme.bar.menus.tooltip.text": "#cdd6f4", - "theme.bar.menus.tooltip.background": "#11111b", - "theme.bar.menus.dropdownmenu.divider": "#1e1e2e", - "theme.bar.menus.dropdownmenu.text": "#cdd6f4", - "theme.bar.menus.dropdownmenu.background": "#11111b", - "theme.bar.menus.slider.puck": "#6c7086", - "theme.bar.menus.slider.backgroundhover": "#45475a", - "theme.bar.menus.slider.background": "#585b71", - "theme.bar.menus.slider.primary": "#b4befe", - "theme.bar.menus.progressbar.background": "#45475a", - "theme.bar.menus.progressbar.foreground": "#b4befe", - "theme.bar.menus.iconbuttons.active": "#b4beff", - "theme.bar.menus.iconbuttons.passive": "#cdd6f3", - "theme.bar.menus.buttons.text": "#181824", - "theme.bar.menus.buttons.disabled": "#585b71", - "theme.bar.menus.buttons.active": "#f5c2e6", - "theme.bar.menus.buttons.default": "#b4befe", - "theme.bar.menus.switch.puck": "#454759", - "theme.bar.menus.switch.disabled": "#313245", - "theme.bar.menus.switch.enabled": "#b4befe", - "theme.bar.menus.icons.active": "#b4befe", - "theme.bar.menus.icons.passive": "#585b70", - "theme.bar.menus.listitems.active": "#b4befd", - "theme.bar.menus.listitems.passive": "#cdd6f4", - "theme.bar.menus.label": "#b4befe", - "theme.bar.menus.feinttext": "#313244", - "theme.bar.menus.dimtext": "#585b70", - "theme.bar.menus.cards": "#1e1e2e", - "theme.bar.buttons.notifications.total": "#b4befe", - "theme.bar.buttons.notifications.icon": "#1e1e2e", - "theme.bar.buttons.notifications.background": "#242438", - "theme.bar.buttons.clock.icon": "#232338", - "theme.bar.buttons.clock.text": "#f5c2e7", - "theme.bar.buttons.clock.background": "#242438", - "theme.bar.buttons.battery.icon": "#242438", - "theme.bar.buttons.battery.text": "#f9e2af", - "theme.bar.buttons.battery.background": "#242438", - "theme.bar.buttons.systray.background": "#242438", - "theme.bar.buttons.bluetooth.icon": "#1e1e2e", - "theme.bar.buttons.bluetooth.text": "#89dceb", - "theme.bar.buttons.bluetooth.background": "#242438", - "theme.bar.buttons.network.icon": "#242438", - "theme.bar.buttons.network.text": "#cba6f7", - "theme.bar.buttons.network.background": "#242438", - "theme.bar.buttons.volume.icon": "#242438", - "theme.bar.buttons.volume.text": "#eba0ac", - "theme.bar.buttons.volume.background": "#242438", - "theme.bar.buttons.windowtitle.icon": "#1e1e2e", - "theme.bar.buttons.windowtitle.text": "#f5c2e7", - "theme.bar.buttons.windowtitle.background": "#242438", - "theme.bar.buttons.workspaces.active": "#f5c2e7", - "theme.bar.buttons.workspaces.occupied": "#f2cdcd", - "theme.bar.buttons.workspaces.available": "#89dceb", - "theme.bar.buttons.workspaces.hover": "#f5c2e7", - "theme.bar.buttons.workspaces.background": "#242438", - "theme.bar.buttons.dashboard.icon": "#1e1e2e", - "theme.bar.buttons.dashboard.background": "#f9e2af", - "theme.osd.label": "#b4beff", - "theme.osd.icon": "#11111b", - "theme.osd.bar_overflow_color": "#f38ba7", - "theme.osd.bar_empty_color": "#313244", - "theme.osd.bar_color": "#b4beff", - "theme.osd.icon_container": "#b4beff", - "theme.osd.bar_container": "#11111b", - "theme.notification.close_button.label": "#11111b", - "theme.notification.close_button.background": "#f38ba7", - "theme.notification.labelicon": "#b4befe", - "theme.notification.text": "#cdd6f4", - "theme.notification.time": "#7f849b", - "theme.notification.border": "#313243", - "theme.notification.label": "#b4befe", - "theme.notification.actions.text": "#181825", - "theme.notification.actions.background": "#b4befd", - "theme.notification.background": "#181826", - "theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825", - "theme.bar.buttons.workspaces.numbered_active_underline_color": "#f5c2e7", - "theme.bar.menus.menu.media.card.color": "#1e1e2e", - "theme.bar.menus.check_radio_button.background": "#45475a", - "theme.bar.menus.check_radio_button.active": "#b4beff", - "theme.bar.buttons.style": "split", - "theme.bar.buttons.icon_background": "#242438", - "theme.bar.buttons.volume.icon_background": "#eba0ac", - "theme.bar.buttons.network.icon_background": "#caa6f7", - "theme.bar.buttons.bluetooth.icon_background": "#89dbeb", - "theme.bar.buttons.windowtitle.icon_background": "#f5c2e7", - "theme.bar.buttons.media.icon_background": "#b4befe", - "theme.bar.buttons.notifications.icon_background": "#b4befe", - "theme.bar.buttons.battery.icon_background": "#f9e2af", - "theme.bar.buttons.clock.icon_background": "#f5c2e7", - "theme.bar.menus.menu.notifications.scrollbar.color": "#b4befe", - "theme.bar.menus.menu.notifications.pager.button": "#b4befe", - "theme.bar.menus.menu.notifications.pager.label": "#9399b2", - "theme.bar.menus.menu.notifications.pager.background": "#11111b", - "theme.bar.buttons.modules.ram.icon_background": "#f9e2af", - "theme.bar.buttons.modules.ram.icon": "#181825", - "theme.bar.buttons.modules.cpu.icon": "#181825", - "theme.bar.buttons.modules.cpu.icon_background": "#f38ba8", - "theme.bar.buttons.modules.storage.icon": "#181825", - "theme.bar.buttons.modules.storage.icon_background": "#f5c2e7", - "theme.bar.buttons.modules.netstat.icon": "#181825", - "theme.bar.buttons.modules.netstat.icon_background": "#a6e3a1", - "theme.bar.buttons.modules.kbLayout.icon_background": "#89dceb", - "theme.bar.buttons.modules.kbLayout.icon": "#181825", - "theme.bar.buttons.modules.updates.icon_background": "#cba6f7", - "theme.bar.buttons.modules.updates.icon": "#181825", - "theme.bar.buttons.modules.weather.icon_background": "#b4befe", - "theme.bar.buttons.modules.weather.text": "#b4befe", - "theme.bar.buttons.modules.weather.icon": "#242438", - "theme.bar.buttons.modules.power.icon_background": "#f38ba8", - "theme.bar.buttons.modules.power.icon": "#181825", - "theme.bar.menus.menu.power.background.color": "#11111b", - "theme.bar.menus.menu.power.border.color": "#313244", - "theme.bar.menus.menu.power.buttons.shutdown.background": "#1e1e2e", - "theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#f38ba7", - "theme.bar.menus.menu.power.buttons.shutdown.text": "#f38ba8", - "theme.bar.menus.menu.power.buttons.shutdown.icon": "#181824", - "theme.bar.buttons.modules.netstat.background": "#242438", - "theme.bar.buttons.modules.cpu.background": "#242438", - "theme.bar.buttons.modules.cpu.text": "#f38ba8", - "theme.bar.buttons.modules.storage.text": "#f5c2e7", - "theme.bar.menus.popover.border": "#181824", - "theme.bar.menus.menu.power.buttons.sleep.icon_background": "#89dceb", - "theme.bar.menus.menu.power.buttons.restart.text": "#fab387", - "theme.bar.buttons.modules.updates.background": "#242438", - "theme.bar.buttons.modules.netstat.text": "#a6e3a1", - "theme.bar.buttons.modules.storage.background": "#242438", - "theme.bar.menus.menu.power.buttons.logout.icon": "#181824", - "theme.bar.menus.menu.power.buttons.restart.icon_background": "#fab387", - "theme.bar.menus.menu.power.buttons.restart.icon": "#181824", - "theme.bar.menus.menu.power.buttons.sleep.text": "#89dceb", - "theme.bar.menus.menu.power.buttons.logout.background": "#1e1e2e", - "theme.bar.menus.menu.power.buttons.sleep.background": "#1e1e2e", - "theme.bar.buttons.modules.ram.text": "#f9e2af", - "theme.bar.menus.menu.power.buttons.logout.text": "#a6e3a1", - "theme.bar.buttons.modules.kbLayout.background": "#242438", - "theme.bar.buttons.modules.power.background": "#242438", - "theme.bar.buttons.modules.weather.background": "#242438", - "theme.bar.buttons.modules.ram.background": "#242438", - "theme.bar.menus.menu.power.buttons.logout.icon_background": "#a6e3a1", - "theme.bar.buttons.modules.updates.text": "#cba6f7", - "theme.bar.menus.menu.power.buttons.sleep.icon": "#181824", - "theme.bar.menus.menu.power.buttons.restart.background": "#1e1e2e", - "theme.bar.buttons.modules.kbLayout.text": "#89dceb", - "theme.bar.buttons.windowtitle.border": "#f5c2e7", - "theme.bar.buttons.modules.power.border": "#f38ba8", - "theme.bar.buttons.modules.weather.border": "#b4befe", - "theme.bar.buttons.modules.updates.border": "#cba6f7", - "theme.bar.buttons.modules.kbLayout.border": "#89dceb", - "theme.bar.buttons.modules.netstat.border": "#a6e3a1", - "theme.bar.buttons.modules.storage.border": "#f5c2e7", - "theme.bar.buttons.modules.cpu.border": "#f38ba8", - "theme.bar.buttons.modules.ram.border": "#f9e2af", - "theme.bar.buttons.notifications.border": "#b4befe", - "theme.bar.buttons.clock.border": "#f5c2e7", - "theme.bar.buttons.battery.border": "#f9e2af", - "theme.bar.buttons.systray.border": "#b4befe", - "theme.bar.buttons.systray.customIcon": "#cdd6f4", - "theme.bar.buttons.bluetooth.border": "#89dceb", - "theme.bar.buttons.network.border": "#cba6f7", - "theme.bar.buttons.volume.border": "#eba0ac", - "theme.bar.buttons.media.border": "#b4befe", - "theme.bar.buttons.workspaces.border": "#f5c2e7", - "theme.bar.buttons.dashboard.border": "#f9e2af", - "theme.bar.buttons.modules.submap.icon": "#181825", - "theme.bar.buttons.modules.submap.background": "#242438", - "theme.bar.buttons.modules.submap.icon_background": "#94e2d5", - "theme.bar.buttons.modules.submap.text": "#94e2d5", - "theme.bar.buttons.modules.submap.border": "#94e2d5", - "theme.bar.menus.menu.network.switch.enabled": "#cba6f7", - "theme.bar.menus.menu.network.switch.disabled": "#313245", - "theme.bar.menus.menu.network.switch.puck": "#454759" -} + "theme.bar.menus.background": "#11111b", + "theme.bar.background": "#11111b", + "theme.bar.buttons.media.icon": "#1e1e2e", + "theme.bar.buttons.media.text": "#b4befe", + "theme.bar.buttons.icon": "#242438", + "theme.bar.buttons.text": "#b4befe", + "theme.bar.buttons.hover": "#45475a", + "theme.bar.buttons.background": "#242438", + "theme.bar.menus.text": "#cdd6f4", + "theme.bar.menus.border.color": "#313244", + "theme.bar.buttons.media.background": "#242438", + "theme.bar.menus.menu.volume.text": "#cdd6f4", + "theme.bar.menus.menu.volume.card.color": "#1e1e2e", + "theme.bar.menus.menu.volume.label.color": "#eba0ac", + "theme.bar.menus.popover.text": "#b4befe", + "theme.bar.menus.popover.background": "#181824", + "theme.bar.menus.menu.dashboard.powermenu.shutdown": "#f38ba8", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#f38ba8", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#a6e3a1", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#11111a", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#cdd6f4", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#b4befe", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#313244", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#11111b", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#1e1e2e", + "theme.bar.menus.menu.notifications.switch.puck": "#454759", + "theme.bar.menus.menu.notifications.switch.disabled": "#313245", + "theme.bar.menus.menu.notifications.switch.enabled": "#b4befe", + "theme.bar.menus.menu.notifications.clear": "#f38ba8", + "theme.bar.menus.menu.notifications.switch_divider": "#45475a", + "theme.bar.menus.menu.notifications.border": "#313244", + "theme.bar.menus.menu.notifications.card": "#1e1e2e", + "theme.bar.menus.menu.notifications.background": "#11111b", + "theme.bar.menus.menu.notifications.no_notifications_label": "#313244", + "theme.bar.menus.menu.notifications.label": "#b4befe", + "theme.bar.menus.menu.dashboard.monitors.disk.label": "#f5c2e7", + "theme.bar.menus.menu.dashboard.monitors.disk.bar": "#f5c2e8", + "theme.bar.menus.menu.dashboard.monitors.disk.icon": "#f5c2e7", + "theme.bar.menus.menu.dashboard.monitors.gpu.label": "#a6e3a1", + "theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#a6e3a2", + "theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#a6e3a1", + "theme.bar.menus.menu.dashboard.monitors.ram.label": "#f9e2af", + "theme.bar.menus.menu.dashboard.monitors.ram.bar": "#f9e2ae", + "theme.bar.menus.menu.dashboard.monitors.ram.icon": "#f9e2af", + "theme.bar.menus.menu.dashboard.monitors.cpu.label": "#eba0ac", + "theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#eba0ad", + "theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#eba0ac", + "theme.bar.menus.menu.dashboard.monitors.bar_background": "#45475a", + "theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#b4befe", + "theme.bar.menus.menu.dashboard.directories.right.middle.color": "#cba6f7", + "theme.bar.menus.menu.dashboard.directories.right.top.color": "#94e2d5", + "theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#eba0ac", + "theme.bar.menus.menu.dashboard.directories.left.middle.color": "#f9e2af", + "theme.bar.menus.menu.dashboard.directories.left.top.color": "#f5c2e7", + "theme.bar.menus.menu.dashboard.controls.input.text": "#181824", + "theme.bar.menus.menu.dashboard.controls.input.background": "#f5c2e7", + "theme.bar.menus.menu.dashboard.controls.volume.text": "#181824", + "theme.bar.menus.menu.dashboard.controls.volume.background": "#eba0ac", + "theme.bar.menus.menu.dashboard.controls.notifications.text": "#181824", + "theme.bar.menus.menu.dashboard.controls.notifications.background": "#f9e2af", + "theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#181824", + "theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#89dceb", + "theme.bar.menus.menu.dashboard.controls.wifi.text": "#181824", + "theme.bar.menus.menu.dashboard.controls.wifi.background": "#cba6f7", + "theme.bar.menus.menu.dashboard.controls.disabled": "#585b70", + "theme.bar.menus.menu.dashboard.shortcuts.recording": "#a6e3a1", + "theme.bar.menus.menu.dashboard.shortcuts.text": "#181824", + "theme.bar.menus.menu.dashboard.shortcuts.background": "#b4befe", + "theme.bar.menus.menu.dashboard.powermenu.sleep": "#89dceb", + "theme.bar.menus.menu.dashboard.powermenu.logout": "#a6e3a1", + "theme.bar.menus.menu.dashboard.powermenu.restart": "#fab387", + "theme.bar.menus.menu.dashboard.profile.name": "#f5c2e7", + "theme.bar.menus.menu.dashboard.border.color": "#313244", + "theme.bar.menus.menu.dashboard.background.color": "#11111b", + "theme.bar.menus.menu.dashboard.card.color": "#1e1e2e", + "theme.bar.menus.menu.clock.weather.hourly.temperature": "#f5c2e7", + "theme.bar.menus.menu.clock.weather.hourly.icon": "#f5c2e7", + "theme.bar.menus.menu.clock.weather.hourly.time": "#f5c2e7", + "theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#89dceb", + "theme.bar.menus.menu.clock.weather.thermometer.cold": "#89b4fa", + "theme.bar.menus.menu.clock.weather.thermometer.moderate": "#b4befe", + "theme.bar.menus.menu.clock.weather.thermometer.hot": "#fab387", + "theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#f38ba8", + "theme.bar.menus.menu.clock.weather.stats": "#f5c2e7", + "theme.bar.menus.menu.clock.weather.status": "#94e2d5", + "theme.bar.menus.menu.clock.weather.temperature": "#cdd6f4", + "theme.bar.menus.menu.clock.weather.icon": "#f5c2e7", + "theme.bar.menus.menu.clock.calendar.contextdays": "#585b70", + "theme.bar.menus.menu.clock.calendar.days": "#cdd6f4", + "theme.bar.menus.menu.clock.calendar.currentday": "#f5c2e7", + "theme.bar.menus.menu.clock.calendar.paginator": "#f5c2e6", + "theme.bar.menus.menu.clock.calendar.weekdays": "#f5c2e7", + "theme.bar.menus.menu.clock.calendar.yearmonth": "#94e2d5", + "theme.bar.menus.menu.clock.time.timeperiod": "#94e2d5", + "theme.bar.menus.menu.clock.time.time": "#f5c2e7", + "theme.bar.menus.menu.clock.text": "#cdd6f4", + "theme.bar.menus.menu.clock.border.color": "#313244", + "theme.bar.menus.menu.clock.background.color": "#11111b", + "theme.bar.menus.menu.clock.card.color": "#1e1e2e", + "theme.bar.menus.menu.battery.slider.puck": "#6c7086", + "theme.bar.menus.menu.battery.slider.backgroundhover": "#45475a", + "theme.bar.menus.menu.battery.slider.background": "#585b71", + "theme.bar.menus.menu.battery.slider.primary": "#f9e2af", + "theme.bar.menus.menu.battery.icons.active": "#f9e2af", + "theme.bar.menus.menu.battery.icons.passive": "#9399b2", + "theme.bar.menus.menu.battery.listitems.active": "#f9e2af", + "theme.bar.menus.menu.battery.listitems.passive": "#cdd6f3", + "theme.bar.menus.menu.battery.text": "#cdd6f4", + "theme.bar.menus.menu.battery.label.color": "#f9e2af", + "theme.bar.menus.menu.battery.border.color": "#313244", + "theme.bar.menus.menu.battery.background.color": "#11111b", + "theme.bar.menus.menu.battery.card.color": "#1e1e2e", + "theme.bar.menus.menu.systray.dropdownmenu.divider": "#1e1e2e", + "theme.bar.menus.menu.systray.dropdownmenu.text": "#cdd6f4", + "theme.bar.menus.menu.systray.dropdownmenu.background": "#11111b", + "theme.bar.menus.menu.bluetooth.iconbutton.active": "#89dceb", + "theme.bar.menus.menu.bluetooth.iconbutton.passive": "#cdd6f4", + "theme.bar.menus.menu.bluetooth.icons.active": "#89dceb", + "theme.bar.menus.menu.bluetooth.icons.passive": "#9399b2", + "theme.bar.menus.menu.bluetooth.listitems.active": "#89dcea", + "theme.bar.menus.menu.bluetooth.listitems.passive": "#cdd6f4", + "theme.bar.menus.menu.bluetooth.switch.puck": "#454759", + "theme.bar.menus.menu.bluetooth.switch.disabled": "#313245", + "theme.bar.menus.menu.bluetooth.switch.enabled": "#89dceb", + "theme.bar.menus.menu.bluetooth.switch_divider": "#45475a", + "theme.bar.menus.menu.bluetooth.status": "#6c7086", + "theme.bar.menus.menu.bluetooth.text": "#cdd6f4", + "theme.bar.menus.menu.bluetooth.label.color": "#89dceb", + "theme.bar.menus.menu.bluetooth.border.color": "#313244", + "theme.bar.menus.menu.bluetooth.background.color": "#11111b", + "theme.bar.menus.menu.bluetooth.card.color": "#1e1e2e", + "theme.bar.menus.menu.network.iconbuttons.active": "#cba6f7", + "theme.bar.menus.menu.network.iconbuttons.passive": "#cdd6f4", + "theme.bar.menus.menu.network.icons.active": "#cba6f7", + "theme.bar.menus.menu.network.icons.passive": "#9399b2", + "theme.bar.menus.menu.network.listitems.active": "#cba6f6", + "theme.bar.menus.menu.network.listitems.passive": "#cdd6f4", + "theme.bar.menus.menu.network.status.color": "#6c7086", + "theme.bar.menus.menu.network.text": "#cdd6f4", + "theme.bar.menus.menu.network.label.color": "#cba6f7", + "theme.bar.menus.menu.network.border.color": "#313244", + "theme.bar.menus.menu.network.background.color": "#11111b", + "theme.bar.menus.menu.network.card.color": "#1e1e2e", + "theme.bar.menus.menu.volume.input_slider.puck": "#585b70", + "theme.bar.menus.menu.volume.input_slider.backgroundhover": "#45475a", + "theme.bar.menus.menu.volume.input_slider.background": "#585b71", + "theme.bar.menus.menu.volume.input_slider.primary": "#eba0ac", + "theme.bar.menus.menu.volume.audio_slider.puck": "#585b70", + "theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#45475a", + "theme.bar.menus.menu.volume.audio_slider.background": "#585b71", + "theme.bar.menus.menu.volume.audio_slider.primary": "#eba0ac", + "theme.bar.menus.menu.volume.icons.active": "#eba0ac", + "theme.bar.menus.menu.volume.icons.passive": "#9399b2", + "theme.bar.menus.menu.volume.iconbutton.active": "#eba0ac", + "theme.bar.menus.menu.volume.iconbutton.passive": "#cdd6f4", + "theme.bar.menus.menu.volume.listitems.active": "#eba0ab", + "theme.bar.menus.menu.volume.listitems.passive": "#cdd6f4", + "theme.bar.menus.menu.volume.border.color": "#313244", + "theme.bar.menus.menu.volume.background.color": "#11111b", + "theme.bar.menus.menu.media.slider.puck": "#6c7086", + "theme.bar.menus.menu.media.slider.backgroundhover": "#45475a", + "theme.bar.menus.menu.media.slider.background": "#585b71", + "theme.bar.menus.menu.media.slider.primary": "#f5c2e7", + "theme.bar.menus.menu.media.buttons.text": "#11111b", + "theme.bar.menus.menu.media.buttons.background": "#b4beff", + "theme.bar.menus.menu.media.buttons.enabled": "#94e2d4", + "theme.bar.menus.menu.media.buttons.inactive": "#585b70", + "theme.bar.menus.menu.media.border.color": "#313244", + "theme.bar.menus.menu.media.background.color": "#11111b", + "theme.bar.menus.menu.media.album": "#f5c2e8", + "theme.bar.menus.menu.media.artist": "#94e2d6", + "theme.bar.menus.menu.media.song": "#b4beff", + "theme.bar.menus.tooltip.text": "#cdd6f4", + "theme.bar.menus.tooltip.background": "#11111b", + "theme.bar.menus.dropdownmenu.divider": "#1e1e2e", + "theme.bar.menus.dropdownmenu.text": "#cdd6f4", + "theme.bar.menus.dropdownmenu.background": "#11111b", + "theme.bar.menus.slider.puck": "#6c7086", + "theme.bar.menus.slider.backgroundhover": "#45475a", + "theme.bar.menus.slider.background": "#585b71", + "theme.bar.menus.slider.primary": "#b4befe", + "theme.bar.menus.progressbar.background": "#45475a", + "theme.bar.menus.progressbar.foreground": "#b4befe", + "theme.bar.menus.iconbuttons.active": "#b4beff", + "theme.bar.menus.iconbuttons.passive": "#cdd6f3", + "theme.bar.menus.buttons.text": "#181824", + "theme.bar.menus.buttons.disabled": "#585b71", + "theme.bar.menus.buttons.active": "#f5c2e6", + "theme.bar.menus.buttons.default": "#b4befe", + "theme.bar.menus.switch.puck": "#454759", + "theme.bar.menus.switch.disabled": "#313245", + "theme.bar.menus.switch.enabled": "#b4befe", + "theme.bar.menus.icons.active": "#b4befe", + "theme.bar.menus.icons.passive": "#585b70", + "theme.bar.menus.listitems.active": "#b4befd", + "theme.bar.menus.listitems.passive": "#cdd6f4", + "theme.bar.menus.label": "#b4befe", + "theme.bar.menus.feinttext": "#313244", + "theme.bar.menus.dimtext": "#585b70", + "theme.bar.menus.cards": "#1e1e2e", + "theme.bar.buttons.notifications.total": "#b4befe", + "theme.bar.buttons.notifications.icon": "#1e1e2e", + "theme.bar.buttons.notifications.background": "#242438", + "theme.bar.buttons.clock.icon": "#232338", + "theme.bar.buttons.clock.text": "#f5c2e7", + "theme.bar.buttons.clock.background": "#242438", + "theme.bar.buttons.battery.icon": "#242438", + "theme.bar.buttons.battery.text": "#f9e2af", + "theme.bar.buttons.battery.background": "#242438", + "theme.bar.buttons.systray.background": "#242438", + "theme.bar.buttons.bluetooth.icon": "#1e1e2e", + "theme.bar.buttons.bluetooth.text": "#89dceb", + "theme.bar.buttons.bluetooth.background": "#242438", + "theme.bar.buttons.network.icon": "#242438", + "theme.bar.buttons.network.text": "#cba6f7", + "theme.bar.buttons.network.background": "#242438", + "theme.bar.buttons.volume.icon": "#242438", + "theme.bar.buttons.volume.text": "#eba0ac", + "theme.bar.buttons.volume.background": "#242438", + "theme.bar.buttons.windowtitle.icon": "#1e1e2e", + "theme.bar.buttons.windowtitle.text": "#f5c2e7", + "theme.bar.buttons.windowtitle.background": "#242438", + "theme.bar.buttons.workspaces.active": "#f5c2e7", + "theme.bar.buttons.workspaces.occupied": "#f2cdcd", + "theme.bar.buttons.workspaces.available": "#89dceb", + "theme.bar.buttons.workspaces.hover": "#f5c2e7", + "theme.bar.buttons.workspaces.background": "#242438", + "theme.bar.buttons.dashboard.icon": "#1e1e2e", + "theme.bar.buttons.dashboard.background": "#f9e2af", + "theme.osd.label": "#b4beff", + "theme.osd.icon": "#11111b", + "theme.osd.bar_overflow_color": "#f38ba7", + "theme.osd.bar_empty_color": "#313244", + "theme.osd.bar_color": "#b4beff", + "theme.osd.icon_container": "#b4beff", + "theme.osd.bar_container": "#11111b", + "theme.notification.close_button.label": "#11111b", + "theme.notification.close_button.background": "#f38ba7", + "theme.notification.labelicon": "#b4befe", + "theme.notification.text": "#cdd6f4", + "theme.notification.time": "#7f849b", + "theme.notification.border": "#313243", + "theme.notification.label": "#b4befe", + "theme.notification.actions.text": "#181825", + "theme.notification.actions.background": "#b4befd", + "theme.notification.background": "#181826", + "theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825", + "theme.bar.buttons.workspaces.numbered_active_underline_color": "#f5c2e7", + "theme.bar.menus.menu.media.card.color": "#1e1e2e", + "theme.bar.menus.check_radio_button.background": "#45475a", + "theme.bar.menus.check_radio_button.active": "#b4beff", + "theme.bar.buttons.style": "split", + "theme.bar.buttons.icon_background": "#b4befe", + "theme.bar.buttons.volume.icon_background": "#eba0ac", + "theme.bar.buttons.network.icon_background": "#caa6f7", + "theme.bar.buttons.bluetooth.icon_background": "#89dbeb", + "theme.bar.buttons.windowtitle.icon_background": "#f5c2e7", + "theme.bar.buttons.media.icon_background": "#b4befe", + "theme.bar.buttons.notifications.icon_background": "#b4befe", + "theme.bar.buttons.battery.icon_background": "#f9e2af", + "theme.bar.buttons.clock.icon_background": "#f5c2e7", + "theme.bar.menus.menu.notifications.scrollbar.color": "#b4befe", + "theme.bar.menus.menu.notifications.pager.button": "#b4befe", + "theme.bar.menus.menu.notifications.pager.label": "#9399b2", + "theme.bar.menus.menu.notifications.pager.background": "#11111b", + "theme.bar.buttons.modules.ram.icon_background": "#f9e2af", + "theme.bar.buttons.modules.ram.icon": "#181825", + "theme.bar.buttons.modules.cpu.icon": "#181825", + "theme.bar.buttons.modules.cpu.icon_background": "#f38ba8", + "theme.bar.buttons.modules.storage.icon": "#181825", + "theme.bar.buttons.modules.storage.icon_background": "#f5c2e7", + "theme.bar.buttons.modules.netstat.icon": "#181825", + "theme.bar.buttons.modules.netstat.icon_background": "#a6e3a1", + "theme.bar.buttons.modules.kbLayout.icon_background": "#89dceb", + "theme.bar.buttons.modules.kbLayout.icon": "#181825", + "theme.bar.buttons.modules.updates.icon_background": "#cba6f7", + "theme.bar.buttons.modules.updates.icon": "#181825", + "theme.bar.buttons.modules.weather.icon_background": "#b4befe", + "theme.bar.buttons.modules.weather.text": "#b4befe", + "theme.bar.buttons.modules.weather.icon": "#242438", + "theme.bar.buttons.modules.power.icon_background": "#f38ba8", + "theme.bar.buttons.modules.power.icon": "#181825", + "theme.bar.menus.menu.power.background.color": "#11111b", + "theme.bar.menus.menu.power.border.color": "#313244", + "theme.bar.menus.menu.power.buttons.shutdown.background": "#1e1e2e", + "theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#f38ba7", + "theme.bar.menus.menu.power.buttons.shutdown.text": "#f38ba8", + "theme.bar.menus.menu.power.buttons.shutdown.icon": "#181824", + "theme.bar.buttons.modules.netstat.background": "#242438", + "theme.bar.buttons.modules.cpu.background": "#242438", + "theme.bar.buttons.modules.cpu.text": "#f38ba8", + "theme.bar.buttons.modules.storage.text": "#f5c2e7", + "theme.bar.menus.popover.border": "#181824", + "theme.bar.menus.menu.power.buttons.sleep.icon_background": "#89dceb", + "theme.bar.menus.menu.power.buttons.restart.text": "#fab387", + "theme.bar.buttons.modules.updates.background": "#242438", + "theme.bar.buttons.modules.netstat.text": "#a6e3a1", + "theme.bar.buttons.modules.storage.background": "#242438", + "theme.bar.menus.menu.power.buttons.logout.icon": "#181824", + "theme.bar.menus.menu.power.buttons.restart.icon_background": "#fab387", + "theme.bar.menus.menu.power.buttons.restart.icon": "#181824", + "theme.bar.menus.menu.power.buttons.sleep.text": "#89dceb", + "theme.bar.menus.menu.power.buttons.logout.background": "#1e1e2e", + "theme.bar.menus.menu.power.buttons.sleep.background": "#1e1e2e", + "theme.bar.buttons.modules.ram.text": "#f9e2af", + "theme.bar.menus.menu.power.buttons.logout.text": "#a6e3a1", + "theme.bar.buttons.modules.kbLayout.background": "#242438", + "theme.bar.buttons.modules.power.background": "#242438", + "theme.bar.buttons.modules.weather.background": "#242438", + "theme.bar.buttons.modules.ram.background": "#242438", + "theme.bar.menus.menu.power.buttons.logout.icon_background": "#a6e3a1", + "theme.bar.buttons.modules.updates.text": "#cba6f7", + "theme.bar.menus.menu.power.buttons.sleep.icon": "#181824", + "theme.bar.menus.menu.power.buttons.restart.background": "#1e1e2e", + "theme.bar.buttons.modules.kbLayout.text": "#89dceb", + "theme.bar.buttons.windowtitle.border": "#f5c2e7", + "theme.bar.buttons.modules.power.border": "#f38ba8", + "theme.bar.buttons.modules.weather.border": "#b4befe", + "theme.bar.buttons.modules.updates.border": "#cba6f7", + "theme.bar.buttons.modules.kbLayout.border": "#89dceb", + "theme.bar.buttons.modules.netstat.border": "#a6e3a1", + "theme.bar.buttons.modules.storage.border": "#f5c2e7", + "theme.bar.buttons.modules.cpu.border": "#f38ba8", + "theme.bar.buttons.modules.ram.border": "#f9e2af", + "theme.bar.buttons.notifications.border": "#b4befe", + "theme.bar.buttons.clock.border": "#f5c2e7", + "theme.bar.buttons.battery.border": "#f9e2af", + "theme.bar.buttons.systray.border": "#b4befe", + "theme.bar.buttons.systray.customIcon": "#cdd6f4", + "theme.bar.buttons.bluetooth.border": "#89dceb", + "theme.bar.buttons.network.border": "#cba6f7", + "theme.bar.buttons.volume.border": "#eba0ac", + "theme.bar.buttons.media.border": "#b4befe", + "theme.bar.buttons.workspaces.border": "#f5c2e7", + "theme.bar.buttons.dashboard.border": "#f9e2af", + "theme.bar.buttons.modules.submap.icon": "#181825", + "theme.bar.buttons.modules.submap.background": "#242438", + "theme.bar.buttons.modules.submap.icon_background": "#94e2d5", + "theme.bar.buttons.modules.submap.text": "#94e2d5", + "theme.bar.buttons.modules.submap.border": "#94e2d5", + "theme.bar.menus.menu.network.switch.enabled": "#cba6f7", + "theme.bar.menus.menu.network.switch.disabled": "#313245", + "theme.bar.menus.menu.network.switch.puck": "#454759" +} \ No newline at end of file diff --git a/themes/cyberpunk_split.json b/themes/cyberpunk_split.json index 1b350d7..927c239 100644 --- a/themes/cyberpunk_split.json +++ b/themes/cyberpunk_split.json @@ -290,10 +290,10 @@ "theme.bar.buttons.workspaces.background": "#121212", "theme.bar.buttons.dashboard.icon": "#121212", "theme.bar.buttons.dashboard.background": "#f7d04b", - "theme.bar.buttons.icon": "#FFD700", + "theme.bar.buttons.icon": "#242438", "theme.bar.buttons.text": "#00FFFF", "theme.bar.buttons.hover": "#333333", - "theme.bar.buttons.icon_background": "#242438", + "theme.bar.buttons.icon_background": "#FFD700", "theme.bar.buttons.background": "#111111", "theme.bar.buttons.style": "split", "theme.bar.background": "#0A0A0A", diff --git a/themes/dracula_split.json b/themes/dracula_split.json index 96b474f..b7e36a3 100644 --- a/themes/dracula_split.json +++ b/themes/dracula_split.json @@ -309,10 +309,10 @@ "theme.bar.buttons.dashboard.icon": "#44475a", "theme.bar.buttons.dashboard.border": "#8be8fd", "theme.bar.buttons.dashboard.background": "#8be8fd", - "theme.bar.buttons.icon": "#bd93f9", + "theme.bar.buttons.icon": "#242438", "theme.bar.buttons.text": "#bd93f9", "theme.bar.buttons.hover": "#44475a", - "theme.bar.buttons.icon_background": "#242438", + "theme.bar.buttons.icon_background": "#bd93f9", "theme.bar.buttons.background": "#282936", "theme.bar.buttons.style": "split", "theme.bar.background": "#282a36", diff --git a/themes/everforest_split.json b/themes/everforest_split.json index 82e75ec..4018276 100644 --- a/themes/everforest_split.json +++ b/themes/everforest_split.json @@ -3,7 +3,7 @@ "theme.bar.background": "#2b3339", "theme.bar.buttons.media.icon": "#323d43", "theme.bar.buttons.media.text": "#a7c080", - "theme.bar.buttons.icon": "#a7c080", + "theme.bar.buttons.icon": "#242438", "theme.bar.buttons.text": "#a7c080", "theme.bar.buttons.hover": "#445055", "theme.bar.buttons.background": "#323d43", @@ -251,7 +251,7 @@ "theme.bar.menus.check_radio_button.background": "#000000", "theme.bar.menus.check_radio_button.active": "#ffffff", "theme.bar.buttons.style": "split", - "theme.bar.buttons.icon_background": "#242438", + "theme.bar.buttons.icon_background": "#a7c080", "theme.bar.buttons.volume.icon_background": "#dbbc7f", "theme.bar.buttons.network.icon_background": "#e69875", "theme.bar.buttons.bluetooth.icon_background": "#a7c080", diff --git a/themes/gruvbox_split.json b/themes/gruvbox_split.json index 05ab698..a25c25d 100644 --- a/themes/gruvbox_split.json +++ b/themes/gruvbox_split.json @@ -290,10 +290,10 @@ "theme.bar.buttons.workspaces.background": "#282828", "theme.bar.buttons.dashboard.icon": "#282828", "theme.bar.buttons.dashboard.background": "#fabc2f", - "theme.bar.buttons.icon": "#83a598", + "theme.bar.buttons.icon": "#242438", "theme.bar.buttons.text": "#83a598", "theme.bar.buttons.hover": "#504945", - "theme.bar.buttons.icon_background": "#242438", + "theme.bar.buttons.icon_background": "#83a598", "theme.bar.buttons.background": "#282828", "theme.bar.buttons.style": "split", "theme.bar.background": "#1d2021", diff --git a/themes/monochrome_split.json b/themes/monochrome_split.json index e1da524..94f9f50 100644 --- a/themes/monochrome_split.json +++ b/themes/monochrome_split.json @@ -3,7 +3,7 @@ "theme.bar.background": "#000000", "theme.bar.buttons.media.icon": "#090909", "theme.bar.buttons.media.text": "#FFFFFF", - "theme.bar.buttons.icon": "#FFFFFF", + "theme.bar.buttons.icon": "#242438", "theme.bar.buttons.text": "#FFFFFF", "theme.bar.buttons.hover": "#333333", "theme.bar.buttons.background": "#1A1A1A", @@ -251,7 +251,7 @@ "theme.bar.menus.check_radio_button.background": "#000000", "theme.bar.menus.check_radio_button.active": "#ffffff", "theme.bar.buttons.style": "split", - "theme.bar.buttons.icon_background": "#242438", + "theme.bar.buttons.icon_background": "#FFFFFF", "theme.bar.buttons.volume.icon_background": "#ffffff", "theme.bar.buttons.network.icon_background": "#ffffff", "theme.bar.buttons.bluetooth.icon_background": "#ffffff", diff --git a/themes/nord_split.json b/themes/nord_split.json index c84c7e7..e6f2932 100644 --- a/themes/nord_split.json +++ b/themes/nord_split.json @@ -3,7 +3,7 @@ "theme.bar.background": "#2e3440", "theme.bar.buttons.media.icon": "#3b4252", "theme.bar.buttons.media.text": "#88c0d0", - "theme.bar.buttons.icon": "#88c0d0", + "theme.bar.buttons.icon": "#242438", "theme.bar.buttons.text": "#88c0d0", "theme.bar.buttons.hover": "#434c53", "theme.bar.buttons.background": "#3b4252", @@ -251,7 +251,7 @@ "theme.bar.menus.check_radio_button.background": "#2e3440", "theme.bar.menus.check_radio_button.active": "#88c0d0", "theme.bar.buttons.style": "split", - "theme.bar.buttons.icon_background": "#242438", + "theme.bar.buttons.icon_background": "#88c0d0", "theme.bar.buttons.volume.icon_background": "#81a1c1", "theme.bar.buttons.network.icon_background": "#88c0d0", "theme.bar.buttons.bluetooth.icon_background": "#88c0d0", diff --git a/themes/one_dark_split.json b/themes/one_dark_split.json index 3daa0fd..5cf95e1 100644 --- a/themes/one_dark_split.json +++ b/themes/one_dark_split.json @@ -3,7 +3,7 @@ "theme.bar.background": "#282c34", "theme.bar.buttons.media.icon": "#21252b", "theme.bar.buttons.media.text": "#61afef", - "theme.bar.buttons.icon": "#61afef", + "theme.bar.buttons.icon": "#242438", "theme.bar.buttons.text": "#61afef", "theme.bar.buttons.hover": "#3e4451", "theme.bar.buttons.background": "#3e4451", @@ -251,7 +251,7 @@ "theme.bar.menus.check_radio_button.background": "#2e3440", "theme.bar.menus.check_radio_button.active": "#88c0d0", "theme.bar.buttons.style": "split", - "theme.bar.buttons.icon_background": "#242438", + "theme.bar.buttons.icon_background": "#61afef", "theme.bar.buttons.volume.icon_background": "#e06c75", "theme.bar.buttons.network.icon_background": "#c678dd", "theme.bar.buttons.bluetooth.icon_background": "#61afef", diff --git a/themes/rose_pine_moon_split.json b/themes/rose_pine_moon_split.json index 2ddc3a9..ecae5af 100644 --- a/themes/rose_pine_moon_split.json +++ b/themes/rose_pine_moon_split.json @@ -3,7 +3,7 @@ "theme.bar.background": "#232136", "theme.bar.buttons.media.icon": "#2a283e", "theme.bar.buttons.media.text": "#c4a7e7", - "theme.bar.buttons.icon": "#c4a7e7", + "theme.bar.buttons.icon": "#242438", "theme.bar.buttons.text": "#c4a7e7", "theme.bar.buttons.hover": "#393552", "theme.bar.buttons.background": "#2a283e", @@ -251,7 +251,7 @@ "theme.bar.menus.check_radio_button.background": "#393452", "theme.bar.menus.check_radio_button.active": "#c4a7e7", "theme.bar.buttons.style": "split", - "theme.bar.buttons.icon_background": "#242438", + "theme.bar.buttons.icon_background": "#c4a7e7", "theme.bar.buttons.volume.icon_background": "#eb6f92", "theme.bar.buttons.network.icon_background": "#c4a7e7", "theme.bar.buttons.bluetooth.icon_background": "#9ccfd8", diff --git a/themes/rose_pine_split.json b/themes/rose_pine_split.json index 0831a36..7c22894 100644 --- a/themes/rose_pine_split.json +++ b/themes/rose_pine_split.json @@ -3,7 +3,7 @@ "theme.bar.background": "#191724", "theme.bar.buttons.media.icon": "#21202e", "theme.bar.buttons.media.text": "#c4a7e7", - "theme.bar.buttons.icon": "#c4a7e7", + "theme.bar.buttons.icon": "#242438", "theme.bar.buttons.text": "#c4a7e7", "theme.bar.buttons.hover": "#26233a", "theme.bar.buttons.background": "#21202e", @@ -251,7 +251,7 @@ "theme.bar.menus.check_radio_button.background": "#393452", "theme.bar.menus.check_radio_button.active": "#c4a7e7", "theme.bar.buttons.style": "split", - "theme.bar.buttons.icon_background": "#242438", + "theme.bar.buttons.icon_background": "#c4a7e7", "theme.bar.buttons.volume.icon_background": "#eb6f92", "theme.bar.buttons.network.icon_background": "#c4a7e7", "theme.bar.buttons.bluetooth.icon_background": "#9ccfd8", diff --git a/themes/tokyo_night_split.json b/themes/tokyo_night_split.json index 7849fc3..6ad0426 100644 --- a/themes/tokyo_night_split.json +++ b/themes/tokyo_night_split.json @@ -3,7 +3,7 @@ "theme.bar.background": "#1a1b26", "theme.bar.buttons.media.icon": "#272a3d", "theme.bar.buttons.media.text": "#bb9af7", - "theme.bar.buttons.icon": "#bb9af7", + "theme.bar.buttons.icon": "#242438", "theme.bar.buttons.text": "#bb9af7", "theme.bar.buttons.hover": "#414868", "theme.bar.buttons.background": "#272a3d", @@ -251,7 +251,7 @@ "theme.bar.menus.check_radio_button.background": "#3b4261", "theme.bar.menus.check_radio_button.active": "#bb9af7", "theme.bar.buttons.style": "split", - "theme.bar.buttons.icon_background": "#242438", + "theme.bar.buttons.icon_background": "#bb9af7", "theme.bar.buttons.volume.icon_background": "#f7768e", "theme.bar.buttons.network.icon_background": "#bb9af7", "theme.bar.buttons.bluetooth.icon_background": "#7dcfff", diff --git a/widget/settings/pages/config/menus/volume.ts b/widget/settings/pages/config/menus/volume.ts index b71cdee..9316faa 100644 --- a/widget/settings/pages/config/menus/volume.ts +++ b/widget/settings/pages/config/menus/volume.ts @@ -16,6 +16,7 @@ export const VolumeMenuSettings = (): Scrollable => { Option({ opt: options.menus.volume.raiseMaximumVolume, title: 'Allow Raising Volume Above 100%', + subtitle: 'Allows the volume slider in the menu to go up to 150% volume', type: 'boolean', }), ],