Added a setting to define the global color for borders. (#461)

This commit is contained in:
Jas Singh
2024-11-08 18:44:13 -08:00
committed by GitHub
parent 3cc3fa5d42
commit bc96dff485
56 changed files with 446 additions and 397 deletions

View File

@@ -168,6 +168,7 @@ const options = mkOptions(OPTIONS, {
style: opt<BarButtonStyles>('default'),
enableBorders: opt(false),
borderSize: opt('0.1em'),
borderColor: opt(colors.lavender),
monochrome: opt(false),
spacing: opt('0.25em'),
padding_x: opt('0.7rem'),

View File

@@ -54,7 +54,7 @@
.bar_item_box_visible.volume {
border: if(
$bar-buttons-volume-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-volume-border),
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-borderColor, $bar-buttons-volume-border),
0em
);
}

View File

@@ -57,7 +57,7 @@
.bar_item_box_visible.battery {
border: if(
$bar-buttons-battery-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-battery-border),
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-borderColor, $bar-buttons-battery-border),
0em
);
}

View File

@@ -65,7 +65,8 @@
.bar_item_box_visible.bluetooth {
border: if(
$bar-buttons-bluetooth-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-bluetooth-border),
$bar-buttons-borderSize solid
if($bar-buttons-monochrome, $bar-buttons-borderColor, $bar-buttons-bluetooth-border),
0em
);
}

View File

@@ -54,7 +54,7 @@
.bar_item_box_visible.clock {
border: if(
$bar-buttons-clock-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-clock-border),
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-borderColor, $bar-buttons-clock-border),
0em
);
}

View File

@@ -38,7 +38,7 @@
.bar_item_box_visible.media {
border: if(
$bar-buttons-media-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-media-border),
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-borderColor, $bar-buttons-media-border),
0em
);
}

View File

@@ -19,7 +19,8 @@
.bar_item_box_visible.dashboard {
border: if(
$bar-buttons-dashboard-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-dashboard-border),
$bar-buttons-borderSize solid
if($bar-buttons-monochrome, $bar-buttons-borderColor, $bar-buttons-dashboard-border),
0em
);
}

View File

@@ -53,7 +53,7 @@
.bar_item_box_visible.network {
border: if(
$bar-buttons-network-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-network-border),
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-borderColor, $bar-buttons-network-border),
0em
);
}

View File

@@ -64,7 +64,8 @@
.bar_item_box_visible.notifications {
border: if(
$bar-buttons-notifications-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-notifications-border),
$bar-buttons-borderSize solid
if($bar-buttons-monochrome, $bar-buttons-borderColor, $bar-buttons-notifications-border),
0em
);
}

View File

@@ -17,7 +17,7 @@
.bar_item_box_visible.systray {
border: if(
$bar-buttons-systray-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-systray-border),
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-borderColor, $bar-buttons-systray-border),
0em
);
}

View File

@@ -61,7 +61,8 @@
.bar_item_box_visible.windowtitle {
border: if(
$bar-buttons-windowtitle-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-windowtitle-border),
$bar-buttons-borderSize solid
if($bar-buttons-monochrome, $bar-buttons-borderColor, $bar-buttons-windowtitle-border),
0em
);
}

View File

@@ -86,7 +86,8 @@
.bar_item_box_visible.workspaces {
border: if(
$bar-buttons-workspaces-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-workspaces-border),
$bar-buttons-borderSize solid
if($bar-buttons-monochrome, $bar-buttons-borderColor, $bar-buttons-workspaces-border),
0em
);
}

View File

@@ -60,7 +60,7 @@
);
border: if(
$borderEnabled or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $borderColor),
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-borderColor, $borderColor),
0em
);

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#51576d",
"theme.bar.buttons.systray.customIcon": "#c6d0f5",
"theme.bar.border.color": "#babbf1",
"theme.bar.menus.menu.media.timestamp": "#c6d0f5"
"theme.bar.menus.menu.media.timestamp": "#c6d0f5",
"theme.bar.buttons.borderColor": "#babbf1"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#51576d",
"theme.bar.buttons.systray.customIcon": "#c6d0f5",
"theme.bar.border.color": "#babbf1",
"theme.bar.menus.menu.media.timestamp": "#c6d0f5"
"theme.bar.menus.menu.media.timestamp": "#c6d0f5",
"theme.bar.buttons.borderColor": "#babbf1"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.enabled": "#ca9ee6",
"theme.bar.buttons.systray.customIcon": "#c6d0f5",
"theme.bar.border.color": "#babbf1",
"theme.bar.menus.menu.media.timestamp": "#c6d0f5"
"theme.bar.menus.menu.media.timestamp": "#c6d0f5",
"theme.bar.buttons.borderColor": "#babbf1"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#bcc0cc",
"theme.bar.buttons.systray.customIcon": "#4c4f69",
"theme.bar.border.color": "#7287fd",
"theme.bar.menus.menu.media.timestamp": "#4c4f69"
"theme.bar.menus.menu.media.timestamp": "#4c4f69",
"theme.bar.buttons.borderColor": "#7287fd"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#bcc0cc",
"theme.bar.buttons.systray.customIcon": "#4c4f69",
"theme.bar.border.color": "#7287fd",
"theme.bar.menus.menu.media.timestamp": "#4c4f69"
"theme.bar.menus.menu.media.timestamp": "#4c4f69",
"theme.bar.buttons.borderColor": "#7287fd"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.enabled": "#8839ef",
"theme.bar.buttons.systray.customIcon": "#4c4f69",
"theme.bar.border.color": "#7287fd",
"theme.bar.menus.menu.media.timestamp": "#4c4f69"
"theme.bar.menus.menu.media.timestamp": "#4c4f69",
"theme.bar.buttons.borderColor": "#7287fd"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#494d64",
"theme.bar.buttons.systray.customIcon": "#cad3f5",
"theme.bar.border.color": "#b7bdf8",
"theme.bar.menus.menu.media.timestamp": "#cad3f5"
"theme.bar.menus.menu.media.timestamp": "#cad3f5",
"theme.bar.buttons.borderColor": "#b7bdf8"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#494d64",
"theme.bar.buttons.systray.customIcon": "#cad3f5",
"theme.bar.border.color": "#b7bdf8",
"theme.bar.menus.menu.media.timestamp": "#cad3f5"
"theme.bar.menus.menu.media.timestamp": "#cad3f5",
"theme.bar.buttons.borderColor": "#b7bdf8"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.enabled": "#c6a0f6",
"theme.bar.buttons.systray.customIcon": "#cad3f5",
"theme.bar.border.color": "#b7bdf8",
"theme.bar.menus.menu.media.timestamp": "#cad3f5"
"theme.bar.menus.menu.media.timestamp": "#cad3f5",
"theme.bar.buttons.borderColor": "#b7bdf8"
}

View File

@@ -316,6 +316,7 @@
"theme.bar.buttons.hover": "#45475a",
"theme.bar.buttons.icon_background": "#242438",
"theme.bar.buttons.background": "#242438",
"theme.bar.buttons.borderColor": "#b4befe",
"theme.bar.buttons.style": "default",
"theme.bar.background": "#11111b",
"theme.osd.label": "#b4beff",

View File

@@ -7,6 +7,7 @@
"theme.bar.buttons.text": "#b4befe",
"theme.bar.buttons.hover": "#45475a",
"theme.bar.buttons.background": "#242438",
"theme.bar.buttons.borderColor": "#b4befe",
"theme.bar.menus.text": "#cdd6f4",
"theme.bar.menus.border.color": "#313244",
"theme.bar.buttons.media.background": "#242438",

View File

@@ -324,6 +324,7 @@
"theme.bar.buttons.hover": "#45475a",
"theme.bar.buttons.icon_background": "#242438",
"theme.bar.buttons.background": "#242438",
"theme.bar.buttons.borderColor": "#b4befe",
"theme.bar.buttons.style": "default",
"theme.bar.background": "#11111b",
"theme.osd.label": "#b4beff",

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#333333",
"theme.bar.buttons.systray.customIcon": "#d1d1d1",
"theme.bar.border.color": "#f7d04b",
"theme.bar.menus.menu.media.timestamp": "#FFD700"
"theme.bar.menus.menu.media.timestamp": "#FFD700",
"theme.bar.buttons.borderColor": "#FFD700"
}

View File

@@ -1,347 +1,349 @@
{
"theme.bar.menus.menu.notifications.scrollbar.color": "#00ffff",
"theme.bar.menus.menu.notifications.pager.label": "#9399B2",
"theme.bar.menus.menu.notifications.pager.button": "#00ffff",
"theme.bar.menus.menu.notifications.pager.background": "#0A0A0A",
"theme.bar.menus.menu.notifications.switch.puck": "#333333",
"theme.bar.menus.menu.notifications.switch.disabled": "#2A2A2A",
"theme.bar.menus.menu.notifications.switch.enabled": "#FFD700",
"theme.bar.menus.menu.notifications.clear": "#FF4500",
"theme.bar.menus.menu.notifications.switch_divider": "#333333",
"theme.bar.menus.menu.notifications.border": "#2A2A2A",
"theme.bar.menus.menu.notifications.card": "#1A1A1A",
"theme.bar.menus.menu.notifications.background": "#0A0A0A",
"theme.bar.menus.menu.notifications.no_notifications_label": "#2A2A2A",
"theme.bar.menus.menu.notifications.label": "#FFD700",
"theme.bar.menus.menu.power.buttons.sleep.icon": "#0A0A0A",
"theme.bar.menus.menu.power.buttons.sleep.text": "#00FFFF",
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#00FFFF",
"theme.bar.menus.menu.power.buttons.sleep.background": "#1A1A1A",
"theme.bar.menus.menu.power.buttons.logout.icon": "#0A0A0A",
"theme.bar.menus.menu.power.buttons.logout.text": "#32CD32",
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#32CD32",
"theme.bar.menus.menu.power.buttons.logout.background": "#1A1A1A",
"theme.bar.menus.menu.power.buttons.restart.icon": "#0A0A0A",
"theme.bar.menus.menu.power.buttons.restart.text": "#FFD700",
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#FFD700",
"theme.bar.menus.menu.power.buttons.restart.background": "#1A1A1A",
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#0A0A0A",
"theme.bar.menus.menu.power.buttons.shutdown.text": "#FF4500",
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#ff4400",
"theme.bar.menus.menu.power.buttons.shutdown.background": "#1A1A1A",
"theme.bar.menus.menu.power.border.color": "#2A2A2A",
"theme.bar.menus.menu.power.background.color": "#0A0A0A",
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#FF69B4",
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#FF69B4",
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#FF69B4",
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#32CD32",
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#32CD32",
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#32CD32",
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#FFD700",
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#FFD700",
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#FFD700",
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#FF4500",
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#FF4500",
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#FF4500",
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#333333",
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#00FFFF",
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#FFD700",
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#32CD32",
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#FF4500",
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#FFD700",
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#FF69B4",
"theme.bar.menus.menu.dashboard.controls.input.text": "#0A0A0A",
"theme.bar.menus.menu.dashboard.controls.input.background": "#FF69B4",
"theme.bar.menus.menu.dashboard.controls.volume.text": "#0A0A0A",
"theme.bar.menus.menu.dashboard.controls.volume.background": "#FF4500",
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#0A0A0A",
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#FFD700",
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#0A0A0A",
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#00FFFF",
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#0A0A0A",
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#FF69B4",
"theme.bar.menus.menu.dashboard.controls.disabled": "#585858",
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#32CD32",
"theme.bar.menus.menu.dashboard.shortcuts.text": "#0A0A0A",
"theme.bar.menus.menu.dashboard.shortcuts.background": "#00FFFF",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#0A0A0A",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#FF4500",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#32CD32",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#FFFFFF",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#00FFFF",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#2A2A2A",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#0A0A0A",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#1A1A1A",
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#00FFFF",
"theme.bar.menus.menu.dashboard.powermenu.logout": "#32CD32",
"theme.bar.menus.menu.dashboard.powermenu.restart": "#FFD700",
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#FF4500",
"theme.bar.menus.menu.dashboard.profile.name": "#FF69B4",
"theme.bar.menus.menu.dashboard.border.color": "#2A2A2A",
"theme.bar.menus.menu.dashboard.background.color": "#0A0A0A",
"theme.bar.menus.menu.dashboard.card.color": "#1A1A1A",
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#FF69B4",
"theme.bar.menus.menu.clock.weather.hourly.icon": "#FF69B4",
"theme.bar.menus.menu.clock.weather.hourly.time": "#FF69B4",
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#00FFFF",
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#00BFFF",
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#00FFFF",
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#FFD700",
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#FFD700",
"theme.bar.menus.menu.clock.weather.stats": "#00FFFF",
"theme.bar.menus.menu.clock.weather.status": "#FF69B4",
"theme.bar.menus.menu.clock.weather.temperature": "#32CD32",
"theme.bar.menus.menu.clock.weather.icon": "#FFD700",
"theme.bar.menus.menu.clock.calendar.contextdays": "#585858",
"theme.bar.menus.menu.clock.calendar.days": "#FFD700",
"theme.bar.menus.menu.clock.calendar.currentday": "#00FFFF",
"theme.bar.menus.menu.clock.calendar.paginator": "#00FFFF",
"theme.bar.menus.menu.clock.calendar.weekdays": "#00FFFF",
"theme.bar.menus.menu.clock.calendar.yearmonth": "#FF69B4",
"theme.bar.menus.menu.clock.time.timeperiod": "#32CD32",
"theme.bar.menus.menu.clock.time.time": "#FFD700",
"theme.bar.menus.menu.clock.text": "#00FFFF",
"theme.bar.menus.menu.clock.border.color": "#2A2A2A",
"theme.bar.menus.menu.clock.background.color": "#0A0A0A",
"theme.bar.menus.menu.clock.card.color": "#1A1A1A",
"theme.bar.menus.menu.battery.slider.puck": "#333333",
"theme.bar.menus.menu.battery.slider.backgroundhover": "#45475A",
"theme.bar.menus.menu.battery.slider.background": "#2A2A2A",
"theme.bar.menus.menu.battery.slider.primary": "#FFD700",
"theme.bar.menus.menu.battery.icons.active": "#FFD700",
"theme.bar.menus.menu.battery.icons.passive": "#9399B2",
"theme.bar.menus.menu.battery.listitems.active": "#FFD700",
"theme.bar.menus.menu.battery.listitems.passive": "#00FFFF",
"theme.bar.menus.menu.battery.text": "#FFD700",
"theme.bar.menus.menu.battery.label.color": "#FFD700",
"theme.bar.menus.menu.battery.border.color": "#2A2A2A",
"theme.bar.menus.menu.battery.background.color": "#0A0A0A",
"theme.bar.menus.menu.battery.card.color": "#1A1A1A",
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#1A1A1A",
"theme.bar.menus.menu.systray.dropdownmenu.text": "#FFD700",
"theme.bar.menus.menu.systray.dropdownmenu.background": "#0A0A0A",
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#00FFFF",
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#FFD700",
"theme.bar.menus.menu.bluetooth.icons.active": "#00FFFF",
"theme.bar.menus.menu.bluetooth.icons.passive": "#9399B2",
"theme.bar.menus.menu.bluetooth.listitems.active": "#00FFFF",
"theme.bar.menus.menu.bluetooth.listitems.passive": "#FFD700",
"theme.bar.menus.menu.bluetooth.switch.puck": "#333333",
"theme.bar.menus.menu.bluetooth.switch.disabled": "#2A2A2A",
"theme.bar.menus.menu.bluetooth.switch.enabled": "#00FFFF",
"theme.bar.menus.menu.bluetooth.switch_divider": "#333333",
"theme.bar.menus.menu.bluetooth.status": "#FF69B4",
"theme.bar.menus.menu.bluetooth.text": "#FFD700",
"theme.bar.menus.menu.bluetooth.label.color": "#00FFFF",
"theme.bar.menus.menu.bluetooth.border.color": "#2A2A2A",
"theme.bar.menus.menu.bluetooth.background.color": "#0A0A0A",
"theme.bar.menus.menu.bluetooth.card.color": "#1A1A1A",
"theme.bar.menus.menu.network.iconbuttons.active": "#FF69B4",
"theme.bar.menus.menu.network.iconbuttons.passive": "#FFD700",
"theme.bar.menus.menu.network.icons.active": "#FF69B4",
"theme.bar.menus.menu.network.icons.passive": "#9399B2",
"theme.bar.menus.menu.network.listitems.active": "#FF69B4",
"theme.bar.menus.menu.network.listitems.passive": "#FFD700",
"theme.bar.menus.menu.network.status.color": "#FF69B4",
"theme.bar.menus.menu.network.text": "#FFD700",
"theme.bar.menus.menu.network.label.color": "#FF69B4",
"theme.bar.menus.menu.network.border.color": "#2A2A2A",
"theme.bar.menus.menu.network.background.color": "#0A0A0A",
"theme.bar.menus.menu.network.card.color": "#1A1A1A",
"theme.bar.menus.menu.volume.input_slider.puck": "#333333",
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#45475A",
"theme.bar.menus.menu.volume.input_slider.background": "#2A2A2A",
"theme.bar.menus.menu.volume.input_slider.primary": "#FF69B4",
"theme.bar.menus.menu.volume.audio_slider.puck": "#333333",
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#45475A",
"theme.bar.menus.menu.volume.audio_slider.background": "#2A2A2A",
"theme.bar.menus.menu.volume.audio_slider.primary": "#FF69B4",
"theme.bar.menus.menu.volume.icons.active": "#FF69B4",
"theme.bar.menus.menu.volume.icons.passive": "#9399B2",
"theme.bar.menus.menu.volume.iconbutton.active": "#FF69B4",
"theme.bar.menus.menu.volume.iconbutton.passive": "#FFD700",
"theme.bar.menus.menu.volume.listitems.active": "#FF69B4",
"theme.bar.menus.menu.volume.listitems.passive": "#FFD700",
"theme.bar.menus.menu.volume.text": "#FFFFFF",
"theme.bar.menus.menu.volume.label.color": "#FF69B4",
"theme.bar.menus.menu.volume.border.color": "#2A2A2A",
"theme.bar.menus.menu.volume.background.color": "#0A0A0A",
"theme.bar.menus.menu.volume.card.color": "#1A1A1A",
"theme.bar.menus.menu.media.slider.puck": "#333333",
"theme.bar.menus.menu.media.slider.backgroundhover": "#45475A",
"theme.bar.menus.menu.media.slider.background": "#2A2A2A",
"theme.bar.menus.menu.media.slider.primary": "#FFD700",
"theme.bar.menus.menu.media.buttons.text": "#0A0A0A",
"theme.bar.menus.menu.media.buttons.background": "#FF69B4",
"theme.bar.menus.menu.media.buttons.enabled": "#00FFFF",
"theme.bar.menus.menu.media.buttons.inactive": "#333333",
"theme.bar.menus.menu.media.border.color": "#2A2A2A",
"theme.bar.menus.menu.media.card.color": "#1A1A1A",
"theme.bar.menus.menu.media.background.color": "#0A0A0A",
"theme.bar.menus.menu.media.album": "#FF69B4",
"theme.bar.menus.menu.media.artist": "#00FFFF",
"theme.bar.menus.menu.media.song": "#FFD700",
"theme.bar.menus.tooltip.text": "#FFD700",
"theme.bar.menus.tooltip.background": "#0A0A0A",
"theme.bar.menus.dropdownmenu.divider": "#1A1A1A",
"theme.bar.menus.dropdownmenu.text": "#FFD700",
"theme.bar.menus.dropdownmenu.background": "#0A0A0A",
"theme.bar.menus.slider.puck": "#333333",
"theme.bar.menus.slider.backgroundhover": "#45475A",
"theme.bar.menus.slider.background": "#2A2A2A",
"theme.bar.menus.slider.primary": "#00FFFF",
"theme.bar.menus.progressbar.background": "#45475A",
"theme.bar.menus.progressbar.foreground": "#00FFFF",
"theme.bar.menus.iconbuttons.active": "#00FFFF",
"theme.bar.menus.iconbuttons.passive": "#FFD700",
"theme.bar.menus.buttons.text": "#0A0A0A",
"theme.bar.menus.buttons.disabled": "#333333",
"theme.bar.menus.buttons.active": "#00FFFF",
"theme.bar.menus.buttons.default": "#FFD700",
"theme.bar.menus.check_radio_button.active": "#ffffff",
"theme.bar.menus.check_radio_button.background": "#000000",
"theme.bar.menus.switch.puck": "#333333",
"theme.bar.menus.switch.disabled": "#2A2A2A",
"theme.bar.menus.switch.enabled": "#00FFFF",
"theme.bar.menus.icons.active": "#00FFFF",
"theme.bar.menus.icons.passive": "#333333",
"theme.bar.menus.listitems.active": "#00FFFF",
"theme.bar.menus.listitems.passive": "#FFD700",
"theme.bar.menus.popover.border": "#0A0A0A",
"theme.bar.menus.popover.background": "#0D0D0D",
"theme.bar.menus.popover.text": "#00FFFF",
"theme.bar.menus.label": "#00FFFF",
"theme.bar.menus.feinttext": "#1a1a1a",
"theme.bar.menus.dimtext": "#2b2b2b",
"theme.bar.menus.text": "#FFFFFF",
"theme.bar.menus.border.color": "#2A2A2A",
"theme.bar.menus.cards": "#0a0a0a",
"theme.bar.menus.background": "#0A0A0A",
"theme.bar.buttons.modules.power.icon_background": "#FF4500",
"theme.bar.buttons.modules.power.icon": "#121212",
"theme.bar.buttons.modules.power.background": "#121212",
"theme.bar.buttons.modules.weather.icon_background": "#00ffff",
"theme.bar.buttons.modules.weather.icon": "#121212",
"theme.bar.buttons.modules.weather.text": "#00ffff",
"theme.bar.buttons.modules.weather.background": "#121212",
"theme.bar.buttons.modules.updates.icon_background": "#FFD700",
"theme.bar.buttons.modules.updates.icon": "#121212",
"theme.bar.buttons.modules.updates.text": "#FFD700",
"theme.bar.buttons.modules.updates.background": "#121212",
"theme.bar.buttons.modules.kbLayout.icon_background": "#00FFFF",
"theme.bar.buttons.modules.kbLayout.icon": "#121212",
"theme.bar.buttons.modules.kbLayout.text": "#00FFFF",
"theme.bar.buttons.modules.kbLayout.background": "#121212",
"theme.bar.buttons.modules.netstat.icon_background": "#32CD32",
"theme.bar.buttons.modules.netstat.icon": "#121212",
"theme.bar.buttons.modules.netstat.text": "#32CD32",
"theme.bar.buttons.modules.netstat.background": "#121212",
"theme.bar.buttons.modules.storage.icon_background": "#FF4500",
"theme.bar.buttons.modules.storage.icon": "#121212",
"theme.bar.buttons.modules.storage.text": "#FF4500",
"theme.bar.buttons.modules.storage.background": "#121212",
"theme.bar.buttons.modules.cpu.icon_background": "#FF4500",
"theme.bar.buttons.modules.cpu.icon": "#121212",
"theme.bar.buttons.modules.cpu.text": "#FF4500",
"theme.bar.buttons.modules.cpu.background": "#121212",
"theme.bar.buttons.modules.ram.icon_background": "#FFD700",
"theme.bar.buttons.modules.ram.icon": "#121212",
"theme.bar.buttons.modules.ram.text": "#FFD700",
"theme.bar.buttons.modules.ram.background": "#121212",
"theme.bar.buttons.notifications.total": "#f7d04b",
"theme.bar.buttons.notifications.icon_background": "#f7d04b",
"theme.bar.buttons.notifications.icon": "#121212",
"theme.bar.buttons.notifications.background": "#121212",
"theme.bar.buttons.clock.icon_background": "#5bafff",
"theme.bar.buttons.clock.icon": "#121212",
"theme.bar.buttons.clock.text": "#5bafff",
"theme.bar.buttons.clock.background": "#121212",
"theme.bar.buttons.battery.icon_background": "#f7d04b",
"theme.bar.buttons.battery.icon": "#121212",
"theme.bar.buttons.battery.text": "#f7d04b",
"theme.bar.buttons.battery.background": "#121212",
"theme.bar.buttons.systray.background": "#121212",
"theme.bar.buttons.bluetooth.icon_background": "#5bafff",
"theme.bar.buttons.bluetooth.icon": "#121212",
"theme.bar.buttons.bluetooth.text": "#5bafff",
"theme.bar.buttons.bluetooth.background": "#121212",
"theme.bar.buttons.network.icon_background": "#e23fe2",
"theme.bar.buttons.network.icon": "#121212",
"theme.bar.buttons.network.text": "#e23fe2",
"theme.bar.buttons.network.background": "#121212",
"theme.bar.buttons.volume.icon_background": "#ff3f3f",
"theme.bar.buttons.volume.icon": "#121212",
"theme.bar.buttons.volume.text": "#ff3f3f",
"theme.bar.buttons.volume.background": "#121212",
"theme.bar.buttons.media.icon_background": "#00ffff",
"theme.bar.buttons.media.icon": "#121212",
"theme.bar.buttons.media.text": "#00ffff",
"theme.bar.buttons.media.background": "#111111",
"theme.bar.buttons.windowtitle.icon_background": "#5bafff",
"theme.bar.buttons.windowtitle.icon": "#121212",
"theme.bar.buttons.windowtitle.text": "#5bafff",
"theme.bar.buttons.windowtitle.background": "#121212",
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#e23ee2",
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#e23fe2",
"theme.bar.buttons.workspaces.active": "#e23fe2",
"theme.bar.buttons.workspaces.occupied": "#ff3f3f",
"theme.bar.buttons.workspaces.available": "#5bafff",
"theme.bar.buttons.workspaces.hover": "#e23fe2",
"theme.bar.buttons.workspaces.background": "#121212",
"theme.bar.buttons.dashboard.icon": "#121212",
"theme.bar.buttons.dashboard.background": "#f7d04b",
"theme.bar.buttons.icon": "#242438",
"theme.bar.buttons.text": "#00FFFF",
"theme.bar.buttons.hover": "#333333",
"theme.bar.buttons.icon_background": "#FFD700",
"theme.bar.buttons.background": "#111111",
"theme.bar.buttons.style": "split",
"theme.bar.background": "#0A0A0A",
"theme.osd.label": "#5bafff",
"theme.osd.icon": "#0a0a0a",
"theme.osd.bar_overflow_color": "#ff3f3f",
"theme.osd.bar_empty_color": "#1a1a1a",
"theme.osd.bar_color": "#5bafff",
"theme.osd.icon_container": "#5bafff",
"theme.osd.bar_container": "#0a0a0a",
"theme.notification.close_button.label": "#0a0a0a",
"theme.notification.close_button.background": "#ff3f3f",
"theme.notification.labelicon": "#5bafff",
"theme.notification.text": "#d1d1d1",
"theme.notification.time": "#797979",
"theme.notification.border": "#1a1a1a",
"theme.notification.label": "#5bafff",
"theme.notification.actions.text": "#0a0a0a",
"theme.notification.actions.background": "#5bafff",
"theme.notification.background": "#0a0a0a",
"theme.bar.buttons.modules.power.border": "#FF4500",
"theme.bar.buttons.modules.weather.border": "#FFD700",
"theme.bar.buttons.modules.updates.border": "#FFD700",
"theme.bar.buttons.modules.kbLayout.border": "#00FFFF",
"theme.bar.buttons.modules.netstat.border": "#32CD32",
"theme.bar.buttons.modules.storage.border": "#FF4500",
"theme.bar.buttons.modules.cpu.border": "#FF4500",
"theme.bar.buttons.modules.ram.border": "#FFD700",
"theme.bar.buttons.notifications.border": "#f7d04b",
"theme.bar.buttons.clock.border": "#5bafff",
"theme.bar.buttons.battery.border": "#f7d04b",
"theme.bar.buttons.systray.border": "#303030",
"theme.bar.buttons.bluetooth.border": "#5bafff",
"theme.bar.buttons.network.border": "#e23fe2",
"theme.bar.buttons.volume.border": "#ff3f3f",
"theme.bar.buttons.media.border": "#FFD700",
"theme.bar.buttons.windowtitle.border": "#5bafff",
"theme.bar.buttons.workspaces.border": "#e23ee2",
"theme.bar.buttons.dashboard.border": "#f7d04b",
"theme.bar.buttons.modules.submap.background": "#121212",
"theme.bar.buttons.modules.submap.text": "#FF69B4",
"theme.bar.buttons.modules.submap.border": "#FF69B4",
"theme.bar.buttons.modules.submap.icon": "#121212",
"theme.bar.buttons.modules.submap.icon_background": "#FF69B4",
"theme.bar.menus.menu.network.switch.enabled": "#FF69B4",
"theme.bar.menus.menu.network.switch.disabled": "#2A2A2A",
"theme.bar.menus.menu.network.switch.puck": "#333333",
"theme.bar.buttons.systray.customIcon": "#d1d1d1",
"theme.bar.border.color": "#f7d04b",
"theme.bar.menus.menu.media.timestamp": "#FFD700"
}
"theme.bar.menus.menu.notifications.scrollbar.color": "#00ffff",
"theme.bar.menus.menu.notifications.pager.label": "#9399B2",
"theme.bar.menus.menu.notifications.pager.button": "#00ffff",
"theme.bar.menus.menu.notifications.pager.background": "#0A0A0A",
"theme.bar.menus.menu.notifications.switch.puck": "#333333",
"theme.bar.menus.menu.notifications.switch.disabled": "#2A2A2A",
"theme.bar.menus.menu.notifications.switch.enabled": "#FFD700",
"theme.bar.menus.menu.notifications.clear": "#FF4500",
"theme.bar.menus.menu.notifications.switch_divider": "#333333",
"theme.bar.menus.menu.notifications.border": "#2A2A2A",
"theme.bar.menus.menu.notifications.card": "#1A1A1A",
"theme.bar.menus.menu.notifications.background": "#0A0A0A",
"theme.bar.menus.menu.notifications.no_notifications_label": "#2A2A2A",
"theme.bar.menus.menu.notifications.label": "#FFD700",
"theme.bar.menus.menu.power.buttons.sleep.icon": "#0A0A0A",
"theme.bar.menus.menu.power.buttons.sleep.text": "#00FFFF",
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#00FFFF",
"theme.bar.menus.menu.power.buttons.sleep.background": "#1A1A1A",
"theme.bar.menus.menu.power.buttons.logout.icon": "#0A0A0A",
"theme.bar.menus.menu.power.buttons.logout.text": "#32CD32",
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#32CD32",
"theme.bar.menus.menu.power.buttons.logout.background": "#1A1A1A",
"theme.bar.menus.menu.power.buttons.restart.icon": "#0A0A0A",
"theme.bar.menus.menu.power.buttons.restart.text": "#FFD700",
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#FFD700",
"theme.bar.menus.menu.power.buttons.restart.background": "#1A1A1A",
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#0A0A0A",
"theme.bar.menus.menu.power.buttons.shutdown.text": "#FF4500",
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#ff4400",
"theme.bar.menus.menu.power.buttons.shutdown.background": "#1A1A1A",
"theme.bar.menus.menu.power.border.color": "#2A2A2A",
"theme.bar.menus.menu.power.background.color": "#0A0A0A",
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#FF69B4",
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#FF69B4",
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#FF69B4",
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#32CD32",
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#32CD32",
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#32CD32",
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#FFD700",
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#FFD700",
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#FFD700",
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#FF4500",
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#FF4500",
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#FF4500",
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#333333",
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#00FFFF",
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#FFD700",
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#32CD32",
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#FF4500",
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#FFD700",
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#FF69B4",
"theme.bar.menus.menu.dashboard.controls.input.text": "#0A0A0A",
"theme.bar.menus.menu.dashboard.controls.input.background": "#FF69B4",
"theme.bar.menus.menu.dashboard.controls.volume.text": "#0A0A0A",
"theme.bar.menus.menu.dashboard.controls.volume.background": "#FF4500",
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#0A0A0A",
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#FFD700",
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#0A0A0A",
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#00FFFF",
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#0A0A0A",
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#FF69B4",
"theme.bar.menus.menu.dashboard.controls.disabled": "#585858",
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#32CD32",
"theme.bar.menus.menu.dashboard.shortcuts.text": "#0A0A0A",
"theme.bar.menus.menu.dashboard.shortcuts.background": "#00FFFF",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#0A0A0A",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#FF4500",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#32CD32",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#FFFFFF",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#00FFFF",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#2A2A2A",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#0A0A0A",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#1A1A1A",
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#00FFFF",
"theme.bar.menus.menu.dashboard.powermenu.logout": "#32CD32",
"theme.bar.menus.menu.dashboard.powermenu.restart": "#FFD700",
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#FF4500",
"theme.bar.menus.menu.dashboard.profile.name": "#FF69B4",
"theme.bar.menus.menu.dashboard.border.color": "#2A2A2A",
"theme.bar.menus.menu.dashboard.background.color": "#0A0A0A",
"theme.bar.menus.menu.dashboard.card.color": "#1A1A1A",
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#FF69B4",
"theme.bar.menus.menu.clock.weather.hourly.icon": "#FF69B4",
"theme.bar.menus.menu.clock.weather.hourly.time": "#FF69B4",
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#00FFFF",
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#00BFFF",
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#00FFFF",
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#FFD700",
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#FFD700",
"theme.bar.menus.menu.clock.weather.stats": "#00FFFF",
"theme.bar.menus.menu.clock.weather.status": "#FF69B4",
"theme.bar.menus.menu.clock.weather.temperature": "#32CD32",
"theme.bar.menus.menu.clock.weather.icon": "#FFD700",
"theme.bar.menus.menu.clock.calendar.contextdays": "#585858",
"theme.bar.menus.menu.clock.calendar.days": "#FFD700",
"theme.bar.menus.menu.clock.calendar.currentday": "#00FFFF",
"theme.bar.menus.menu.clock.calendar.paginator": "#00FFFF",
"theme.bar.menus.menu.clock.calendar.weekdays": "#00FFFF",
"theme.bar.menus.menu.clock.calendar.yearmonth": "#FF69B4",
"theme.bar.menus.menu.clock.time.timeperiod": "#32CD32",
"theme.bar.menus.menu.clock.time.time": "#FFD700",
"theme.bar.menus.menu.clock.text": "#00FFFF",
"theme.bar.menus.menu.clock.border.color": "#2A2A2A",
"theme.bar.menus.menu.clock.background.color": "#0A0A0A",
"theme.bar.menus.menu.clock.card.color": "#1A1A1A",
"theme.bar.menus.menu.battery.slider.puck": "#333333",
"theme.bar.menus.menu.battery.slider.backgroundhover": "#45475A",
"theme.bar.menus.menu.battery.slider.background": "#2A2A2A",
"theme.bar.menus.menu.battery.slider.primary": "#FFD700",
"theme.bar.menus.menu.battery.icons.active": "#FFD700",
"theme.bar.menus.menu.battery.icons.passive": "#9399B2",
"theme.bar.menus.menu.battery.listitems.active": "#FFD700",
"theme.bar.menus.menu.battery.listitems.passive": "#00FFFF",
"theme.bar.menus.menu.battery.text": "#FFD700",
"theme.bar.menus.menu.battery.label.color": "#FFD700",
"theme.bar.menus.menu.battery.border.color": "#2A2A2A",
"theme.bar.menus.menu.battery.background.color": "#0A0A0A",
"theme.bar.menus.menu.battery.card.color": "#1A1A1A",
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#1A1A1A",
"theme.bar.menus.menu.systray.dropdownmenu.text": "#FFD700",
"theme.bar.menus.menu.systray.dropdownmenu.background": "#0A0A0A",
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#00FFFF",
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#FFD700",
"theme.bar.menus.menu.bluetooth.icons.active": "#00FFFF",
"theme.bar.menus.menu.bluetooth.icons.passive": "#9399B2",
"theme.bar.menus.menu.bluetooth.listitems.active": "#00FFFF",
"theme.bar.menus.menu.bluetooth.listitems.passive": "#FFD700",
"theme.bar.menus.menu.bluetooth.switch.puck": "#333333",
"theme.bar.menus.menu.bluetooth.switch.disabled": "#2A2A2A",
"theme.bar.menus.menu.bluetooth.switch.enabled": "#00FFFF",
"theme.bar.menus.menu.bluetooth.switch_divider": "#333333",
"theme.bar.menus.menu.bluetooth.status": "#FF69B4",
"theme.bar.menus.menu.bluetooth.text": "#FFD700",
"theme.bar.menus.menu.bluetooth.label.color": "#00FFFF",
"theme.bar.menus.menu.bluetooth.border.color": "#2A2A2A",
"theme.bar.menus.menu.bluetooth.background.color": "#0A0A0A",
"theme.bar.menus.menu.bluetooth.card.color": "#1A1A1A",
"theme.bar.menus.menu.network.iconbuttons.active": "#FF69B4",
"theme.bar.menus.menu.network.iconbuttons.passive": "#FFD700",
"theme.bar.menus.menu.network.icons.active": "#FF69B4",
"theme.bar.menus.menu.network.icons.passive": "#9399B2",
"theme.bar.menus.menu.network.listitems.active": "#FF69B4",
"theme.bar.menus.menu.network.listitems.passive": "#FFD700",
"theme.bar.menus.menu.network.status.color": "#FF69B4",
"theme.bar.menus.menu.network.text": "#FFD700",
"theme.bar.menus.menu.network.label.color": "#FF69B4",
"theme.bar.menus.menu.network.border.color": "#2A2A2A",
"theme.bar.menus.menu.network.background.color": "#0A0A0A",
"theme.bar.menus.menu.network.card.color": "#1A1A1A",
"theme.bar.menus.menu.volume.input_slider.puck": "#333333",
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#45475A",
"theme.bar.menus.menu.volume.input_slider.background": "#2A2A2A",
"theme.bar.menus.menu.volume.input_slider.primary": "#FF69B4",
"theme.bar.menus.menu.volume.audio_slider.puck": "#333333",
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#45475A",
"theme.bar.menus.menu.volume.audio_slider.background": "#2A2A2A",
"theme.bar.menus.menu.volume.audio_slider.primary": "#FF69B4",
"theme.bar.menus.menu.volume.icons.active": "#FF69B4",
"theme.bar.menus.menu.volume.icons.passive": "#9399B2",
"theme.bar.menus.menu.volume.iconbutton.active": "#FF69B4",
"theme.bar.menus.menu.volume.iconbutton.passive": "#FFD700",
"theme.bar.menus.menu.volume.listitems.active": "#FF69B4",
"theme.bar.menus.menu.volume.listitems.passive": "#FFD700",
"theme.bar.menus.menu.volume.text": "#FFFFFF",
"theme.bar.menus.menu.volume.label.color": "#FF69B4",
"theme.bar.menus.menu.volume.border.color": "#2A2A2A",
"theme.bar.menus.menu.volume.background.color": "#0A0A0A",
"theme.bar.menus.menu.volume.card.color": "#1A1A1A",
"theme.bar.menus.menu.media.slider.puck": "#333333",
"theme.bar.menus.menu.media.slider.backgroundhover": "#45475A",
"theme.bar.menus.menu.media.slider.background": "#2A2A2A",
"theme.bar.menus.menu.media.slider.primary": "#FFD700",
"theme.bar.menus.menu.media.buttons.text": "#0A0A0A",
"theme.bar.menus.menu.media.buttons.background": "#FF69B4",
"theme.bar.menus.menu.media.buttons.enabled": "#00FFFF",
"theme.bar.menus.menu.media.buttons.inactive": "#333333",
"theme.bar.menus.menu.media.border.color": "#2A2A2A",
"theme.bar.menus.menu.media.card.color": "#1A1A1A",
"theme.bar.menus.menu.media.background.color": "#0A0A0A",
"theme.bar.menus.menu.media.album": "#FF69B4",
"theme.bar.menus.menu.media.artist": "#00FFFF",
"theme.bar.menus.menu.media.song": "#FFD700",
"theme.bar.menus.tooltip.text": "#FFD700",
"theme.bar.menus.tooltip.background": "#0A0A0A",
"theme.bar.menus.dropdownmenu.divider": "#1A1A1A",
"theme.bar.menus.dropdownmenu.text": "#FFD700",
"theme.bar.menus.dropdownmenu.background": "#0A0A0A",
"theme.bar.menus.slider.puck": "#333333",
"theme.bar.menus.slider.backgroundhover": "#45475A",
"theme.bar.menus.slider.background": "#2A2A2A",
"theme.bar.menus.slider.primary": "#00FFFF",
"theme.bar.menus.progressbar.background": "#45475A",
"theme.bar.menus.progressbar.foreground": "#00FFFF",
"theme.bar.menus.iconbuttons.active": "#00FFFF",
"theme.bar.menus.iconbuttons.passive": "#FFD700",
"theme.bar.menus.buttons.text": "#0A0A0A",
"theme.bar.menus.buttons.disabled": "#333333",
"theme.bar.menus.buttons.active": "#00FFFF",
"theme.bar.menus.buttons.default": "#FFD700",
"theme.bar.menus.check_radio_button.active": "#ffffff",
"theme.bar.menus.check_radio_button.background": "#000000",
"theme.bar.menus.switch.puck": "#333333",
"theme.bar.menus.switch.disabled": "#2A2A2A",
"theme.bar.menus.switch.enabled": "#00FFFF",
"theme.bar.menus.icons.active": "#00FFFF",
"theme.bar.menus.icons.passive": "#333333",
"theme.bar.menus.listitems.active": "#00FFFF",
"theme.bar.menus.listitems.passive": "#FFD700",
"theme.bar.menus.popover.border": "#0A0A0A",
"theme.bar.menus.popover.background": "#0D0D0D",
"theme.bar.menus.popover.text": "#00FFFF",
"theme.bar.menus.label": "#00FFFF",
"theme.bar.menus.feinttext": "#1a1a1a",
"theme.bar.menus.dimtext": "#2b2b2b",
"theme.bar.menus.text": "#FFFFFF",
"theme.bar.menus.border.color": "#2A2A2A",
"theme.bar.menus.cards": "#0a0a0a",
"theme.bar.menus.background": "#0A0A0A",
"theme.bar.buttons.modules.power.icon_background": "#FF4500",
"theme.bar.buttons.modules.power.icon": "#121212",
"theme.bar.buttons.modules.power.background": "#121212",
"theme.bar.buttons.modules.weather.icon_background": "#00ffff",
"theme.bar.buttons.modules.weather.icon": "#121212",
"theme.bar.buttons.modules.weather.text": "#00ffff",
"theme.bar.buttons.modules.weather.background": "#121212",
"theme.bar.buttons.modules.updates.icon_background": "#FFD700",
"theme.bar.buttons.modules.updates.icon": "#121212",
"theme.bar.buttons.modules.updates.text": "#FFD700",
"theme.bar.buttons.modules.updates.background": "#121212",
"theme.bar.buttons.modules.kbLayout.icon_background": "#00FFFF",
"theme.bar.buttons.modules.kbLayout.icon": "#121212",
"theme.bar.buttons.modules.kbLayout.text": "#00FFFF",
"theme.bar.buttons.modules.kbLayout.background": "#121212",
"theme.bar.buttons.modules.netstat.icon_background": "#32CD32",
"theme.bar.buttons.modules.netstat.icon": "#121212",
"theme.bar.buttons.modules.netstat.text": "#32CD32",
"theme.bar.buttons.modules.netstat.background": "#121212",
"theme.bar.buttons.modules.storage.icon_background": "#FF4500",
"theme.bar.buttons.modules.storage.icon": "#121212",
"theme.bar.buttons.modules.storage.text": "#FF4500",
"theme.bar.buttons.modules.storage.background": "#121212",
"theme.bar.buttons.modules.cpu.icon_background": "#FF4500",
"theme.bar.buttons.modules.cpu.icon": "#121212",
"theme.bar.buttons.modules.cpu.text": "#FF4500",
"theme.bar.buttons.modules.cpu.background": "#121212",
"theme.bar.buttons.modules.ram.icon_background": "#FFD700",
"theme.bar.buttons.modules.ram.icon": "#121212",
"theme.bar.buttons.modules.ram.text": "#FFD700",
"theme.bar.buttons.modules.ram.background": "#121212",
"theme.bar.buttons.notifications.total": "#f7d04b",
"theme.bar.buttons.notifications.icon_background": "#f7d04b",
"theme.bar.buttons.notifications.icon": "#121212",
"theme.bar.buttons.notifications.background": "#121212",
"theme.bar.buttons.clock.icon_background": "#5bafff",
"theme.bar.buttons.clock.icon": "#121212",
"theme.bar.buttons.clock.text": "#5bafff",
"theme.bar.buttons.clock.background": "#121212",
"theme.bar.buttons.battery.icon_background": "#f7d04b",
"theme.bar.buttons.battery.icon": "#121212",
"theme.bar.buttons.battery.text": "#f7d04b",
"theme.bar.buttons.battery.background": "#121212",
"theme.bar.buttons.systray.background": "#121212",
"theme.bar.buttons.bluetooth.icon_background": "#5bafff",
"theme.bar.buttons.bluetooth.icon": "#121212",
"theme.bar.buttons.bluetooth.text": "#5bafff",
"theme.bar.buttons.bluetooth.background": "#121212",
"theme.bar.buttons.network.icon_background": "#e23fe2",
"theme.bar.buttons.network.icon": "#121212",
"theme.bar.buttons.network.text": "#e23fe2",
"theme.bar.buttons.network.background": "#121212",
"theme.bar.buttons.volume.icon_background": "#ff3f3f",
"theme.bar.buttons.volume.icon": "#121212",
"theme.bar.buttons.volume.text": "#ff3f3f",
"theme.bar.buttons.volume.background": "#121212",
"theme.bar.buttons.media.icon_background": "#00ffff",
"theme.bar.buttons.media.icon": "#121212",
"theme.bar.buttons.media.text": "#00ffff",
"theme.bar.buttons.media.background": "#111111",
"theme.bar.buttons.windowtitle.icon_background": "#5bafff",
"theme.bar.buttons.windowtitle.icon": "#121212",
"theme.bar.buttons.windowtitle.text": "#5bafff",
"theme.bar.buttons.windowtitle.background": "#121212",
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#e23ee2",
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#e23fe2",
"theme.bar.buttons.workspaces.active": "#e23fe2",
"theme.bar.buttons.workspaces.occupied": "#ff3f3f",
"theme.bar.buttons.workspaces.available": "#5bafff",
"theme.bar.buttons.workspaces.hover": "#e23fe2",
"theme.bar.buttons.workspaces.background": "#121212",
"theme.bar.buttons.dashboard.icon": "#121212",
"theme.bar.buttons.dashboard.background": "#f7d04b",
"theme.bar.buttons.icon": "#242438",
"theme.bar.buttons.text": "#00FFFF",
"theme.bar.buttons.hover": "#333333",
"theme.bar.buttons.icon_background": "#FFD700",
"theme.bar.buttons.background": "#111111",
"theme.bar.buttons.style": "split",
"theme.bar.background": "#0A0A0A",
"theme.osd.label": "#5bafff",
"theme.osd.icon": "#0a0a0a",
"theme.osd.bar_overflow_color": "#ff3f3f",
"theme.osd.bar_empty_color": "#1a1a1a",
"theme.osd.bar_color": "#5bafff",
"theme.osd.icon_container": "#5bafff",
"theme.osd.bar_container": "#0a0a0a",
"theme.notification.close_button.label": "#0a0a0a",
"theme.notification.close_button.background": "#ff3f3f",
"theme.notification.labelicon": "#5bafff",
"theme.notification.text": "#d1d1d1",
"theme.notification.time": "#797979",
"theme.notification.border": "#1a1a1a",
"theme.notification.label": "#5bafff",
"theme.notification.actions.text": "#0a0a0a",
"theme.notification.actions.background": "#5bafff",
"theme.notification.background": "#0a0a0a",
"theme.bar.buttons.modules.power.border": "#FF4500",
"theme.bar.buttons.modules.weather.border": "#FFD700",
"theme.bar.buttons.modules.updates.border": "#FFD700",
"theme.bar.buttons.modules.kbLayout.border": "#00FFFF",
"theme.bar.buttons.modules.netstat.border": "#32CD32",
"theme.bar.buttons.modules.storage.border": "#FF4500",
"theme.bar.buttons.modules.cpu.border": "#FF4500",
"theme.bar.buttons.modules.ram.border": "#FFD700",
"theme.bar.buttons.notifications.border": "#f7d04b",
"theme.bar.buttons.clock.border": "#5bafff",
"theme.bar.buttons.battery.border": "#f7d04b",
"theme.bar.buttons.systray.border": "#303030",
"theme.bar.buttons.bluetooth.border": "#5bafff",
"theme.bar.buttons.network.border": "#e23fe2",
"theme.bar.buttons.volume.border": "#ff3f3f",
"theme.bar.buttons.media.border": "#FFD700",
"theme.bar.buttons.windowtitle.border": "#5bafff",
"theme.bar.buttons.workspaces.border": "#e23ee2",
"theme.bar.buttons.dashboard.border": "#f7d04b",
"theme.bar.buttons.modules.submap.background": "#121212",
"theme.bar.buttons.modules.submap.text": "#FF69B4",
"theme.bar.buttons.modules.submap.border": "#FF69B4",
"theme.bar.buttons.modules.submap.icon": "#121212",
"theme.bar.buttons.modules.submap.icon_background": "#FF69B4",
"theme.bar.menus.menu.network.switch.enabled": "#FF69B4",
"theme.bar.menus.menu.network.switch.disabled": "#2A2A2A",
"theme.bar.menus.menu.network.switch.puck": "#333333",
"theme.bar.buttons.systray.customIcon": "#d1d1d1",
"theme.bar.border.color": "#f7d04b",
"theme.bar.menus.menu.media.timestamp": "#FFD700",
"theme.bar.buttons.borderColor": "#f7d04b"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.enabled": "#FF69B4",
"theme.bar.buttons.systray.customIcon": "#d1d1d1",
"theme.bar.border.color": "#f7d04b",
"theme.bar.menus.menu.media.timestamp": "#FFD700"
"theme.bar.menus.menu.media.timestamp": "#FFD700",
"theme.bar.buttons.borderColor": "#FFD700"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#44475a",
"theme.bar.buttons.systray.customIcon": "#f8f8f2",
"theme.bar.border.color": "#bd93f9",
"theme.bar.menus.menu.media.timestamp": "#f8f8f2"
"theme.bar.menus.menu.media.timestamp": "#f8f8f2",
"theme.bar.buttons.borderColor": "#bd93f9"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#44475a",
"theme.bar.buttons.systray.customIcon": "#f8f8f2",
"theme.bar.border.color": "#bd93f9",
"theme.bar.menus.menu.media.timestamp": "#f8f8f2"
"theme.bar.menus.menu.media.timestamp": "#f8f8f2",
"theme.bar.buttons.borderColor": "#bd93f9"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.enabled": "#bd93f9",
"theme.bar.buttons.systray.customIcon": "#f8f8f2",
"theme.bar.border.color": "#bd93f9",
"theme.bar.menus.menu.media.timestamp": "#f8f8f2"
"theme.bar.menus.menu.media.timestamp": "#f8f8f2",
"theme.bar.buttons.borderColor": "#bd93f9"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#454b53",
"theme.bar.buttons.systray.customIcon": "#d8caac",
"theme.bar.border.color": "#83c092",
"theme.bar.menus.menu.media.timestamp": "#d3c6aa"
"theme.bar.menus.menu.media.timestamp": "#d3c6aa",
"theme.bar.buttons.borderColor": "#a7c080"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#454b53",
"theme.bar.buttons.systray.customIcon": "#d8caac",
"theme.bar.border.color": "#83c092",
"theme.bar.menus.menu.media.timestamp": "#d3c6aa"
"theme.bar.menus.menu.media.timestamp": "#d3c6aa",
"theme.bar.buttons.borderColor": "#a7c080"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.enabled": "#e69875",
"theme.bar.buttons.systray.customIcon": "#d8caac",
"theme.bar.border.color": "#83c092",
"theme.bar.menus.menu.media.timestamp": "#d3c6aa"
"theme.bar.menus.menu.media.timestamp": "#d3c6aa",
"theme.bar.buttons.borderColor": "#a7c080"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#504945",
"theme.bar.buttons.systray.customIcon": "#ebdbb2",
"theme.bar.border.color": "#83a598",
"theme.bar.menus.menu.media.timestamp": "#ebdbb2"
"theme.bar.menus.menu.media.timestamp": "#ebdbb2",
"theme.bar.buttons.borderColor": "#83a598"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#504945",
"theme.bar.buttons.systray.customIcon": "#ebdbb2",
"theme.bar.border.color": "#83a598",
"theme.bar.menus.menu.media.timestamp": "#ebdbb2"
"theme.bar.menus.menu.media.timestamp": "#ebdbb2",
"theme.bar.buttons.borderColor": "#83a598"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.enabled": "#b16286",
"theme.bar.buttons.systray.customIcon": "#ebdbb2",
"theme.bar.border.color": "#83a598",
"theme.bar.menus.menu.media.timestamp": "#ebdbb2"
"theme.bar.menus.menu.media.timestamp": "#ebdbb2",
"theme.bar.buttons.borderColor": "#83a598"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#333333",
"theme.bar.buttons.systray.customIcon": "#FFFFFF",
"theme.bar.border.color": "#FFFFFF",
"theme.bar.menus.menu.media.timestamp": "#FFFFFF"
"theme.bar.menus.menu.media.timestamp": "#FFFFFF",
"theme.bar.buttons.borderColor": "#FFFFFF"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#333333",
"theme.bar.buttons.systray.customIcon": "#FFFFFF",
"theme.bar.border.color": "#FFFFFF",
"theme.bar.menus.menu.media.timestamp": "#FFFFFF"
"theme.bar.menus.menu.media.timestamp": "#FFFFFF",
"theme.bar.buttons.borderColor": "#FFFFFF"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.enabled": "#FFFFFF",
"theme.bar.buttons.systray.customIcon": "#FFFFFF",
"theme.bar.border.color": "#FFFFFF",
"theme.bar.menus.menu.media.timestamp": "#FFFFFF"
"theme.bar.menus.menu.media.timestamp": "#FFFFFF",
"theme.bar.buttons.borderColor": "#FFFFFF"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#434c53",
"theme.bar.buttons.systray.customIcon": "#d8dee9",
"theme.bar.border.color": "#88c0d0",
"theme.bar.menus.menu.media.timestamp": "#d8dee9"
"theme.bar.menus.menu.media.timestamp": "#d8dee9",
"theme.bar.buttons.borderColor": "#88c0d0"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#434c53",
"theme.bar.buttons.systray.customIcon": "#d8dee9",
"theme.bar.border.color": "#88c0d0",
"theme.bar.menus.menu.media.timestamp": "#d8dee9"
"theme.bar.menus.menu.media.timestamp": "#d8dee9",
"theme.bar.buttons.borderColor": "#88c0d0"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.enabled": "#88c0d0",
"theme.bar.buttons.systray.customIcon": "#d8dee9",
"theme.bar.border.color": "#88c0d0",
"theme.bar.menus.menu.media.timestamp": "#d8dee9"
"theme.bar.menus.menu.media.timestamp": "#d8dee9",
"theme.bar.buttons.borderColor": "#88c0d0"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#4b5263",
"theme.bar.buttons.systray.customIcon": "#abb2bf",
"theme.bar.border.color": "#61afef",
"theme.bar.menus.menu.media.timestamp": "#abb2bf"
"theme.bar.menus.menu.media.timestamp": "#abb2bf",
"theme.bar.buttons.borderColor": "#61afef"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#4b5263",
"theme.bar.buttons.systray.customIcon": "#abb2bf",
"theme.bar.border.color": "#61afef",
"theme.bar.menus.menu.media.timestamp": "#abb2bf"
"theme.bar.menus.menu.media.timestamp": "#abb2bf",
"theme.bar.buttons.borderColor": "#61afef"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.enabled": "#c678dd",
"theme.bar.buttons.systray.customIcon": "#abb2bf",
"theme.bar.border.color": "#61afef",
"theme.bar.menus.menu.media.timestamp": "#abb2bf"
"theme.bar.menus.menu.media.timestamp": "#abb2bf",
"theme.bar.buttons.borderColor": "#61afef"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#26233a",
"theme.bar.buttons.systray.customIcon": "#e0def4",
"theme.bar.border.color": "#c4a7e7",
"theme.bar.menus.menu.media.timestamp": "#e0def4"
"theme.bar.menus.menu.media.timestamp": "#e0def4",
"theme.bar.buttons.borderColor": "#c4a7e7"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#393552",
"theme.bar.buttons.systray.customIcon": "#e0def4",
"theme.bar.border.color": "#c4a7e7",
"theme.bar.menus.menu.media.timestamp": "#e0def4"
"theme.bar.menus.menu.media.timestamp": "#e0def4",
"theme.bar.buttons.borderColor": "#c4a7e7"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#393552",
"theme.bar.buttons.systray.customIcon": "#e0def4",
"theme.bar.border.color": "#c4a7e7",
"theme.bar.menus.menu.media.timestamp": "#e0def4"
"theme.bar.menus.menu.media.timestamp": "#e0def4",
"theme.bar.buttons.borderColor": "#c4a7e7"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.enabled": "#c4a7e7",
"theme.bar.buttons.systray.customIcon": "#e0def4",
"theme.bar.border.color": "#c4a7e7",
"theme.bar.menus.menu.media.timestamp": "#e0def4"
"theme.bar.menus.menu.media.timestamp": "#e0def4",
"theme.bar.buttons.borderColor": "#c4a7e7"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#26233a",
"theme.bar.buttons.systray.customIcon": "#e0def4",
"theme.bar.border.color": "#c4a7e7",
"theme.bar.menus.menu.media.timestamp": "#e0def4"
"theme.bar.menus.menu.media.timestamp": "#e0def4",
"theme.bar.buttons.borderColor": "#c4a7e7"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.enabled": "#c4a7e7",
"theme.bar.buttons.systray.customIcon": "#e0def4",
"theme.bar.border.color": "#c4a7e7",
"theme.bar.menus.menu.media.timestamp": "#e0def4"
"theme.bar.menus.menu.media.timestamp": "#e0def4",
"theme.bar.buttons.borderColor": "#c4a7e7"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#565f89",
"theme.bar.buttons.systray.customIcon": "#c0caf5",
"theme.bar.border.color": "#bb9af7",
"theme.bar.menus.menu.media.timestamp": "#c0caf5"
"theme.bar.menus.menu.media.timestamp": "#c0caf5",
"theme.bar.buttons.borderColor": "#bb9af7"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.puck": "#565f89",
"theme.bar.buttons.systray.customIcon": "#c0caf5",
"theme.bar.border.color": "#bb9af7",
"theme.bar.menus.menu.media.timestamp": "#c0caf5"
"theme.bar.menus.menu.media.timestamp": "#c0caf5",
"theme.bar.buttons.borderColor": "#bb9af7"
}

View File

@@ -343,5 +343,6 @@
"theme.bar.menus.menu.network.switch.enabled": "#bb9af7",
"theme.bar.buttons.systray.customIcon": "#c0caf5",
"theme.bar.border.color": "#bb9af7",
"theme.bar.menus.menu.media.timestamp": "#c0caf5"
"theme.bar.menus.menu.media.timestamp": "#c0caf5",
"theme.bar.buttons.borderColor": "#bb9af7"
}

View File

@@ -69,7 +69,7 @@ export const BarTheme = (): Scrollable<Child, Attribute> => {
disabledBinding: options.theme.matugen,
}),
Option({ opt: options.theme.bar.buttons.background, title: 'Button Background', type: 'color' }),
Option({ opt: options.theme.bar.buttons.hover, title: 'Button Hover', type: 'color' }),
Option({ opt: options.theme.bar.buttons.borderColor, title: 'Button Border', type: 'color' }),
Option({ opt: options.theme.bar.buttons.text, title: 'Button Text', type: 'color' }),
Option({ opt: options.theme.bar.buttons.icon, title: 'Button Icon', type: 'color' }),
Option({