From bc96dff4855bb069ac101ec36c59c31045b72306 Mon Sep 17 00:00:00 2001 From: Jas Singh Date: Fri, 8 Nov 2024 18:44:13 -0800 Subject: [PATCH] Added a setting to define the global color for borders. (#461) --- options.ts | 1 + scss/style/bar/audio.scss | 2 +- scss/style/bar/battery.scss | 2 +- scss/style/bar/bluetooth.scss | 3 +- scss/style/bar/clock.scss | 2 +- scss/style/bar/media.scss | 2 +- scss/style/bar/menu.scss | 3 +- scss/style/bar/network.scss | 2 +- scss/style/bar/notifications.scss | 3 +- scss/style/bar/systray.scss | 2 +- scss/style/bar/window_title.scss | 3 +- scss/style/bar/workspace.scss | 3 +- scss/style/customModules/style.scss | 2 +- themes/catppuccin_frappe.json | 3 +- themes/catppuccin_frappe_split.json | 3 +- themes/catppuccin_frappe_vivid.json | 3 +- themes/catppuccin_latte.json | 3 +- themes/catppuccin_latte_split.json | 3 +- themes/catppuccin_latte_vivid.json | 3 +- themes/catppuccin_macchiato.json | 3 +- themes/catppuccin_macchiato_split.json | 3 +- themes/catppuccin_macchiato_vivid.json | 3 +- themes/catppuccin_mocha.json | 1 + themes/catppuccin_mocha_split.json | 1 + themes/catppuccin_mocha_vivid.json | 1 + themes/cyberpunk.json | 3 +- themes/cyberpunk_split.json | 694 ++++++++++++----------- themes/cyberpunk_vivid.json | 3 +- themes/dracula.json | 3 +- themes/dracula_split.json | 3 +- themes/dracula_vivid.json | 3 +- themes/everforest.json | 3 +- themes/everforest_split.json | 3 +- themes/everforest_vivid.json | 3 +- themes/gruvbox.json | 3 +- themes/gruvbox_split.json | 3 +- themes/gruvbox_vivid.json | 3 +- themes/monochrome.json | 3 +- themes/monochrome_split.json | 3 +- themes/monochrome_vivid.json | 3 +- themes/nord.json | 3 +- themes/nord_split.json | 3 +- themes/nord_vivid.json | 3 +- themes/one_dark.json | 3 +- themes/one_dark_split.json | 3 +- themes/one_dark_vivid.json | 3 +- themes/rose_pine.json | 3 +- themes/rose_pine_moon.json | 3 +- themes/rose_pine_moon_split.json | 3 +- themes/rose_pine_moon_vivid.json | 3 +- themes/rose_pine_split.json | 3 +- themes/rose_pine_vivid.json | 3 +- themes/tokyo_night.json | 3 +- themes/tokyo_night_split.json | 3 +- themes/tokyo_night_vivid.json | 3 +- widget/settings/pages/theme/bar/index.ts | 2 +- 56 files changed, 446 insertions(+), 397 deletions(-) diff --git a/options.ts b/options.ts index 4db05e9..d466be9 100644 --- a/options.ts +++ b/options.ts @@ -168,6 +168,7 @@ const options = mkOptions(OPTIONS, { style: opt('default'), enableBorders: opt(false), borderSize: opt('0.1em'), + borderColor: opt(colors.lavender), monochrome: opt(false), spacing: opt('0.25em'), padding_x: opt('0.7rem'), diff --git a/scss/style/bar/audio.scss b/scss/style/bar/audio.scss index d69c0e7..a7259ee 100644 --- a/scss/style/bar/audio.scss +++ b/scss/style/bar/audio.scss @@ -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 ); } diff --git a/scss/style/bar/battery.scss b/scss/style/bar/battery.scss index 11f5802..50beb2f 100644 --- a/scss/style/bar/battery.scss +++ b/scss/style/bar/battery.scss @@ -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 ); } diff --git a/scss/style/bar/bluetooth.scss b/scss/style/bar/bluetooth.scss index 8aaf91c..9287221 100644 --- a/scss/style/bar/bluetooth.scss +++ b/scss/style/bar/bluetooth.scss @@ -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 ); } diff --git a/scss/style/bar/clock.scss b/scss/style/bar/clock.scss index 56d4d93..3851019 100644 --- a/scss/style/bar/clock.scss +++ b/scss/style/bar/clock.scss @@ -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 ); } diff --git a/scss/style/bar/media.scss b/scss/style/bar/media.scss index c0a4060..895b9de 100644 --- a/scss/style/bar/media.scss +++ b/scss/style/bar/media.scss @@ -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 ); } diff --git a/scss/style/bar/menu.scss b/scss/style/bar/menu.scss index eafa2d2..997e580 100644 --- a/scss/style/bar/menu.scss +++ b/scss/style/bar/menu.scss @@ -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 ); } diff --git a/scss/style/bar/network.scss b/scss/style/bar/network.scss index 60318e7..76c65e5 100644 --- a/scss/style/bar/network.scss +++ b/scss/style/bar/network.scss @@ -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 ); } diff --git a/scss/style/bar/notifications.scss b/scss/style/bar/notifications.scss index d368630..2c70cf5 100644 --- a/scss/style/bar/notifications.scss +++ b/scss/style/bar/notifications.scss @@ -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 ); } diff --git a/scss/style/bar/systray.scss b/scss/style/bar/systray.scss index 9f24cda..94681e9 100644 --- a/scss/style/bar/systray.scss +++ b/scss/style/bar/systray.scss @@ -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 ); } diff --git a/scss/style/bar/window_title.scss b/scss/style/bar/window_title.scss index 6dda03f..e52b33e 100644 --- a/scss/style/bar/window_title.scss +++ b/scss/style/bar/window_title.scss @@ -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 ); } diff --git a/scss/style/bar/workspace.scss b/scss/style/bar/workspace.scss index 967cc74..9cbc688 100644 --- a/scss/style/bar/workspace.scss +++ b/scss/style/bar/workspace.scss @@ -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 ); } diff --git a/scss/style/customModules/style.scss b/scss/style/customModules/style.scss index 02ff384..06b3784 100644 --- a/scss/style/customModules/style.scss +++ b/scss/style/customModules/style.scss @@ -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 ); diff --git a/themes/catppuccin_frappe.json b/themes/catppuccin_frappe.json index 558cf1e..7c63960 100644 --- a/themes/catppuccin_frappe.json +++ b/themes/catppuccin_frappe.json @@ -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" } \ No newline at end of file diff --git a/themes/catppuccin_frappe_split.json b/themes/catppuccin_frappe_split.json index 43c35b1..132d9cf 100644 --- a/themes/catppuccin_frappe_split.json +++ b/themes/catppuccin_frappe_split.json @@ -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" } \ No newline at end of file diff --git a/themes/catppuccin_frappe_vivid.json b/themes/catppuccin_frappe_vivid.json index 997acf5..3af6f8a 100644 --- a/themes/catppuccin_frappe_vivid.json +++ b/themes/catppuccin_frappe_vivid.json @@ -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" } \ No newline at end of file diff --git a/themes/catppuccin_latte.json b/themes/catppuccin_latte.json index 0439da2..35a302f 100644 --- a/themes/catppuccin_latte.json +++ b/themes/catppuccin_latte.json @@ -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" } \ No newline at end of file diff --git a/themes/catppuccin_latte_split.json b/themes/catppuccin_latte_split.json index e2c1e5b..bfd14dd 100644 --- a/themes/catppuccin_latte_split.json +++ b/themes/catppuccin_latte_split.json @@ -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" } \ No newline at end of file diff --git a/themes/catppuccin_latte_vivid.json b/themes/catppuccin_latte_vivid.json index 61838f6..eb36db9 100644 --- a/themes/catppuccin_latte_vivid.json +++ b/themes/catppuccin_latte_vivid.json @@ -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" } \ No newline at end of file diff --git a/themes/catppuccin_macchiato.json b/themes/catppuccin_macchiato.json index bc14e53..8b33d97 100644 --- a/themes/catppuccin_macchiato.json +++ b/themes/catppuccin_macchiato.json @@ -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" } \ No newline at end of file diff --git a/themes/catppuccin_macchiato_split.json b/themes/catppuccin_macchiato_split.json index 41bdb72..f36e3d0 100644 --- a/themes/catppuccin_macchiato_split.json +++ b/themes/catppuccin_macchiato_split.json @@ -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" } \ No newline at end of file diff --git a/themes/catppuccin_macchiato_vivid.json b/themes/catppuccin_macchiato_vivid.json index 23733b4..3154dfb 100644 --- a/themes/catppuccin_macchiato_vivid.json +++ b/themes/catppuccin_macchiato_vivid.json @@ -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" } \ No newline at end of file diff --git a/themes/catppuccin_mocha.json b/themes/catppuccin_mocha.json index 8210c8a..27ef979 100644 --- a/themes/catppuccin_mocha.json +++ b/themes/catppuccin_mocha.json @@ -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", diff --git a/themes/catppuccin_mocha_split.json b/themes/catppuccin_mocha_split.json index 21db8a0..8cfee50 100644 --- a/themes/catppuccin_mocha_split.json +++ b/themes/catppuccin_mocha_split.json @@ -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", diff --git a/themes/catppuccin_mocha_vivid.json b/themes/catppuccin_mocha_vivid.json index 5f5512e..e2a0507 100644 --- a/themes/catppuccin_mocha_vivid.json +++ b/themes/catppuccin_mocha_vivid.json @@ -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", diff --git a/themes/cyberpunk.json b/themes/cyberpunk.json index bf4b3da..84be9f4 100644 --- a/themes/cyberpunk.json +++ b/themes/cyberpunk.json @@ -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" } \ No newline at end of file diff --git a/themes/cyberpunk_split.json b/themes/cyberpunk_split.json index 49edb0a..70bbcc0 100644 --- a/themes/cyberpunk_split.json +++ b/themes/cyberpunk_split.json @@ -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" -} \ No newline at end of file + "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" +} + diff --git a/themes/cyberpunk_vivid.json b/themes/cyberpunk_vivid.json index f0dd31a..e1798f2 100644 --- a/themes/cyberpunk_vivid.json +++ b/themes/cyberpunk_vivid.json @@ -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" } \ No newline at end of file diff --git a/themes/dracula.json b/themes/dracula.json index fc6f51d..09eccc8 100644 --- a/themes/dracula.json +++ b/themes/dracula.json @@ -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" } \ No newline at end of file diff --git a/themes/dracula_split.json b/themes/dracula_split.json index b3f3470..52ea7a3 100644 --- a/themes/dracula_split.json +++ b/themes/dracula_split.json @@ -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" } \ No newline at end of file diff --git a/themes/dracula_vivid.json b/themes/dracula_vivid.json index f60d910..9e637c8 100644 --- a/themes/dracula_vivid.json +++ b/themes/dracula_vivid.json @@ -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" } \ No newline at end of file diff --git a/themes/everforest.json b/themes/everforest.json index c590f22..403b919 100644 --- a/themes/everforest.json +++ b/themes/everforest.json @@ -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" } \ No newline at end of file diff --git a/themes/everforest_split.json b/themes/everforest_split.json index 7051ed5..3611fe7 100644 --- a/themes/everforest_split.json +++ b/themes/everforest_split.json @@ -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" } \ No newline at end of file diff --git a/themes/everforest_vivid.json b/themes/everforest_vivid.json index 81b43d5..853c135 100644 --- a/themes/everforest_vivid.json +++ b/themes/everforest_vivid.json @@ -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" } \ No newline at end of file diff --git a/themes/gruvbox.json b/themes/gruvbox.json index 10cec8e..7d36bb0 100644 --- a/themes/gruvbox.json +++ b/themes/gruvbox.json @@ -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" } \ No newline at end of file diff --git a/themes/gruvbox_split.json b/themes/gruvbox_split.json index 961b537..44b9103 100644 --- a/themes/gruvbox_split.json +++ b/themes/gruvbox_split.json @@ -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" } \ No newline at end of file diff --git a/themes/gruvbox_vivid.json b/themes/gruvbox_vivid.json index 5de037b..21001f7 100644 --- a/themes/gruvbox_vivid.json +++ b/themes/gruvbox_vivid.json @@ -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" } \ No newline at end of file diff --git a/themes/monochrome.json b/themes/monochrome.json index 3cd4b87..c1abeb0 100644 --- a/themes/monochrome.json +++ b/themes/monochrome.json @@ -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" } \ No newline at end of file diff --git a/themes/monochrome_split.json b/themes/monochrome_split.json index bade74d..25d61d6 100644 --- a/themes/monochrome_split.json +++ b/themes/monochrome_split.json @@ -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" } \ No newline at end of file diff --git a/themes/monochrome_vivid.json b/themes/monochrome_vivid.json index 68eeaf3..25709e7 100644 --- a/themes/monochrome_vivid.json +++ b/themes/monochrome_vivid.json @@ -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" } \ No newline at end of file diff --git a/themes/nord.json b/themes/nord.json index eba1737..af90eca 100644 --- a/themes/nord.json +++ b/themes/nord.json @@ -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" } \ No newline at end of file diff --git a/themes/nord_split.json b/themes/nord_split.json index 69822a1..859ae73 100644 --- a/themes/nord_split.json +++ b/themes/nord_split.json @@ -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" } \ No newline at end of file diff --git a/themes/nord_vivid.json b/themes/nord_vivid.json index e7ca7ac..5a1ea5b 100644 --- a/themes/nord_vivid.json +++ b/themes/nord_vivid.json @@ -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" } \ No newline at end of file diff --git a/themes/one_dark.json b/themes/one_dark.json index e92928d..c0d355c 100644 --- a/themes/one_dark.json +++ b/themes/one_dark.json @@ -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" } \ No newline at end of file diff --git a/themes/one_dark_split.json b/themes/one_dark_split.json index 17b17c1..d8a9ad6 100644 --- a/themes/one_dark_split.json +++ b/themes/one_dark_split.json @@ -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" } \ No newline at end of file diff --git a/themes/one_dark_vivid.json b/themes/one_dark_vivid.json index bf300b4..739bdeb 100644 --- a/themes/one_dark_vivid.json +++ b/themes/one_dark_vivid.json @@ -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" } \ No newline at end of file diff --git a/themes/rose_pine.json b/themes/rose_pine.json index 770fedd..1a76379 100644 --- a/themes/rose_pine.json +++ b/themes/rose_pine.json @@ -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" } \ No newline at end of file diff --git a/themes/rose_pine_moon.json b/themes/rose_pine_moon.json index c68ea4f..3f90516 100644 --- a/themes/rose_pine_moon.json +++ b/themes/rose_pine_moon.json @@ -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" } \ No newline at end of file diff --git a/themes/rose_pine_moon_split.json b/themes/rose_pine_moon_split.json index ccb6cb0..2268395 100644 --- a/themes/rose_pine_moon_split.json +++ b/themes/rose_pine_moon_split.json @@ -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" } \ No newline at end of file diff --git a/themes/rose_pine_moon_vivid.json b/themes/rose_pine_moon_vivid.json index a3c8cd2..f84bf85 100644 --- a/themes/rose_pine_moon_vivid.json +++ b/themes/rose_pine_moon_vivid.json @@ -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" } \ No newline at end of file diff --git a/themes/rose_pine_split.json b/themes/rose_pine_split.json index 04a7048..d45aa01 100644 --- a/themes/rose_pine_split.json +++ b/themes/rose_pine_split.json @@ -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" } \ No newline at end of file diff --git a/themes/rose_pine_vivid.json b/themes/rose_pine_vivid.json index 172ee0d..14628c8 100644 --- a/themes/rose_pine_vivid.json +++ b/themes/rose_pine_vivid.json @@ -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" } \ No newline at end of file diff --git a/themes/tokyo_night.json b/themes/tokyo_night.json index be54ba3..9c2e4ce 100644 --- a/themes/tokyo_night.json +++ b/themes/tokyo_night.json @@ -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" } \ No newline at end of file diff --git a/themes/tokyo_night_split.json b/themes/tokyo_night_split.json index d960709..269985b 100644 --- a/themes/tokyo_night_split.json +++ b/themes/tokyo_night_split.json @@ -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" } \ No newline at end of file diff --git a/themes/tokyo_night_vivid.json b/themes/tokyo_night_vivid.json index 84cd543..9ca2364 100644 --- a/themes/tokyo_night_vivid.json +++ b/themes/tokyo_night_vivid.json @@ -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" } \ No newline at end of file diff --git a/widget/settings/pages/theme/bar/index.ts b/widget/settings/pages/theme/bar/index.ts index 59edc97..1be2020 100644 --- a/widget/settings/pages/theme/bar/index.ts +++ b/widget/settings/pages/theme/bar/index.ts @@ -69,7 +69,7 @@ export const BarTheme = (): Scrollable => { 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({