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
This commit is contained in:
Jas Singh
2024-10-31 00:49:05 -07:00
committed by GitHub
parent 77d4512c82
commit c2e46f098e
25 changed files with 399 additions and 385 deletions

View File

@@ -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 {

View File

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

View File

@@ -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 {

View File

@@ -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 {

View File

@@ -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 {

View File

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

View File

@@ -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 {

View File

@@ -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 {

View File

@@ -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 {

View File

@@ -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,

View File

@@ -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",

View File

@@ -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",

View File

@@ -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",

View File

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

View File

@@ -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",

View File

@@ -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",

View File

@@ -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",

View File

@@ -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",

View File

@@ -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",

View File

@@ -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",

View File

@@ -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",

View File

@@ -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",

View File

@@ -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",

View File

@@ -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",

View File

@@ -16,6 +16,7 @@ export const VolumeMenuSettings = (): Scrollable<Child, Attribute> => {
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',
}),
],