diff --git a/nix/module.nix b/nix/module.nix
index ca12dfa..1f1eaf5 100644
--- a/nix/module.nix
+++ b/nix/module.nix
@@ -466,6 +466,8 @@ in
theme.bar.buttons.modules.kbLayout.enableBorder = mkBoolOption false;
theme.bar.buttons.modules.kbLayout.spacing = mkStrOption "0.45em";
theme.bar.buttons.modules.netstat.enableBorder = mkBoolOption false;
+ theme.bar.buttons.modules.microphone.enableBorder = mkBoolOption false,
+ theme.bar.buttons.modules.microphone.spacing = mkStrOption "0.45em",
theme.bar.buttons.modules.netstat.spacing = mkStrOption "0.45em";
theme.bar.buttons.modules.power.enableBorder = mkBoolOption false;
theme.bar.buttons.modules.power.spacing = mkStrOption "0.45em";
diff --git a/src/components/bar/exports.ts b/src/components/bar/exports.ts
index fc4f9b5..dbc3648 100644
--- a/src/components/bar/exports.ts
+++ b/src/components/bar/exports.ts
@@ -11,6 +11,7 @@ import { Clock } from '../../components/bar/modules/clock/index';
import { SysTray } from '../../components/bar/modules/systray/index';
// Custom Modules
+import { Microphone } from '../../components/bar/modules/microphone/index';
import { Ram } from '../../components/bar/modules/ram/index';
import { Cpu } from '../../components/bar/modules/cpu/index';
import { CpuTemp } from '../../components/bar/modules/cputemp/index';
@@ -39,6 +40,7 @@ export {
SysTray,
// Custom Modules
+ Microphone,
Ram,
Cpu,
CpuTemp,
diff --git a/src/components/bar/index.tsx b/src/components/bar/index.tsx
index 5246f98..115fd43 100644
--- a/src/components/bar/index.tsx
+++ b/src/components/bar/index.tsx
@@ -12,6 +12,7 @@ import {
SysTray,
// Custom Modules
+ Microphone,
Ram,
Cpu,
CpuTemp,
@@ -51,6 +52,7 @@ const widget = {
bluetooth: (): JSX.Element => WidgetContainer(Bluetooth()),
clock: (): JSX.Element => WidgetContainer(Clock()),
systray: (): JSX.Element => WidgetContainer(SysTray()),
+ microphone: (): JSX.Element => WidgetContainer(Microphone()),
ram: (): JSX.Element => WidgetContainer(Ram()),
cpu: (): JSX.Element => WidgetContainer(Cpu()),
cputemp: (): JSX.Element => WidgetContainer(CpuTemp()),
diff --git a/src/components/bar/modules/microphone/index.tsx b/src/components/bar/modules/microphone/index.tsx
new file mode 100644
index 0000000..6a3a8e8
--- /dev/null
+++ b/src/components/bar/modules/microphone/index.tsx
@@ -0,0 +1,76 @@
+import options from 'src/options';
+import { Module } from '../../shared/Module';
+import { bind, Variable } from 'astal';
+import { BarBoxChild } from 'src/lib/types/bar';
+import { Astal } from 'astal/gtk3';
+import { inputHandler } from '../../utils/helpers';
+import AstalWp from 'gi://AstalWp?version=0.1';
+
+const wireplumber = AstalWp.get_default() as AstalWp.Wp;
+const audioService = wireplumber.audio;
+
+const { label, mutedIcon, unmutedIcon, leftClick, rightClick, middleClick, scrollUp, scrollDown } =
+ options.bar.customModules.microphone;
+
+export const Microphone = (): BarBoxChild => {
+ const iconBinding = Variable.derive(
+ [
+ bind(mutedIcon),
+ bind(unmutedIcon),
+ bind(audioService.defaultMicrophone, 'volume'),
+ bind(audioService.defaultMicrophone, 'mute'),
+ ],
+ (iconMuted, iconUnmuted, volume, isMuted) => {
+ if (isMuted || volume === 0) {
+ return iconMuted;
+ }
+
+ return iconUnmuted;
+ },
+ );
+
+ const tooltipBinding = Variable.derive(
+ [
+ bind(mutedIcon),
+ bind(unmutedIcon),
+ bind(audioService.defaultMicrophone, 'description'),
+ bind(audioService.defaultMicrophone, 'volume'),
+ bind(audioService.defaultMicrophone, 'mute'),
+ ],
+ (iconMuted, iconUnmuted, description, volume, isMuted) => {
+ const icon = isMuted || !volume ? iconMuted : iconUnmuted;
+
+ return `${icon} ${description}`;
+ },
+ );
+ const microphoneModule = Module({
+ textIcon: iconBinding(),
+ label: bind(audioService.defaultMicrophone, 'volume').as((vol) => `${Math.round(vol * 100)}%`),
+ tooltipText: tooltipBinding(),
+ boxClass: 'mic',
+ showLabelBinding: bind(label),
+ props: {
+ setup: (self: Astal.Button) => {
+ inputHandler(self, {
+ onPrimaryClick: {
+ cmd: leftClick,
+ },
+ onSecondaryClick: {
+ cmd: rightClick,
+ },
+ onMiddleClick: {
+ cmd: middleClick,
+ },
+ onScrollUp: {
+ cmd: scrollUp,
+ },
+ onScrollDown: {
+ cmd: scrollDown,
+ },
+ });
+ },
+ },
+ });
+
+ return microphoneModule;
+};
diff --git a/src/components/bar/settings/config.tsx b/src/components/bar/settings/config.tsx
index 925dfa0..363255a 100644
--- a/src/components/bar/settings/config.tsx
+++ b/src/components/bar/settings/config.tsx
@@ -16,6 +16,23 @@ export const CustomModuleSettings = (): JSX.Element => {
+ {/* Microphone Section */}
+
+
+
+
+
+
+
+
+
+
+
+
{/* RAM Section */}
diff --git a/src/components/bar/settings/theme.tsx b/src/components/bar/settings/theme.tsx
index 727c42a..41b4557 100644
--- a/src/components/bar/settings/theme.tsx
+++ b/src/components/bar/settings/theme.tsx
@@ -14,6 +14,23 @@ export const CustomModuleTheme = (): JSX.Element => {
vexpand={false}
>
+ {/* Microphone Module Section */}
+
+
+
+
+
+
+
{/* RAM Module Section */}
diff --git a/src/options.ts b/src/options.ts
index 4dd386e..96f70af 100644
--- a/src/options.ts
+++ b/src/options.ts
@@ -310,6 +310,15 @@ const options = mkOptions(CONFIG, {
spacing: opt('0.5em'),
},
modules: {
+ microphone: {
+ enableBorder: opt(false),
+ border: opt(colors.green),
+ background: opt(colors.base2),
+ text: opt(colors.green),
+ icon: opt(colors.green),
+ icon_background: opt(colors.base2),
+ spacing: opt('0.45em'),
+ },
ram: {
enableBorder: opt(false),
border: opt(colors.yellow),
@@ -1051,6 +1060,16 @@ const options = mkOptions(CONFIG, {
},
customModules: {
scrollSpeed: opt(5),
+ microphone: {
+ label: opt(true),
+ mutedIcon: opt(''),
+ unmutedIcon: opt(''),
+ leftClick: opt('menu:audio'),
+ rightClick: opt(''),
+ middleClick: opt(''),
+ scrollUp: opt(''),
+ scrollDown: opt(''),
+ },
ram: {
icon: opt(''),
label: opt(true),
diff --git a/src/scss/style/bar/style.scss b/src/scss/style/bar/style.scss
index bd9ed09..873bfbd 100644
--- a/src/scss/style/bar/style.scss
+++ b/src/scss/style/bar/style.scss
@@ -10,6 +10,7 @@
.module-icon {
font-size: 1em;
+ min-width: 0.7em;
}
.style2 {
@@ -126,6 +127,33 @@
}
}
+/*
+ * #################################
+ * # Mic Module Styling #
+ * #################################
+ */
+@include styleModule(
+ //
+ // class name
+ 'mic',
+ // label color
+ $bar-buttons-modules-microphone-text,
+ // icon color
+ $bar-buttons-modules-microphone-icon,
+ // icon background if split style is used
+ $bar-buttons-modules-microphone-icon_background,
+ // label background
+ $bar-buttons-modules-microphone-background,
+ // inner spacing
+ $bar-buttons-modules-microphone-spacing,
+ //
+ // if border enabled
+ $bar-buttons-modules-microphone-enableBorder,
+ // border color
+ $bar-buttons-modules-microphone-border,
+ 1.3em
+);
+
/*
* #################################
* # Ram Module Styling #
@@ -474,4 +502,4 @@
$bar-buttons-modules-cava-border,
// custom font size
1.2em //
-);
\ No newline at end of file
+);
diff --git a/themes/catppuccin_frappe.json b/themes/catppuccin_frappe.json
index 30067c6..1f0f85a 100644
--- a/themes/catppuccin_frappe.json
+++ b/themes/catppuccin_frappe.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#303446",
"theme.bar.buttons.modules.cava.icon_background": "#303446",
"theme.bar.buttons.modules.cava.icon": "#81c8be",
- "theme.bar.buttons.modules.cava.border": "#81c8be"
+ "theme.bar.buttons.modules.cava.border": "#81c8be",
+ "theme.bar.buttons.modules.microphone.border": "#a6d189",
+ "theme.bar.buttons.modules.microphone.background": "#303446",
+ "theme.bar.buttons.modules.microphone.text": "#a6d189",
+ "theme.bar.buttons.modules.microphone.icon": "#a6d189",
+ "theme.bar.buttons.modules.microphone.icon_background": "#303446"
}
\ No newline at end of file
diff --git a/themes/catppuccin_frappe_split.json b/themes/catppuccin_frappe_split.json
index 989fe2a..2485112 100644
--- a/themes/catppuccin_frappe_split.json
+++ b/themes/catppuccin_frappe_split.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#303446",
"theme.bar.buttons.modules.cava.icon": "#181825",
"theme.bar.buttons.modules.cava.icon_background": "#81c8be",
- "theme.bar.buttons.modules.cava.border": "#81c8be"
+ "theme.bar.buttons.modules.cava.border": "#81c8be",
+ "theme.bar.buttons.modules.microphone.border": "#a6d189",
+ "theme.bar.buttons.modules.microphone.background": "#303446",
+ "theme.bar.buttons.modules.microphone.text": "#a6d189",
+ "theme.bar.buttons.modules.microphone.icon": "#303446",
+ "theme.bar.buttons.modules.microphone.icon_background": "#a6d189"
}
\ No newline at end of file
diff --git a/themes/catppuccin_frappe_vivid.json b/themes/catppuccin_frappe_vivid.json
index 82b3936..d096b48 100644
--- a/themes/catppuccin_frappe_vivid.json
+++ b/themes/catppuccin_frappe_vivid.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.text": "#303446",
"theme.bar.buttons.modules.cava.icon": "#303446",
"theme.bar.buttons.modules.cava.icon_background": "#303446",
- "theme.bar.buttons.modules.cava.border": "#81c8be"
+ "theme.bar.buttons.modules.cava.border": "#81c8be",
+ "theme.bar.buttons.modules.microphone.border": "#a6d189",
+ "theme.bar.buttons.modules.microphone.text": "#303446",
+ "theme.bar.buttons.modules.microphone.background": "#a6d189",
+ "theme.bar.buttons.modules.microphone.icon": "#303446",
+ "theme.bar.buttons.modules.microphone.icon_background": "#a6d189"
}
\ No newline at end of file
diff --git a/themes/catppuccin_latte.json b/themes/catppuccin_latte.json
index a236725..847d6c9 100644
--- a/themes/catppuccin_latte.json
+++ b/themes/catppuccin_latte.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#dcdfe8",
"theme.bar.buttons.modules.cava.icon_background": "#dcdfe8",
"theme.bar.buttons.modules.cava.icon": "#179299",
- "theme.bar.buttons.modules.cava.border": "#179299"
+ "theme.bar.buttons.modules.cava.border": "#179299",
+ "theme.bar.buttons.modules.microphone.border": "#40a02b",
+ "theme.bar.buttons.modules.microphone.background": "#dcdfe8",
+ "theme.bar.buttons.modules.microphone.text": "#40a02b",
+ "theme.bar.buttons.modules.microphone.icon": "#40a02b",
+ "theme.bar.buttons.modules.microphone.icon_background": "#dcdfe8"
}
\ No newline at end of file
diff --git a/themes/catppuccin_latte_split.json b/themes/catppuccin_latte_split.json
index 009c612..7156a8e 100644
--- a/themes/catppuccin_latte_split.json
+++ b/themes/catppuccin_latte_split.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#dcdfe8",
"theme.bar.buttons.modules.cava.icon": "#181825",
"theme.bar.buttons.modules.cava.icon_background": "#179299",
- "theme.bar.buttons.modules.cava.border": "#179299"
+ "theme.bar.buttons.modules.cava.border": "#179299",
+ "theme.bar.buttons.modules.microphone.border": "#40a02b",
+ "theme.bar.buttons.modules.microphone.background": "#dcdfe8",
+ "theme.bar.buttons.modules.microphone.text": "#40a02b",
+ "theme.bar.buttons.modules.microphone.icon": "#dcdfe8",
+ "theme.bar.buttons.modules.microphone.icon_background": "#40a02b"
}
\ No newline at end of file
diff --git a/themes/catppuccin_latte_vivid.json b/themes/catppuccin_latte_vivid.json
index 36ddfcd..5c890cf 100644
--- a/themes/catppuccin_latte_vivid.json
+++ b/themes/catppuccin_latte_vivid.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.text": "#dcdfe8",
"theme.bar.buttons.modules.cava.icon": "#dcdfe8",
"theme.bar.buttons.modules.cava.icon_background": "#dcdfe8",
- "theme.bar.buttons.modules.cava.border": "#179299"
+ "theme.bar.buttons.modules.cava.border": "#179299",
+ "theme.bar.buttons.modules.microphone.border": "#40a02b",
+ "theme.bar.buttons.modules.microphone.text": "#dcdfe8",
+ "theme.bar.buttons.modules.microphone.background": "#40a02b",
+ "theme.bar.buttons.modules.microphone.icon": "#dcdfe8",
+ "theme.bar.buttons.modules.microphone.icon_background": "#40a02b"
}
\ No newline at end of file
diff --git a/themes/catppuccin_macchiato.json b/themes/catppuccin_macchiato.json
index 947cfcd..e83a87f 100644
--- a/themes/catppuccin_macchiato.json
+++ b/themes/catppuccin_macchiato.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#24273a",
"theme.bar.buttons.modules.cava.icon_background": "#24273a",
"theme.bar.buttons.modules.cava.icon": "#8bd5ca",
- "theme.bar.buttons.modules.cava.border": "#8bd5ca"
+ "theme.bar.buttons.modules.cava.border": "#8bd5ca",
+ "theme.bar.buttons.modules.microphone.border": "#a6da95",
+ "theme.bar.buttons.modules.microphone.background": "#24273a",
+ "theme.bar.buttons.modules.microphone.text": "#a6da95",
+ "theme.bar.buttons.modules.microphone.icon": "#a6da95",
+ "theme.bar.buttons.modules.microphone.icon_background": "#24273a"
}
\ No newline at end of file
diff --git a/themes/catppuccin_macchiato_split.json b/themes/catppuccin_macchiato_split.json
index 23b0845..bf44064 100644
--- a/themes/catppuccin_macchiato_split.json
+++ b/themes/catppuccin_macchiato_split.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#24273a",
"theme.bar.buttons.modules.cava.icon": "#181825",
"theme.bar.buttons.modules.cava.icon_background": "#8bd5ca",
- "theme.bar.buttons.modules.cava.border": "#8bd5ca"
+ "theme.bar.buttons.modules.cava.border": "#8bd5ca",
+ "theme.bar.buttons.modules.microphone.border": "#a6da95",
+ "theme.bar.buttons.modules.microphone.background": "#24273a",
+ "theme.bar.buttons.modules.microphone.text": "#a6da95",
+ "theme.bar.buttons.modules.microphone.icon": "#24273a",
+ "theme.bar.buttons.modules.microphone.icon_background": "#a6da95"
}
\ No newline at end of file
diff --git a/themes/catppuccin_macchiato_vivid.json b/themes/catppuccin_macchiato_vivid.json
index 00c67a3..13ccad6 100644
--- a/themes/catppuccin_macchiato_vivid.json
+++ b/themes/catppuccin_macchiato_vivid.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.text": "#24273a",
"theme.bar.buttons.modules.cava.icon": "#24273a",
"theme.bar.buttons.modules.cava.icon_background": "#24273a",
- "theme.bar.buttons.modules.cava.border": "#8bd5ca"
+ "theme.bar.buttons.modules.cava.border": "#8bd5ca",
+ "theme.bar.buttons.modules.microphone.border": "#a6da95",
+ "theme.bar.buttons.modules.microphone.text": "#24273a",
+ "theme.bar.buttons.modules.microphone.background": "#a6da95",
+ "theme.bar.buttons.modules.microphone.icon": "#24273a",
+ "theme.bar.buttons.modules.microphone.icon_background": "#a6da95"
}
\ No newline at end of file
diff --git a/themes/catppuccin_mocha.json b/themes/catppuccin_mocha.json
index db89384..b6b1fea 100644
--- a/themes/catppuccin_mocha.json
+++ b/themes/catppuccin_mocha.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#242438",
"theme.bar.buttons.modules.cava.icon_background": "#242438",
"theme.bar.buttons.modules.cava.icon": "#94e2d5",
- "theme.bar.buttons.modules.cava.border": "#94e2d5"
+ "theme.bar.buttons.modules.cava.border": "#94e2d5",
+ "theme.bar.buttons.modules.microphone.border": "#a6e3a1",
+ "theme.bar.buttons.modules.microphone.background": "#242438",
+ "theme.bar.buttons.modules.microphone.text": "#a6e3a1",
+ "theme.bar.buttons.modules.microphone.icon": "#a6e3a1",
+ "theme.bar.buttons.modules.microphone.icon_background": "#242438"
}
diff --git a/themes/catppuccin_mocha_split.json b/themes/catppuccin_mocha_split.json
index 944406a..366b978 100644
--- a/themes/catppuccin_mocha_split.json
+++ b/themes/catppuccin_mocha_split.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#242438",
"theme.bar.buttons.modules.cava.icon": "#242438",
"theme.bar.buttons.modules.cava.icon_background": "#94e2d5",
- "theme.bar.buttons.modules.cava.border": "#94e2d5"
+ "theme.bar.buttons.modules.cava.border": "#94e2d5",
+ "theme.bar.buttons.modules.microphone.border": "#a6e3a1",
+ "theme.bar.buttons.modules.microphone.background": "#242438",
+ "theme.bar.buttons.modules.microphone.text": "#a6e3a1",
+ "theme.bar.buttons.modules.microphone.icon": "#242438",
+ "theme.bar.buttons.modules.microphone.icon_background": "#a6e3a1"
}
diff --git a/themes/catppuccin_mocha_vivid.json b/themes/catppuccin_mocha_vivid.json
index 5d00be6..35e3744 100644
--- a/themes/catppuccin_mocha_vivid.json
+++ b/themes/catppuccin_mocha_vivid.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.text": "#242438",
"theme.bar.buttons.modules.cava.icon": "#242438",
"theme.bar.buttons.modules.cava.icon_background": "#94e2d5",
- "theme.bar.buttons.modules.cava.border": "#94e2d5"
+ "theme.bar.buttons.modules.cava.border": "#94e2d5",
+ "theme.bar.buttons.modules.microphone.border": "#a6e3a1",
+ "theme.bar.buttons.modules.microphone.text": "#242438",
+ "theme.bar.buttons.modules.microphone.background": "#a6e3a1",
+ "theme.bar.buttons.modules.microphone.icon": "#242438",
+ "theme.bar.buttons.modules.microphone.icon_background": "#a6e3a1"
}
diff --git a/themes/cyberpunk.json b/themes/cyberpunk.json
index 8cb2382..c24e0d6 100644
--- a/themes/cyberpunk.json
+++ b/themes/cyberpunk.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#121212",
"theme.bar.buttons.modules.cava.icon_background": "#121212",
"theme.bar.buttons.modules.cava.icon": "#FF69B4",
- "theme.bar.buttons.modules.cava.border": "#FF69B4"
+ "theme.bar.buttons.modules.cava.border": "#FF69B4",
+ "theme.bar.buttons.modules.microphone.border": "#32CD32",
+ "theme.bar.buttons.modules.microphone.background": "#121212",
+ "theme.bar.buttons.modules.microphone.text": "#32CD32",
+ "theme.bar.buttons.modules.microphone.icon": "#32CD32",
+ "theme.bar.buttons.modules.microphone.icon_background": "#121212"
}
\ No newline at end of file
diff --git a/themes/cyberpunk_split.json b/themes/cyberpunk_split.json
index eac2377..93de7a5 100644
--- a/themes/cyberpunk_split.json
+++ b/themes/cyberpunk_split.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#121212",
"theme.bar.buttons.modules.cava.icon": "#121212",
"theme.bar.buttons.modules.cava.icon_background": "#FF69B4",
- "theme.bar.buttons.modules.cava.border": "#FF69B4"
+ "theme.bar.buttons.modules.cava.border": "#FF69B4",
+ "theme.bar.buttons.modules.microphone.border": "#32CD32",
+ "theme.bar.buttons.modules.microphone.background": "#121212",
+ "theme.bar.buttons.modules.microphone.text": "#32CD32",
+ "theme.bar.buttons.modules.microphone.icon": "#121212",
+ "theme.bar.buttons.modules.microphone.icon_background": "#32CD32"
}
\ No newline at end of file
diff --git a/themes/cyberpunk_vivid.json b/themes/cyberpunk_vivid.json
index dca8914..0d55b84 100644
--- a/themes/cyberpunk_vivid.json
+++ b/themes/cyberpunk_vivid.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.text": "#121212",
"theme.bar.buttons.modules.cava.icon": "#121212",
"theme.bar.buttons.modules.cava.icon_background": "#121212",
- "theme.bar.buttons.modules.cava.border": "#FF69B4"
+ "theme.bar.buttons.modules.cava.border": "#FF69B4",
+ "theme.bar.buttons.modules.microphone.border": "#32CD32",
+ "theme.bar.buttons.modules.microphone.text": "#121212",
+ "theme.bar.buttons.modules.microphone.background": "#32CD32",
+ "theme.bar.buttons.modules.microphone.icon": "#121212",
+ "theme.bar.buttons.modules.microphone.icon_background": "#32CD32"
}
\ No newline at end of file
diff --git a/themes/dracula.json b/themes/dracula.json
index 7106bdf..50f8ed8 100644
--- a/themes/dracula.json
+++ b/themes/dracula.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#44475a",
"theme.bar.buttons.modules.cava.icon_background": "#44475a",
"theme.bar.buttons.modules.cava.icon": "#8be9fd",
- "theme.bar.buttons.modules.cava.border": "#8be9fd"
+ "theme.bar.buttons.modules.cava.border": "#8be9fd",
+ "theme.bar.buttons.modules.microphone.border": "#50fa7b",
+ "theme.bar.buttons.modules.microphone.background": "#44475a",
+ "theme.bar.buttons.modules.microphone.text": "#50fa7b",
+ "theme.bar.buttons.modules.microphone.icon": "#50fa7b",
+ "theme.bar.buttons.modules.microphone.icon_background": "#44475a"
}
\ No newline at end of file
diff --git a/themes/dracula_split.json b/themes/dracula_split.json
index 727a0f9..7ac1c7a 100644
--- a/themes/dracula_split.json
+++ b/themes/dracula_split.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#44475a",
"theme.bar.buttons.modules.cava.icon": "#282936",
"theme.bar.buttons.modules.cava.icon_background": "#8be9fd",
- "theme.bar.buttons.modules.cava.border": "#8be9fd"
+ "theme.bar.buttons.modules.cava.border": "#8be9fd",
+ "theme.bar.buttons.modules.microphone.border": "#50fa7b",
+ "theme.bar.buttons.modules.microphone.background": "#44475a",
+ "theme.bar.buttons.modules.microphone.text": "#50fa7b",
+ "theme.bar.buttons.modules.microphone.icon": "#44475a",
+ "theme.bar.buttons.modules.microphone.icon_background": "#50fa7b"
}
\ No newline at end of file
diff --git a/themes/dracula_vivid.json b/themes/dracula_vivid.json
index 9abcf3b..de8d5ab 100644
--- a/themes/dracula_vivid.json
+++ b/themes/dracula_vivid.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.text": "#44475a",
"theme.bar.buttons.modules.cava.icon": "#44475a",
"theme.bar.buttons.modules.cava.icon_background": "#44475a",
- "theme.bar.buttons.modules.cava.border": "#8be9fd"
+ "theme.bar.buttons.modules.cava.border": "#8be9fd",
+ "theme.bar.buttons.modules.microphone.border": "#50fa7b",
+ "theme.bar.buttons.modules.microphone.text": "#44475a",
+ "theme.bar.buttons.modules.microphone.background": "#50fa7b",
+ "theme.bar.buttons.modules.microphone.icon": "#44475a",
+ "theme.bar.buttons.modules.microphone.icon_background": "#50fa7b"
}
\ No newline at end of file
diff --git a/themes/everforest.json b/themes/everforest.json
index 2dfdc68..0ea33e7 100644
--- a/themes/everforest.json
+++ b/themes/everforest.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#323d43",
"theme.bar.buttons.modules.cava.icon_background": "#323d43",
"theme.bar.buttons.modules.cava.icon": "#83c092",
- "theme.bar.buttons.modules.cava.border": "#83c092"
+ "theme.bar.buttons.modules.cava.border": "#83c092",
+ "theme.bar.buttons.modules.microphone.border": "#a7c080",
+ "theme.bar.buttons.modules.microphone.background": "#323d43",
+ "theme.bar.buttons.modules.microphone.text": "#a7c080",
+ "theme.bar.buttons.modules.microphone.icon": "#a7c080",
+ "theme.bar.buttons.modules.microphone.icon_background": "#323d43"
}
\ No newline at end of file
diff --git a/themes/everforest_split.json b/themes/everforest_split.json
index 22c68a9..bf8048c 100644
--- a/themes/everforest_split.json
+++ b/themes/everforest_split.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#323d43",
"theme.bar.buttons.modules.cava.icon": "#21252b",
"theme.bar.buttons.modules.cava.icon_background": "#83c092",
- "theme.bar.buttons.modules.cava.border": "#83c092"
+ "theme.bar.buttons.modules.cava.border": "#83c092",
+ "theme.bar.buttons.modules.microphone.border": "#a7c080",
+ "theme.bar.buttons.modules.microphone.background": "#323d43",
+ "theme.bar.buttons.modules.microphone.text": "#a7c080",
+ "theme.bar.buttons.modules.microphone.icon": "#323d43",
+ "theme.bar.buttons.modules.microphone.icon_background": "#a7c080"
}
\ No newline at end of file
diff --git a/themes/everforest_vivid.json b/themes/everforest_vivid.json
index 1557823..e6d2bd4 100644
--- a/themes/everforest_vivid.json
+++ b/themes/everforest_vivid.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.text": "#323d43",
"theme.bar.buttons.modules.cava.icon": "#323d43",
"theme.bar.buttons.modules.cava.icon_background": "#323d43",
- "theme.bar.buttons.modules.cava.border": "#83c092"
+ "theme.bar.buttons.modules.cava.border": "#83c092",
+ "theme.bar.buttons.modules.microphone.border": "#a7c080",
+ "theme.bar.buttons.modules.microphone.text": "#323d43",
+ "theme.bar.buttons.modules.microphone.background": "#a7c080",
+ "theme.bar.buttons.modules.microphone.icon": "#323d43",
+ "theme.bar.buttons.modules.microphone.icon_background": "#a7c080"
}
\ No newline at end of file
diff --git a/themes/gruvbox.json b/themes/gruvbox.json
index 6c418e8..5465fef 100644
--- a/themes/gruvbox.json
+++ b/themes/gruvbox.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#282828",
"theme.bar.buttons.modules.cava.icon_background": "#282828",
"theme.bar.buttons.modules.cava.icon": "#8ec07c",
- "theme.bar.buttons.modules.cava.border": "#8ec07c"
+ "theme.bar.buttons.modules.cava.border": "#8ec07c",
+ "theme.bar.buttons.modules.microphone.border": "#b8bb26",
+ "theme.bar.buttons.modules.microphone.background": "#282828",
+ "theme.bar.buttons.modules.microphone.text": "#b8bb26",
+ "theme.bar.buttons.modules.microphone.icon": "#b8bb26",
+ "theme.bar.buttons.modules.microphone.icon_background": "#282828"
}
\ No newline at end of file
diff --git a/themes/gruvbox_split.json b/themes/gruvbox_split.json
index 9744b29..a4fd6ca 100644
--- a/themes/gruvbox_split.json
+++ b/themes/gruvbox_split.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#282828",
"theme.bar.buttons.modules.cava.icon": "#21252b",
"theme.bar.buttons.modules.cava.icon_background": "#8ec07c",
- "theme.bar.buttons.modules.cava.border": "#8ec07c"
+ "theme.bar.buttons.modules.cava.border": "#8ec07c",
+ "theme.bar.buttons.modules.microphone.border": "#b8bb26",
+ "theme.bar.buttons.modules.microphone.background": "#282828",
+ "theme.bar.buttons.modules.microphone.text": "#b8bb26",
+ "theme.bar.buttons.modules.microphone.icon": "#282828",
+ "theme.bar.buttons.modules.microphone.icon_background": "#b8bb26"
}
\ No newline at end of file
diff --git a/themes/gruvbox_vivid.json b/themes/gruvbox_vivid.json
index a16c3a2..fca6d41 100644
--- a/themes/gruvbox_vivid.json
+++ b/themes/gruvbox_vivid.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.text": "#282828",
"theme.bar.buttons.modules.cava.icon": "#282828",
"theme.bar.buttons.modules.cava.icon_background": "#282828",
- "theme.bar.buttons.modules.cava.border": "#8ec07c"
+ "theme.bar.buttons.modules.cava.border": "#8ec07c",
+ "theme.bar.buttons.modules.microphone.border": "#b8bb26",
+ "theme.bar.buttons.modules.microphone.text": "#282828",
+ "theme.bar.buttons.modules.microphone.background": "#b8bb26",
+ "theme.bar.buttons.modules.microphone.icon": "#282828",
+ "theme.bar.buttons.modules.microphone.icon_background": "#b8bb26"
}
\ No newline at end of file
diff --git a/themes/monochrome.json b/themes/monochrome.json
index bb4f219..68e9abe 100644
--- a/themes/monochrome.json
+++ b/themes/monochrome.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#090909",
"theme.bar.buttons.modules.cava.icon_background": "#090909",
"theme.bar.buttons.modules.cava.icon": "#FFFFFF",
- "theme.bar.buttons.modules.cava.border": "#FFFFFF"
+ "theme.bar.buttons.modules.cava.border": "#FFFFFF",
+ "theme.bar.buttons.modules.microphone.border": "#ffffff",
+ "theme.bar.buttons.modules.microphone.background": "#090909",
+ "theme.bar.buttons.modules.microphone.text": "#ffffff",
+ "theme.bar.buttons.modules.microphone.icon": "#ffffff",
+ "theme.bar.buttons.modules.microphone.icon_background": "#090909"
}
\ No newline at end of file
diff --git a/themes/monochrome_split.json b/themes/monochrome_split.json
index 8f885dd..28984da 100644
--- a/themes/monochrome_split.json
+++ b/themes/monochrome_split.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#090909",
"theme.bar.buttons.modules.cava.icon": "#21252b",
"theme.bar.buttons.modules.cava.icon_background": "#FFFFFF",
- "theme.bar.buttons.modules.cava.border": "#FFFFFF"
+ "theme.bar.buttons.modules.cava.border": "#FFFFFF",
+ "theme.bar.buttons.modules.microphone.border": "#ffffff",
+ "theme.bar.buttons.modules.microphone.background": "#090909",
+ "theme.bar.buttons.modules.microphone.text": "#ffffff",
+ "theme.bar.buttons.modules.microphone.icon": "#090909",
+ "theme.bar.buttons.modules.microphone.icon_background": "#ffffff"
}
\ No newline at end of file
diff --git a/themes/monochrome_vivid.json b/themes/monochrome_vivid.json
index 8f6bbc0..91d3e03 100644
--- a/themes/monochrome_vivid.json
+++ b/themes/monochrome_vivid.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.text": "#090909",
"theme.bar.buttons.modules.cava.icon": "#090909",
"theme.bar.buttons.modules.cava.icon_background": "#090909",
- "theme.bar.buttons.modules.cava.border": "#FFFFFF"
+ "theme.bar.buttons.modules.cava.border": "#FFFFFF",
+ "theme.bar.buttons.modules.microphone.border": "#ffffff",
+ "theme.bar.buttons.modules.microphone.text": "#090909",
+ "theme.bar.buttons.modules.microphone.background": "#ffffff",
+ "theme.bar.buttons.modules.microphone.icon": "#090909",
+ "theme.bar.buttons.modules.microphone.icon_background": "#ffffff"
}
\ No newline at end of file
diff --git a/themes/nord.json b/themes/nord.json
index 5f9d5c0..c6cc4db 100644
--- a/themes/nord.json
+++ b/themes/nord.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#3b4252",
"theme.bar.buttons.modules.cava.icon_background": "#3b4252",
"theme.bar.buttons.modules.cava.icon": "#8fbcbb",
- "theme.bar.buttons.modules.cava.border": "#8fbcbb"
+ "theme.bar.buttons.modules.cava.border": "#8fbcbb",
+ "theme.bar.buttons.modules.microphone.border": "#8fbcbb",
+ "theme.bar.buttons.modules.microphone.background": "#3b4252",
+ "theme.bar.buttons.modules.microphone.text": "#8fbcbb",
+ "theme.bar.buttons.modules.microphone.icon": "#8fbcbb",
+ "theme.bar.buttons.modules.microphone.icon_background": "#3b4252"
}
\ No newline at end of file
diff --git a/themes/nord_split.json b/themes/nord_split.json
index 087ea91..9698c76 100644
--- a/themes/nord_split.json
+++ b/themes/nord_split.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#3b4252",
"theme.bar.buttons.modules.cava.icon": "#21252b",
"theme.bar.buttons.modules.cava.icon_background": "#8fbcbb",
- "theme.bar.buttons.modules.cava.border": "#8fbcbb"
+ "theme.bar.buttons.modules.cava.border": "#8fbcbb",
+ "theme.bar.buttons.modules.microphone.border": "#8fbcbb",
+ "theme.bar.buttons.modules.microphone.background": "#3b4252",
+ "theme.bar.buttons.modules.microphone.text": "#8fbcbb",
+ "theme.bar.buttons.modules.microphone.icon": "#3b4252",
+ "theme.bar.buttons.modules.microphone.icon_background": "#8fbcbb"
}
\ No newline at end of file
diff --git a/themes/nord_vivid.json b/themes/nord_vivid.json
index a7aea67..89e3ddb 100644
--- a/themes/nord_vivid.json
+++ b/themes/nord_vivid.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.text": "#3b4252",
"theme.bar.buttons.modules.cava.icon": "#3b4252",
"theme.bar.buttons.modules.cava.icon_background": "#3b4252",
- "theme.bar.buttons.modules.cava.border": "#8fbcbb"
+ "theme.bar.buttons.modules.cava.border": "#8fbcbb",
+ "theme.bar.buttons.modules.microphone.border": "#8fbcbb",
+ "theme.bar.buttons.modules.microphone.text": "#3b4252",
+ "theme.bar.buttons.modules.microphone.background": "#8fbcbb",
+ "theme.bar.buttons.modules.microphone.icon": "#3b4252",
+ "theme.bar.buttons.modules.microphone.icon_background": "#8fbcbb"
}
\ No newline at end of file
diff --git a/themes/one_dark.json b/themes/one_dark.json
index 37ea709..67c6967 100644
--- a/themes/one_dark.json
+++ b/themes/one_dark.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#21252b",
"theme.bar.buttons.modules.cava.icon_background": "#21252b",
"theme.bar.buttons.modules.cava.icon": "#56b6c2",
- "theme.bar.buttons.modules.cava.border": "#56b6c2"
+ "theme.bar.buttons.modules.cava.border": "#56b6c2",
+ "theme.bar.buttons.modules.microphone.border": "#98c379",
+ "theme.bar.buttons.modules.microphone.background": "#21252b",
+ "theme.bar.buttons.modules.microphone.text": "#98c379",
+ "theme.bar.buttons.modules.microphone.icon": "#98c379",
+ "theme.bar.buttons.modules.microphone.icon_background": "#21252b"
}
\ No newline at end of file
diff --git a/themes/one_dark_split.json b/themes/one_dark_split.json
index a463570..9b857ee 100644
--- a/themes/one_dark_split.json
+++ b/themes/one_dark_split.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#21252b",
"theme.bar.buttons.modules.cava.icon": "#21252b",
"theme.bar.buttons.modules.cava.icon_background": "#56b6c2",
- "theme.bar.buttons.modules.cava.border": "#56b6c2"
+ "theme.bar.buttons.modules.cava.border": "#56b6c2",
+ "theme.bar.buttons.modules.microphone.border": "#98c379",
+ "theme.bar.buttons.modules.microphone.background": "#21252b",
+ "theme.bar.buttons.modules.microphone.text": "#98c379",
+ "theme.bar.buttons.modules.microphone.icon": "#21252b",
+ "theme.bar.buttons.modules.microphone.icon_background": "#98c379"
}
\ No newline at end of file
diff --git a/themes/one_dark_vivid.json b/themes/one_dark_vivid.json
index 1d249fb..1569031 100644
--- a/themes/one_dark_vivid.json
+++ b/themes/one_dark_vivid.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.text": "#21252b",
"theme.bar.buttons.modules.cava.icon": "#21252b",
"theme.bar.buttons.modules.cava.icon_background": "#21252b",
- "theme.bar.buttons.modules.cava.border": "#56b6c2"
+ "theme.bar.buttons.modules.cava.border": "#56b6c2",
+ "theme.bar.buttons.modules.microphone.border": "#98c379",
+ "theme.bar.buttons.modules.microphone.text": "#21252b",
+ "theme.bar.buttons.modules.microphone.background": "#98c379",
+ "theme.bar.buttons.modules.microphone.icon": "#21252b",
+ "theme.bar.buttons.modules.microphone.icon_background": "#98c379"
}
\ No newline at end of file
diff --git a/themes/rose_pine.json b/themes/rose_pine.json
index 11cae01..6877274 100644
--- a/themes/rose_pine.json
+++ b/themes/rose_pine.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#21202e",
"theme.bar.buttons.modules.cava.icon_background": "#21202e",
"theme.bar.buttons.modules.cava.icon": "#9ccfd8",
- "theme.bar.buttons.modules.cava.border": "#9ccfd8"
+ "theme.bar.buttons.modules.cava.border": "#9ccfd8",
+ "theme.bar.buttons.modules.microphone.border": "#9ccfd8",
+ "theme.bar.buttons.modules.microphone.background": "#21202e",
+ "theme.bar.buttons.modules.microphone.text": "#9ccfd8",
+ "theme.bar.buttons.modules.microphone.icon": "#9ccfd8",
+ "theme.bar.buttons.modules.microphone.icon_background": "#21202e"
}
\ No newline at end of file
diff --git a/themes/rose_pine_moon.json b/themes/rose_pine_moon.json
index 7a76151..55b0d8a 100644
--- a/themes/rose_pine_moon.json
+++ b/themes/rose_pine_moon.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#2a283e",
"theme.bar.buttons.modules.cava.icon_background": "#2a283e",
"theme.bar.buttons.modules.cava.icon": "#9ccfd8",
- "theme.bar.buttons.modules.cava.border": "#9ccfd8"
+ "theme.bar.buttons.modules.cava.border": "#9ccfd8",
+ "theme.bar.buttons.modules.microphone.border": "#9ccfd8",
+ "theme.bar.buttons.modules.microphone.background": "#2a283e",
+ "theme.bar.buttons.modules.microphone.text": "#9ccfd8",
+ "theme.bar.buttons.modules.microphone.icon": "#9ccfd8",
+ "theme.bar.buttons.modules.microphone.icon_background": "#2a283e"
}
\ No newline at end of file
diff --git a/themes/rose_pine_moon_split.json b/themes/rose_pine_moon_split.json
index 3cedd17..8057035 100644
--- a/themes/rose_pine_moon_split.json
+++ b/themes/rose_pine_moon_split.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#2a283e",
"theme.bar.buttons.modules.cava.icon": "#181825",
"theme.bar.buttons.modules.cava.icon_background": "#9ccfd8",
- "theme.bar.buttons.modules.cava.border": "#9ccfd8"
+ "theme.bar.buttons.modules.cava.border": "#9ccfd8",
+ "theme.bar.buttons.modules.microphone.border": "#9ccfd8",
+ "theme.bar.buttons.modules.microphone.background": "#2a283e",
+ "theme.bar.buttons.modules.microphone.text": "#9ccfd8",
+ "theme.bar.buttons.modules.microphone.icon": "#2a283e",
+ "theme.bar.buttons.modules.microphone.icon_background": "#9ccfd8"
}
\ No newline at end of file
diff --git a/themes/rose_pine_moon_vivid.json b/themes/rose_pine_moon_vivid.json
index 43133af..c4774c6 100644
--- a/themes/rose_pine_moon_vivid.json
+++ b/themes/rose_pine_moon_vivid.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.text": "#2a283e",
"theme.bar.buttons.modules.cava.icon": "#2a283e",
"theme.bar.buttons.modules.cava.icon_background": "#2a283e",
- "theme.bar.buttons.modules.cava.border": "#9ccfd8"
+ "theme.bar.buttons.modules.cava.border": "#9ccfd8",
+ "theme.bar.buttons.modules.microphone.border": "#9ccfd8",
+ "theme.bar.buttons.modules.microphone.text": "#2a283e",
+ "theme.bar.buttons.modules.microphone.background": "#9ccfd8",
+ "theme.bar.buttons.modules.microphone.icon": "#2a283e",
+ "theme.bar.buttons.modules.microphone.icon_background": "#9ccfd8"
}
\ No newline at end of file
diff --git a/themes/rose_pine_split.json b/themes/rose_pine_split.json
index f2b75d8..c704528 100644
--- a/themes/rose_pine_split.json
+++ b/themes/rose_pine_split.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.background": "#21202e",
"theme.bar.buttons.modules.cava.icon": "#181825",
"theme.bar.buttons.modules.cava.icon_background": "#9ccfd8",
- "theme.bar.buttons.modules.cava.border": "#9ccfd8"
+ "theme.bar.buttons.modules.cava.border": "#9ccfd8",
+ "theme.bar.buttons.modules.microphone.border": "#9ccfd8",
+ "theme.bar.buttons.modules.microphone.background": "#21202e",
+ "theme.bar.buttons.modules.microphone.text": "#9ccfd8",
+ "theme.bar.buttons.modules.microphone.icon": "#21202e",
+ "theme.bar.buttons.modules.microphone.icon_background": "#9ccfd8"
}
\ No newline at end of file
diff --git a/themes/rose_pine_vivid.json b/themes/rose_pine_vivid.json
index 08c560e..300cd99 100644
--- a/themes/rose_pine_vivid.json
+++ b/themes/rose_pine_vivid.json
@@ -361,5 +361,10 @@
"theme.bar.buttons.modules.cava.text": "#21202e",
"theme.bar.buttons.modules.cava.icon": "#21202e",
"theme.bar.buttons.modules.cava.icon_background": "#21202e",
- "theme.bar.buttons.modules.cava.border": "#9ccfd8"
+ "theme.bar.buttons.modules.cava.border": "#9ccfd8",
+ "theme.bar.buttons.modules.microphone.border": "#9ccfd8",
+ "theme.bar.buttons.modules.microphone.text": "#21202e",
+ "theme.bar.buttons.modules.microphone.background": "#9ccfd8",
+ "theme.bar.buttons.modules.microphone.icon": "#21202e",
+ "theme.bar.buttons.modules.microphone.icon_background": "#9ccfd8"
}
\ No newline at end of file
diff --git a/themes/tokyo_night.json b/themes/tokyo_night.json
index 568c36f..3d9f284 100644
--- a/themes/tokyo_night.json
+++ b/themes/tokyo_night.json
@@ -384,5 +384,10 @@
"theme.bar.buttons.modules.cava.background": "#272a3d",
"theme.bar.buttons.modules.cava.icon_background": "#1abc9c",
"theme.bar.buttons.modules.cava.icon": "#1abc9c",
- "theme.bar.buttons.modules.cava.border": "#1abc9c"
+ "theme.bar.buttons.modules.cava.border": "#1abc9c",
+ "theme.bar.buttons.modules.microphone.border": "#9ece6a",
+ "theme.bar.buttons.modules.microphone.background": "#272a3d",
+ "theme.bar.buttons.modules.microphone.text": "#9ece6a",
+ "theme.bar.buttons.modules.microphone.icon": "#9ece6a",
+ "theme.bar.buttons.modules.microphone.icon_background": "#272a3d"
}
\ No newline at end of file
diff --git a/themes/tokyo_night_moon.json b/themes/tokyo_night_moon.json
index a916a52..6d3a9e6 100644
--- a/themes/tokyo_night_moon.json
+++ b/themes/tokyo_night_moon.json
@@ -1,388 +1,393 @@
{
- "theme.bar.menus.menu.notifications.scrollbar.color": "#4fd6be",
- "theme.bar.menus.menu.notifications.pager.label": "#636da6",
- "theme.bar.menus.menu.notifications.pager.button": "#4fd6be",
- "theme.bar.menus.menu.notifications.pager.background": "#222436",
- "theme.bar.menus.menu.notifications.switch.puck": "#636da6",
- "theme.bar.menus.menu.notifications.switch.disabled": "#636da6",
- "theme.bar.menus.menu.notifications.switch.enabled": "#4fd6be",
- "theme.bar.menus.menu.notifications.clear": "#4fd6be",
- "theme.bar.menus.menu.notifications.switch_divider": "#444a73",
- "theme.bar.menus.menu.notifications.border": "#2f324d",
- "theme.bar.menus.menu.notifications.card": "#24283b",
- "theme.bar.menus.menu.notifications.background": "#1e2030",
- "theme.bar.menus.menu.notifications.no_notifications_label": "#444a73",
- "theme.bar.menus.menu.notifications.label": "#4fd6be",
- "theme.bar.menus.menu.power.buttons.sleep.icon": "#222436",
- "theme.bar.menus.menu.power.buttons.sleep.text": "#86e1fc",
- "theme.bar.menus.menu.power.buttons.sleep.icon_background": "#86e1fc",
- "theme.bar.menus.menu.power.buttons.sleep.background": "#24283b",
- "theme.bar.menus.menu.power.buttons.logout.icon": "#222436",
- "theme.bar.menus.menu.power.buttons.logout.text": "#c3e88d",
- "theme.bar.menus.menu.power.buttons.logout.icon_background": "#c3e88d",
- "theme.bar.menus.menu.power.buttons.logout.background": "#24283b",
- "theme.bar.menus.menu.power.buttons.restart.icon": "#222436",
- "theme.bar.menus.menu.power.buttons.restart.text": "#ffc777",
- "theme.bar.menus.menu.power.buttons.restart.icon_background": "#ffc777",
- "theme.bar.menus.menu.power.buttons.restart.background": "#24283b",
- "theme.bar.menus.menu.power.buttons.shutdown.icon": "#222436",
- "theme.bar.menus.menu.power.buttons.shutdown.text": "#ff757f",
- "theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#ff757f",
- "theme.bar.menus.menu.power.buttons.shutdown.background": "#24283b",
- "theme.bar.menus.menu.power.border.color": "#2f324d",
- "theme.bar.menus.menu.power.background.color": "#1e2030",
- "theme.bar.menus.menu.dashboard.monitors.disk.label": "#ff757f",
- "theme.bar.menus.menu.dashboard.monitors.disk.bar": "#ff757f",
- "theme.bar.menus.menu.dashboard.monitors.disk.icon": "#ff757f",
- "theme.bar.menus.menu.dashboard.monitors.gpu.label": "#c3e88d",
- "theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#c3e88d",
- "theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#c3e88d",
- "theme.bar.menus.menu.dashboard.monitors.ram.label": "#ffc777",
- "theme.bar.menus.menu.dashboard.monitors.ram.bar": "#ffc777",
- "theme.bar.menus.menu.dashboard.monitors.ram.icon": "#ffc777",
- "theme.bar.menus.menu.dashboard.monitors.cpu.label": "#ff757f",
- "theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#ff757f",
- "theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#ff757f",
- "theme.bar.menus.menu.dashboard.monitors.bar_background": "#444a73",
- "theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#c099ff",
- "theme.bar.menus.menu.dashboard.directories.right.middle.color": "#c099ff",
- "theme.bar.menus.menu.dashboard.directories.right.top.color": "#4fd6be",
- "theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#ff757f",
- "theme.bar.menus.menu.dashboard.directories.left.middle.color": "#ffc777",
- "theme.bar.menus.menu.dashboard.directories.left.top.color": "#ff757f",
- "theme.bar.menus.menu.dashboard.controls.input.text": "#222436",
- "theme.bar.menus.menu.dashboard.controls.input.background": "#ff757f",
- "theme.bar.menus.menu.dashboard.controls.volume.text": "#222436",
- "theme.bar.menus.menu.dashboard.controls.volume.background": "#ff757f",
- "theme.bar.menus.menu.dashboard.controls.notifications.text": "#222436",
- "theme.bar.menus.menu.dashboard.controls.notifications.background": "#ffc777",
- "theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#222436",
- "theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#86e1fc",
- "theme.bar.menus.menu.dashboard.controls.wifi.text": "#222436",
- "theme.bar.menus.menu.dashboard.controls.wifi.background": "#c099ff",
- "theme.bar.menus.menu.dashboard.controls.disabled": "#444a73",
- "theme.bar.menus.menu.dashboard.shortcuts.recording": "#c3e88d",
- "theme.bar.menus.menu.dashboard.shortcuts.text": "#222436",
- "theme.bar.menus.menu.dashboard.shortcuts.background": "#c099ff",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#222436",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#ff757f",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#c3e88d",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#c8d3f5",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#c099ff",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#444a73",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#222436",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#24283b",
- "theme.bar.menus.menu.dashboard.powermenu.sleep": "#86e1fc",
- "theme.bar.menus.menu.dashboard.powermenu.logout": "#c3e88d",
- "theme.bar.menus.menu.dashboard.powermenu.restart": "#ffc777",
- "theme.bar.menus.menu.dashboard.powermenu.shutdown": "#ff757f",
- "theme.bar.menus.menu.dashboard.profile.name": "#ff757f",
- "theme.bar.menus.menu.dashboard.border.color": "#2f324d",
- "theme.bar.menus.menu.dashboard.background.color": "#1e2030",
- "theme.bar.menus.menu.dashboard.card.color": "#24283b",
- "theme.bar.menus.menu.clock.weather.hourly.temperature": "#fca7ea",
- "theme.bar.menus.menu.clock.weather.hourly.icon": "#fca7ea",
- "theme.bar.menus.menu.clock.weather.hourly.time": "#fca7ea",
- "theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#86e1fc",
- "theme.bar.menus.menu.clock.weather.thermometer.cold": "#82aaff",
- "theme.bar.menus.menu.clock.weather.thermometer.moderate": "#c099ff",
- "theme.bar.menus.menu.clock.weather.thermometer.hot": "#ffc777",
- "theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#fca7ea",
- "theme.bar.menus.menu.clock.weather.stats": "#fca7ea",
- "theme.bar.menus.menu.clock.weather.status": "#4fd6be",
- "theme.bar.menus.menu.clock.weather.temperature": "#c8d3f5",
- "theme.bar.menus.menu.clock.weather.icon": "#fca7ea",
- "theme.bar.menus.menu.clock.calendar.contextdays": "#444a73",
- "theme.bar.menus.menu.clock.calendar.days": "#c8d3f5",
- "theme.bar.menus.menu.clock.calendar.currentday": "#fca7ea",
- "theme.bar.menus.menu.clock.calendar.paginator": "#fca7ea",
- "theme.bar.menus.menu.clock.calendar.weekdays": "#fca7ea",
- "theme.bar.menus.menu.clock.calendar.yearmonth": "#4fd6be",
- "theme.bar.menus.menu.clock.time.timeperiod": "#4fd6be",
- "theme.bar.menus.menu.clock.time.time": "#fca7ea",
- "theme.bar.menus.menu.clock.text": "#c8d3f5",
- "theme.bar.menus.menu.clock.border.color": "#2f324d",
- "theme.bar.menus.menu.clock.background.color": "#1e2030",
- "theme.bar.menus.menu.clock.card.color": "#24283b",
- "theme.bar.menus.menu.battery.slider.puck": "#636da6",
- "theme.bar.menus.menu.battery.slider.backgroundhover": "#444a73",
- "theme.bar.menus.menu.battery.slider.background": "#636da6",
- "theme.bar.menus.menu.battery.slider.primary": "#ffc777",
- "theme.bar.menus.menu.battery.icons.active": "#ffc777",
- "theme.bar.menus.menu.battery.icons.passive": "#636da6",
- "theme.bar.menus.menu.battery.listitems.active": "#ffc777",
- "theme.bar.menus.menu.battery.listitems.passive": "#c8d3f5",
- "theme.bar.menus.menu.battery.text": "#c8d3f5",
- "theme.bar.menus.menu.battery.label.color": "#ffc777",
- "theme.bar.menus.menu.battery.border.color": "#2f324d",
- "theme.bar.menus.menu.battery.background.color": "#1e2030",
- "theme.bar.menus.menu.battery.card.color": "#24283b",
- "theme.bar.menus.menu.systray.dropdownmenu.divider": "#24283b",
- "theme.bar.menus.menu.systray.dropdownmenu.text": "#c8d3f5",
- "theme.bar.menus.menu.systray.dropdownmenu.background": "#222436",
- "theme.bar.menus.menu.bluetooth.iconbutton.active": "#86e1fc",
- "theme.bar.menus.menu.bluetooth.iconbutton.passive": "#c8d3f5",
- "theme.bar.menus.menu.bluetooth.icons.active": "#86e1fc",
- "theme.bar.menus.menu.bluetooth.icons.passive": "#636da6",
- "theme.bar.menus.menu.bluetooth.listitems.active": "#86e1fc",
- "theme.bar.menus.menu.bluetooth.listitems.passive": "#c8d3f5",
- "theme.bar.menus.menu.bluetooth.switch.puck": "#636da6",
- "theme.bar.menus.menu.bluetooth.switch.disabled": "#636da6",
- "theme.bar.menus.menu.bluetooth.switch.enabled": "#86e1fc",
- "theme.bar.menus.menu.bluetooth.switch_divider": "#444a73",
- "theme.bar.menus.menu.bluetooth.status": "#636da6",
- "theme.bar.menus.menu.bluetooth.text": "#c8d3f5",
- "theme.bar.menus.menu.bluetooth.label.color": "#86e1fc",
- "theme.bar.menus.menu.bluetooth.border.color": "#2f324d",
- "theme.bar.menus.menu.bluetooth.background.color": "#1e2030",
- "theme.bar.menus.menu.bluetooth.card.color": "#24283b",
- "theme.bar.menus.menu.network.iconbuttons.active": "#c099ff",
- "theme.bar.menus.menu.network.iconbuttons.passive": "#c8d3f5",
- "theme.bar.menus.menu.network.icons.active": "#c099ff",
- "theme.bar.menus.menu.network.icons.passive": "#636da6",
- "theme.bar.menus.menu.network.listitems.active": "#c099ff",
- "theme.bar.menus.menu.network.listitems.passive": "#c8d3f5",
- "theme.bar.menus.menu.network.status.color": "#636da6",
- "theme.bar.menus.menu.network.text": "#c8d3f5",
- "theme.bar.menus.menu.network.label.color": "#c099ff",
- "theme.bar.menus.menu.network.border.color": "#2f324d",
- "theme.bar.menus.menu.network.background.color": "#1e2030",
- "theme.bar.menus.menu.network.card.color": "#24283b",
- "theme.bar.menus.menu.volume.input_slider.puck": "#444a73",
- "theme.bar.menus.menu.volume.input_slider.backgroundhover": "#444a73",
- "theme.bar.menus.menu.volume.input_slider.background": "#636da6",
- "theme.bar.menus.menu.volume.input_slider.primary": "#ff757f",
- "theme.bar.menus.menu.volume.audio_slider.puck": "#444a73",
- "theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#444a73",
- "theme.bar.menus.menu.volume.audio_slider.background": "#636da6",
- "theme.bar.menus.menu.volume.audio_slider.primary": "#ff757f",
- "theme.bar.menus.menu.volume.icons.active": "#ff757f",
- "theme.bar.menus.menu.volume.icons.passive": "#636da6",
- "theme.bar.menus.menu.volume.iconbutton.active": "#ff757f",
- "theme.bar.menus.menu.volume.iconbutton.passive": "#c8d3f5",
- "theme.bar.menus.menu.volume.listitems.active": "#ff757f",
- "theme.bar.menus.menu.volume.listitems.passive": "#c8d3f5",
- "theme.bar.menus.menu.volume.text": "#c8d3f5",
- "theme.bar.menus.menu.volume.label.color": "#ff757f",
- "theme.bar.menus.menu.volume.border.color": "#2f324d",
- "theme.bar.menus.menu.volume.background.color": "#1e2030",
- "theme.bar.menus.menu.volume.card.color": "#24283b",
- "theme.bar.menus.menu.media.slider.puck": "#636da6",
- "theme.bar.menus.menu.media.slider.backgroundhover": "#444a73",
- "theme.bar.menus.menu.media.slider.background": "#636da6",
- "theme.bar.menus.menu.media.slider.primary": "#ff757f",
- "theme.bar.menus.menu.media.buttons.text": "#222436",
- "theme.bar.menus.menu.media.buttons.background": "#c099ff",
- "theme.bar.menus.menu.media.buttons.enabled": "#4fd6be",
- "theme.bar.menus.menu.media.buttons.inactive": "#444a73",
- "theme.bar.menus.menu.media.border.color": "#2f324d",
- "theme.bar.menus.menu.media.card.color": "#24283b",
- "theme.bar.menus.menu.media.background.color": "#1e2030",
- "theme.bar.menus.menu.media.album": "#ff757f",
- "theme.bar.menus.menu.media.artist": "#4fd6be",
- "theme.bar.menus.menu.media.song": "#c099ff",
- "theme.bar.menus.tooltip.text": "#c8d3f5",
- "theme.bar.menus.tooltip.background": "#222436",
- "theme.bar.menus.dropdownmenu.divider": "#24283b",
- "theme.bar.menus.dropdownmenu.text": "#c8d3f5",
- "theme.bar.menus.dropdownmenu.background": "#222436",
- "theme.bar.menus.slider.puck": "#636da6",
- "theme.bar.menus.slider.backgroundhover": "#444a73",
- "theme.bar.menus.slider.background": "#636da6",
- "theme.bar.menus.slider.primary": "#c099ff",
- "theme.bar.menus.progressbar.background": "#444a73",
- "theme.bar.menus.progressbar.foreground": "#c099ff",
- "theme.bar.menus.iconbuttons.active": "#c099ff",
- "theme.bar.menus.iconbuttons.passive": "#c8d3f5",
- "theme.bar.menus.buttons.text": "#222436",
- "theme.bar.menus.buttons.disabled": "#636da6",
- "theme.bar.menus.buttons.active": "#ff757f",
- "theme.bar.menus.buttons.default": "#c099ff",
- "theme.bar.menus.check_radio_button.active": "#c099ff",
- "theme.bar.menus.check_radio_button.background": "#3b4261",
- "theme.bar.menus.switch.puck": "#636da6",
- "theme.bar.menus.switch.disabled": "#636da6",
- "theme.bar.menus.switch.enabled": "#c099ff",
- "theme.bar.menus.icons.active": "#c099ff",
- "theme.bar.menus.icons.passive": "#444a73",
- "theme.bar.menus.listitems.active": "#c099ff",
- "theme.bar.menus.listitems.passive": "#c8d3f5",
- "theme.bar.menus.popover.border": "#222436",
- "theme.bar.menus.popover.background": "#222436",
- "theme.bar.menus.popover.text": "#c099ff",
- "theme.bar.menus.label": "#c099ff",
- "theme.bar.menus.feinttext": "#444a73",
- "theme.bar.menus.dimtext": "#444a73",
- "theme.bar.menus.text": "#c8d3f5",
- "theme.bar.menus.border.color": "#444a73",
- "theme.bar.menus.cards": "#24283b",
- "theme.bar.menus.background": "#222436",
- "theme.bar.buttons.modules.power.icon_background": "#ff757f",
- "theme.bar.buttons.modules.power.icon": "#181825",
- "theme.bar.buttons.modules.power.background": "#272a3d",
- "theme.bar.buttons.modules.weather.icon_background": "#c099ff",
- "theme.bar.buttons.modules.weather.icon": "#c099ff",
- "theme.bar.buttons.modules.weather.text": "#c099ff",
- "theme.bar.buttons.modules.weather.background": "#272a3d",
- "theme.bar.buttons.modules.updates.icon_background": "#ff966c",
- "theme.bar.buttons.modules.updates.icon": "#ff966c",
- "theme.bar.buttons.modules.updates.text": "#ff966c",
- "theme.bar.buttons.modules.updates.background": "#272a3d",
- "theme.bar.buttons.modules.kbLayout.icon_background": "#86e1fc",
- "theme.bar.buttons.modules.kbLayout.icon": "#86e1fc",
- "theme.bar.buttons.modules.kbLayout.text": "#86e1fc",
- "theme.bar.buttons.modules.kbLayout.background": "#272a3d",
- "theme.bar.buttons.modules.netstat.icon_background": "#c3e88d",
- "theme.bar.buttons.modules.netstat.icon": "#c3e88d",
- "theme.bar.buttons.modules.netstat.text": "#c3e88d",
- "theme.bar.buttons.modules.netstat.background": "#272a3d",
- "theme.bar.buttons.modules.storage.icon_background": "#ff757f",
- "theme.bar.buttons.modules.storage.icon": "#ff757f",
- "theme.bar.buttons.modules.storage.text": "#ff757f",
- "theme.bar.buttons.modules.storage.background": "#272a3d",
- "theme.bar.buttons.modules.cpu.icon_background": "#ff757f",
- "theme.bar.buttons.modules.cpu.icon": "#ff757f",
- "theme.bar.buttons.modules.cpu.text": "#ff757f",
- "theme.bar.buttons.modules.cpu.background": "#272a3d",
- "theme.bar.buttons.modules.ram.icon_background": "#ffc777",
- "theme.bar.buttons.modules.ram.icon": "#ffc777",
- "theme.bar.buttons.modules.ram.text": "#ffc777",
- "theme.bar.buttons.modules.ram.background": "#272a3d",
- "theme.bar.buttons.notifications.total": "#4fd6be",
- "theme.bar.buttons.notifications.icon_background": "#4fd6be",
- "theme.bar.buttons.notifications.icon": "#4fd6be",
- "theme.bar.buttons.notifications.background": "#272a3d",
- "theme.bar.buttons.clock.icon_background": "#fca7ea",
- "theme.bar.buttons.clock.icon": "#fca7ea",
- "theme.bar.buttons.clock.text": "#fca7ea",
- "theme.bar.buttons.clock.background": "#272a3d",
- "theme.bar.buttons.battery.icon_background": "#ffc777",
- "theme.bar.buttons.battery.icon": "#ffc777",
- "theme.bar.buttons.battery.text": "#ffc777",
- "theme.bar.buttons.battery.background": "#272a3d",
- "theme.bar.buttons.systray.background": "#272a3d",
- "theme.bar.buttons.bluetooth.icon_background": "#86e1fc",
- "theme.bar.buttons.bluetooth.icon": "#86e1fc",
- "theme.bar.buttons.bluetooth.text": "#86e1fc",
- "theme.bar.buttons.bluetooth.background": "#272a3d",
- "theme.bar.buttons.network.icon_background": "#c099ff",
- "theme.bar.buttons.network.icon": "#c099ff",
- "theme.bar.buttons.network.text": "#c099ff",
- "theme.bar.buttons.network.background": "#272a3d",
- "theme.bar.buttons.volume.icon_background": "#ff757f",
- "theme.bar.buttons.volume.icon": "#ff757f",
- "theme.bar.buttons.volume.text": "#ff757f",
- "theme.bar.buttons.volume.background": "#272a3d",
- "theme.bar.buttons.media.icon_background": "#c099ff",
- "theme.bar.buttons.media.icon": "#c099ff",
- "theme.bar.buttons.media.text": "#c099ff",
- "theme.bar.buttons.media.background": "#272a3d",
- "theme.bar.buttons.windowtitle.icon_background": "#ff757f",
- "theme.bar.buttons.windowtitle.icon": "#ff757f",
- "theme.bar.buttons.windowtitle.text": "#ff757f",
- "theme.bar.buttons.windowtitle.background": "#272a3d",
- "theme.bar.buttons.workspaces.numbered_active_underline_color": "#c678dd",
- "theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
- "theme.bar.buttons.workspaces.active": "#ff757f",
- "theme.bar.buttons.workspaces.occupied": "#ff757f",
- "theme.bar.buttons.workspaces.available": "#86e1fc",
- "theme.bar.buttons.workspaces.hover": "#ff757f",
- "theme.bar.buttons.workspaces.background": "#272a3d",
- "theme.bar.buttons.dashboard.icon": "#272a3d",
- "theme.bar.buttons.dashboard.background": "#ffc777",
- "theme.bar.buttons.icon": "#242438",
- "theme.bar.buttons.text": "#c099ff",
- "theme.bar.buttons.hover": "#444a73",
- "theme.bar.buttons.icon_background": "#c099ff",
- "theme.bar.buttons.background": "#272a3d",
- "theme.bar.buttons.style": "default",
- "theme.bar.background": "#222436",
- "theme.osd.label": "#c099ff",
- "theme.osd.icon": "#222436",
- "theme.osd.bar_overflow_color": "#ff757f",
- "theme.osd.bar_empty_color": "#444a73",
- "theme.osd.bar_color": "#c099ff",
- "theme.osd.icon_container": "#c099ff",
- "theme.osd.bar_container": "#1e2030",
- "theme.notification.close_button.label": "#222436",
- "theme.notification.close_button.background": "#41a5b5",
- "theme.notification.labelicon": "#41a5b5",
- "theme.notification.text": "#c8d3f5",
- "theme.notification.time": "#9aa5ce",
- "theme.notification.border": "#2f324d",
- "theme.notification.label": "#41a5b5",
- "theme.notification.actions.text": "#24283b",
- "theme.notification.actions.background": "#41a5b5",
- "theme.notification.background": "#222436",
- "theme.bar.buttons.modules.power.border": "#ff757f",
- "theme.bar.buttons.modules.weather.border": "#c099ff",
- "theme.bar.buttons.modules.updates.border": "#ff966c",
- "theme.bar.buttons.modules.kbLayout.border": "#86e1fc",
- "theme.bar.buttons.modules.netstat.border": "#c3e88d",
- "theme.bar.buttons.modules.storage.border": "#ff757f",
- "theme.bar.buttons.modules.cpu.border": "#ff757f",
- "theme.bar.buttons.modules.ram.border": "#ffc777",
- "theme.bar.buttons.notifications.border": "#4fd6be",
- "theme.bar.buttons.clock.border": "#fca7ea",
- "theme.bar.buttons.battery.border": "#ffc777",
- "theme.bar.buttons.systray.border": "#444a73",
- "theme.bar.buttons.bluetooth.border": "#86e1fc",
- "theme.bar.buttons.network.border": "#c099ff",
- "theme.bar.buttons.volume.border": "#ff757f",
- "theme.bar.buttons.media.border": "#c099ff",
- "theme.bar.buttons.windowtitle.border": "#ff757f",
- "theme.bar.buttons.workspaces.border": "#ff757f",
- "theme.bar.buttons.dashboard.border": "#ffc777",
- "theme.bar.buttons.modules.submap.background": "#272a3d",
- "theme.bar.buttons.modules.submap.text": "#4fd6be",
- "theme.bar.buttons.modules.submap.border": "#4fd6be",
- "theme.bar.buttons.modules.submap.icon": "#4fd6be",
- "theme.bar.buttons.modules.submap.icon_background": "#4fd6be",
- "theme.bar.menus.menu.network.switch.enabled": "#c099ff",
- "theme.bar.menus.menu.network.switch.disabled": "#636da6",
- "theme.bar.menus.menu.network.switch.puck": "#636da6",
- "theme.bar.buttons.systray.customIcon": "#c8d3f5",
- "theme.bar.border.color": "#c099ff",
- "theme.bar.menus.menu.media.timestamp": "#c8d3f5",
- "theme.bar.buttons.borderColor": "#c099ff",
- "theme.bar.buttons.modules.hyprsunset.icon": "#ffc777",
- "theme.bar.buttons.modules.hyprsunset.background": "#272a3d",
- "theme.bar.buttons.modules.hyprsunset.icon_background": "#ffc777",
- "theme.bar.buttons.modules.hyprsunset.text": "#ffc777",
- "theme.bar.buttons.modules.hyprsunset.border": "#ffc777",
- "theme.bar.buttons.modules.hypridle.icon": "#0db8d7",
- "theme.bar.buttons.modules.hypridle.background": "#272a3d",
- "theme.bar.buttons.modules.hypridle.icon_background": "#0db8d7",
- "theme.bar.buttons.modules.hypridle.text": "#0db8d7",
- "theme.bar.buttons.modules.hypridle.border": "#0db8d7",
- "theme.bar.menus.menu.network.scroller.color": "#c099ff",
- "theme.bar.menus.menu.bluetooth.scroller.color": "#86e1fc",
- "theme.bar.buttons.notifications.hover": "#504945",
- "theme.bar.buttons.clock.hover": "#504945",
- "theme.bar.buttons.battery.hover": "#504945",
- "theme.bar.buttons.systray.hover": "#504945",
- "theme.bar.buttons.bluetooth.hover": "#504945",
- "theme.bar.buttons.network.hover": "#504945",
- "theme.bar.buttons.volume.hover": "#504945",
- "theme.bar.buttons.media.hover": "#504945",
- "theme.bar.buttons.windowtitle.hover": "#504945",
- "theme.bar.buttons.workspaces.numbered_active_text_color": "#24283b",
- "theme.bar.buttons.dashboard.hover": "#504945",
- "theme.bar.menus.menu.power.card.color": "#2a283e",
- "theme.bar.buttons.modules.cpu.hover": "#45475a",
- "theme.bar.buttons.volume.output_icon": "#11111b",
- "theme.bar.buttons.volume.output_text": "#eba0ac",
- "theme.bar.buttons.volume.input_icon": "#11111b",
- "theme.bar.buttons.volume.input_text": "#eba0ac",
- "theme.bar.buttons.volume.separator": "#45475a",
- "theme.bar.buttons.modules.cpuTemp.icon_background": "#fab387",
- "theme.bar.buttons.modules.cpuTemp.icon": "#fab387",
- "theme.bar.buttons.modules.cpuTemp.text": "#fab387",
- "theme.bar.buttons.modules.cpuTemp.border": "#fab387",
- "theme.osd.border.color": "#8ff0a4",
- "theme.bar.buttons.modules.cava.text": "#4fd6be",
- "theme.bar.buttons.modules.cava.background": "#272a3d",
- "theme.bar.buttons.modules.cava.icon_background": "#4fd6be",
- "theme.bar.buttons.modules.cava.icon": "#4fd6be",
- "theme.bar.buttons.modules.cava.border": "#4fd6be"
-}
+ "theme.bar.menus.menu.notifications.scrollbar.color": "#4fd6be",
+ "theme.bar.menus.menu.notifications.pager.label": "#636da6",
+ "theme.bar.menus.menu.notifications.pager.button": "#4fd6be",
+ "theme.bar.menus.menu.notifications.pager.background": "#222436",
+ "theme.bar.menus.menu.notifications.switch.puck": "#636da6",
+ "theme.bar.menus.menu.notifications.switch.disabled": "#636da6",
+ "theme.bar.menus.menu.notifications.switch.enabled": "#4fd6be",
+ "theme.bar.menus.menu.notifications.clear": "#4fd6be",
+ "theme.bar.menus.menu.notifications.switch_divider": "#444a73",
+ "theme.bar.menus.menu.notifications.border": "#2f324d",
+ "theme.bar.menus.menu.notifications.card": "#24283b",
+ "theme.bar.menus.menu.notifications.background": "#1e2030",
+ "theme.bar.menus.menu.notifications.no_notifications_label": "#444a73",
+ "theme.bar.menus.menu.notifications.label": "#4fd6be",
+ "theme.bar.menus.menu.power.buttons.sleep.icon": "#222436",
+ "theme.bar.menus.menu.power.buttons.sleep.text": "#86e1fc",
+ "theme.bar.menus.menu.power.buttons.sleep.icon_background": "#86e1fc",
+ "theme.bar.menus.menu.power.buttons.sleep.background": "#24283b",
+ "theme.bar.menus.menu.power.buttons.logout.icon": "#222436",
+ "theme.bar.menus.menu.power.buttons.logout.text": "#c3e88d",
+ "theme.bar.menus.menu.power.buttons.logout.icon_background": "#c3e88d",
+ "theme.bar.menus.menu.power.buttons.logout.background": "#24283b",
+ "theme.bar.menus.menu.power.buttons.restart.icon": "#222436",
+ "theme.bar.menus.menu.power.buttons.restart.text": "#ffc777",
+ "theme.bar.menus.menu.power.buttons.restart.icon_background": "#ffc777",
+ "theme.bar.menus.menu.power.buttons.restart.background": "#24283b",
+ "theme.bar.menus.menu.power.buttons.shutdown.icon": "#222436",
+ "theme.bar.menus.menu.power.buttons.shutdown.text": "#ff757f",
+ "theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#ff757f",
+ "theme.bar.menus.menu.power.buttons.shutdown.background": "#24283b",
+ "theme.bar.menus.menu.power.border.color": "#2f324d",
+ "theme.bar.menus.menu.power.background.color": "#1e2030",
+ "theme.bar.menus.menu.dashboard.monitors.disk.label": "#ff757f",
+ "theme.bar.menus.menu.dashboard.monitors.disk.bar": "#ff757f",
+ "theme.bar.menus.menu.dashboard.monitors.disk.icon": "#ff757f",
+ "theme.bar.menus.menu.dashboard.monitors.gpu.label": "#c3e88d",
+ "theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#c3e88d",
+ "theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#c3e88d",
+ "theme.bar.menus.menu.dashboard.monitors.ram.label": "#ffc777",
+ "theme.bar.menus.menu.dashboard.monitors.ram.bar": "#ffc777",
+ "theme.bar.menus.menu.dashboard.monitors.ram.icon": "#ffc777",
+ "theme.bar.menus.menu.dashboard.monitors.cpu.label": "#ff757f",
+ "theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#ff757f",
+ "theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#ff757f",
+ "theme.bar.menus.menu.dashboard.monitors.bar_background": "#444a73",
+ "theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#c099ff",
+ "theme.bar.menus.menu.dashboard.directories.right.middle.color": "#c099ff",
+ "theme.bar.menus.menu.dashboard.directories.right.top.color": "#4fd6be",
+ "theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#ff757f",
+ "theme.bar.menus.menu.dashboard.directories.left.middle.color": "#ffc777",
+ "theme.bar.menus.menu.dashboard.directories.left.top.color": "#ff757f",
+ "theme.bar.menus.menu.dashboard.controls.input.text": "#222436",
+ "theme.bar.menus.menu.dashboard.controls.input.background": "#ff757f",
+ "theme.bar.menus.menu.dashboard.controls.volume.text": "#222436",
+ "theme.bar.menus.menu.dashboard.controls.volume.background": "#ff757f",
+ "theme.bar.menus.menu.dashboard.controls.notifications.text": "#222436",
+ "theme.bar.menus.menu.dashboard.controls.notifications.background": "#ffc777",
+ "theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#222436",
+ "theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#86e1fc",
+ "theme.bar.menus.menu.dashboard.controls.wifi.text": "#222436",
+ "theme.bar.menus.menu.dashboard.controls.wifi.background": "#c099ff",
+ "theme.bar.menus.menu.dashboard.controls.disabled": "#444a73",
+ "theme.bar.menus.menu.dashboard.shortcuts.recording": "#c3e88d",
+ "theme.bar.menus.menu.dashboard.shortcuts.text": "#222436",
+ "theme.bar.menus.menu.dashboard.shortcuts.background": "#c099ff",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#222436",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#ff757f",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#c3e88d",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#c8d3f5",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#c099ff",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#444a73",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#222436",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#24283b",
+ "theme.bar.menus.menu.dashboard.powermenu.sleep": "#86e1fc",
+ "theme.bar.menus.menu.dashboard.powermenu.logout": "#c3e88d",
+ "theme.bar.menus.menu.dashboard.powermenu.restart": "#ffc777",
+ "theme.bar.menus.menu.dashboard.powermenu.shutdown": "#ff757f",
+ "theme.bar.menus.menu.dashboard.profile.name": "#ff757f",
+ "theme.bar.menus.menu.dashboard.border.color": "#2f324d",
+ "theme.bar.menus.menu.dashboard.background.color": "#1e2030",
+ "theme.bar.menus.menu.dashboard.card.color": "#24283b",
+ "theme.bar.menus.menu.clock.weather.hourly.temperature": "#fca7ea",
+ "theme.bar.menus.menu.clock.weather.hourly.icon": "#fca7ea",
+ "theme.bar.menus.menu.clock.weather.hourly.time": "#fca7ea",
+ "theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#86e1fc",
+ "theme.bar.menus.menu.clock.weather.thermometer.cold": "#82aaff",
+ "theme.bar.menus.menu.clock.weather.thermometer.moderate": "#c099ff",
+ "theme.bar.menus.menu.clock.weather.thermometer.hot": "#ffc777",
+ "theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#fca7ea",
+ "theme.bar.menus.menu.clock.weather.stats": "#fca7ea",
+ "theme.bar.menus.menu.clock.weather.status": "#4fd6be",
+ "theme.bar.menus.menu.clock.weather.temperature": "#c8d3f5",
+ "theme.bar.menus.menu.clock.weather.icon": "#fca7ea",
+ "theme.bar.menus.menu.clock.calendar.contextdays": "#444a73",
+ "theme.bar.menus.menu.clock.calendar.days": "#c8d3f5",
+ "theme.bar.menus.menu.clock.calendar.currentday": "#fca7ea",
+ "theme.bar.menus.menu.clock.calendar.paginator": "#fca7ea",
+ "theme.bar.menus.menu.clock.calendar.weekdays": "#fca7ea",
+ "theme.bar.menus.menu.clock.calendar.yearmonth": "#4fd6be",
+ "theme.bar.menus.menu.clock.time.timeperiod": "#4fd6be",
+ "theme.bar.menus.menu.clock.time.time": "#fca7ea",
+ "theme.bar.menus.menu.clock.text": "#c8d3f5",
+ "theme.bar.menus.menu.clock.border.color": "#2f324d",
+ "theme.bar.menus.menu.clock.background.color": "#1e2030",
+ "theme.bar.menus.menu.clock.card.color": "#24283b",
+ "theme.bar.menus.menu.battery.slider.puck": "#636da6",
+ "theme.bar.menus.menu.battery.slider.backgroundhover": "#444a73",
+ "theme.bar.menus.menu.battery.slider.background": "#636da6",
+ "theme.bar.menus.menu.battery.slider.primary": "#ffc777",
+ "theme.bar.menus.menu.battery.icons.active": "#ffc777",
+ "theme.bar.menus.menu.battery.icons.passive": "#636da6",
+ "theme.bar.menus.menu.battery.listitems.active": "#ffc777",
+ "theme.bar.menus.menu.battery.listitems.passive": "#c8d3f5",
+ "theme.bar.menus.menu.battery.text": "#c8d3f5",
+ "theme.bar.menus.menu.battery.label.color": "#ffc777",
+ "theme.bar.menus.menu.battery.border.color": "#2f324d",
+ "theme.bar.menus.menu.battery.background.color": "#1e2030",
+ "theme.bar.menus.menu.battery.card.color": "#24283b",
+ "theme.bar.menus.menu.systray.dropdownmenu.divider": "#24283b",
+ "theme.bar.menus.menu.systray.dropdownmenu.text": "#c8d3f5",
+ "theme.bar.menus.menu.systray.dropdownmenu.background": "#222436",
+ "theme.bar.menus.menu.bluetooth.iconbutton.active": "#86e1fc",
+ "theme.bar.menus.menu.bluetooth.iconbutton.passive": "#c8d3f5",
+ "theme.bar.menus.menu.bluetooth.icons.active": "#86e1fc",
+ "theme.bar.menus.menu.bluetooth.icons.passive": "#636da6",
+ "theme.bar.menus.menu.bluetooth.listitems.active": "#86e1fc",
+ "theme.bar.menus.menu.bluetooth.listitems.passive": "#c8d3f5",
+ "theme.bar.menus.menu.bluetooth.switch.puck": "#636da6",
+ "theme.bar.menus.menu.bluetooth.switch.disabled": "#636da6",
+ "theme.bar.menus.menu.bluetooth.switch.enabled": "#86e1fc",
+ "theme.bar.menus.menu.bluetooth.switch_divider": "#444a73",
+ "theme.bar.menus.menu.bluetooth.status": "#636da6",
+ "theme.bar.menus.menu.bluetooth.text": "#c8d3f5",
+ "theme.bar.menus.menu.bluetooth.label.color": "#86e1fc",
+ "theme.bar.menus.menu.bluetooth.border.color": "#2f324d",
+ "theme.bar.menus.menu.bluetooth.background.color": "#1e2030",
+ "theme.bar.menus.menu.bluetooth.card.color": "#24283b",
+ "theme.bar.menus.menu.network.iconbuttons.active": "#c099ff",
+ "theme.bar.menus.menu.network.iconbuttons.passive": "#c8d3f5",
+ "theme.bar.menus.menu.network.icons.active": "#c099ff",
+ "theme.bar.menus.menu.network.icons.passive": "#636da6",
+ "theme.bar.menus.menu.network.listitems.active": "#c099ff",
+ "theme.bar.menus.menu.network.listitems.passive": "#c8d3f5",
+ "theme.bar.menus.menu.network.status.color": "#636da6",
+ "theme.bar.menus.menu.network.text": "#c8d3f5",
+ "theme.bar.menus.menu.network.label.color": "#c099ff",
+ "theme.bar.menus.menu.network.border.color": "#2f324d",
+ "theme.bar.menus.menu.network.background.color": "#1e2030",
+ "theme.bar.menus.menu.network.card.color": "#24283b",
+ "theme.bar.menus.menu.volume.input_slider.puck": "#444a73",
+ "theme.bar.menus.menu.volume.input_slider.backgroundhover": "#444a73",
+ "theme.bar.menus.menu.volume.input_slider.background": "#636da6",
+ "theme.bar.menus.menu.volume.input_slider.primary": "#ff757f",
+ "theme.bar.menus.menu.volume.audio_slider.puck": "#444a73",
+ "theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#444a73",
+ "theme.bar.menus.menu.volume.audio_slider.background": "#636da6",
+ "theme.bar.menus.menu.volume.audio_slider.primary": "#ff757f",
+ "theme.bar.menus.menu.volume.icons.active": "#ff757f",
+ "theme.bar.menus.menu.volume.icons.passive": "#636da6",
+ "theme.bar.menus.menu.volume.iconbutton.active": "#ff757f",
+ "theme.bar.menus.menu.volume.iconbutton.passive": "#c8d3f5",
+ "theme.bar.menus.menu.volume.listitems.active": "#ff757f",
+ "theme.bar.menus.menu.volume.listitems.passive": "#c8d3f5",
+ "theme.bar.menus.menu.volume.text": "#c8d3f5",
+ "theme.bar.menus.menu.volume.label.color": "#ff757f",
+ "theme.bar.menus.menu.volume.border.color": "#2f324d",
+ "theme.bar.menus.menu.volume.background.color": "#1e2030",
+ "theme.bar.menus.menu.volume.card.color": "#24283b",
+ "theme.bar.menus.menu.media.slider.puck": "#636da6",
+ "theme.bar.menus.menu.media.slider.backgroundhover": "#444a73",
+ "theme.bar.menus.menu.media.slider.background": "#636da6",
+ "theme.bar.menus.menu.media.slider.primary": "#ff757f",
+ "theme.bar.menus.menu.media.buttons.text": "#222436",
+ "theme.bar.menus.menu.media.buttons.background": "#c099ff",
+ "theme.bar.menus.menu.media.buttons.enabled": "#4fd6be",
+ "theme.bar.menus.menu.media.buttons.inactive": "#444a73",
+ "theme.bar.menus.menu.media.border.color": "#2f324d",
+ "theme.bar.menus.menu.media.card.color": "#24283b",
+ "theme.bar.menus.menu.media.background.color": "#1e2030",
+ "theme.bar.menus.menu.media.album": "#ff757f",
+ "theme.bar.menus.menu.media.artist": "#4fd6be",
+ "theme.bar.menus.menu.media.song": "#c099ff",
+ "theme.bar.menus.tooltip.text": "#c8d3f5",
+ "theme.bar.menus.tooltip.background": "#222436",
+ "theme.bar.menus.dropdownmenu.divider": "#24283b",
+ "theme.bar.menus.dropdownmenu.text": "#c8d3f5",
+ "theme.bar.menus.dropdownmenu.background": "#222436",
+ "theme.bar.menus.slider.puck": "#636da6",
+ "theme.bar.menus.slider.backgroundhover": "#444a73",
+ "theme.bar.menus.slider.background": "#636da6",
+ "theme.bar.menus.slider.primary": "#c099ff",
+ "theme.bar.menus.progressbar.background": "#444a73",
+ "theme.bar.menus.progressbar.foreground": "#c099ff",
+ "theme.bar.menus.iconbuttons.active": "#c099ff",
+ "theme.bar.menus.iconbuttons.passive": "#c8d3f5",
+ "theme.bar.menus.buttons.text": "#222436",
+ "theme.bar.menus.buttons.disabled": "#636da6",
+ "theme.bar.menus.buttons.active": "#ff757f",
+ "theme.bar.menus.buttons.default": "#c099ff",
+ "theme.bar.menus.check_radio_button.active": "#c099ff",
+ "theme.bar.menus.check_radio_button.background": "#3b4261",
+ "theme.bar.menus.switch.puck": "#636da6",
+ "theme.bar.menus.switch.disabled": "#636da6",
+ "theme.bar.menus.switch.enabled": "#c099ff",
+ "theme.bar.menus.icons.active": "#c099ff",
+ "theme.bar.menus.icons.passive": "#444a73",
+ "theme.bar.menus.listitems.active": "#c099ff",
+ "theme.bar.menus.listitems.passive": "#c8d3f5",
+ "theme.bar.menus.popover.border": "#222436",
+ "theme.bar.menus.popover.background": "#222436",
+ "theme.bar.menus.popover.text": "#c099ff",
+ "theme.bar.menus.label": "#c099ff",
+ "theme.bar.menus.feinttext": "#444a73",
+ "theme.bar.menus.dimtext": "#444a73",
+ "theme.bar.menus.text": "#c8d3f5",
+ "theme.bar.menus.border.color": "#444a73",
+ "theme.bar.menus.cards": "#24283b",
+ "theme.bar.menus.background": "#222436",
+ "theme.bar.buttons.modules.power.icon_background": "#ff757f",
+ "theme.bar.buttons.modules.power.icon": "#181825",
+ "theme.bar.buttons.modules.power.background": "#272a3d",
+ "theme.bar.buttons.modules.weather.icon_background": "#c099ff",
+ "theme.bar.buttons.modules.weather.icon": "#c099ff",
+ "theme.bar.buttons.modules.weather.text": "#c099ff",
+ "theme.bar.buttons.modules.weather.background": "#272a3d",
+ "theme.bar.buttons.modules.updates.icon_background": "#ff966c",
+ "theme.bar.buttons.modules.updates.icon": "#ff966c",
+ "theme.bar.buttons.modules.updates.text": "#ff966c",
+ "theme.bar.buttons.modules.updates.background": "#272a3d",
+ "theme.bar.buttons.modules.kbLayout.icon_background": "#86e1fc",
+ "theme.bar.buttons.modules.kbLayout.icon": "#86e1fc",
+ "theme.bar.buttons.modules.kbLayout.text": "#86e1fc",
+ "theme.bar.buttons.modules.kbLayout.background": "#272a3d",
+ "theme.bar.buttons.modules.netstat.icon_background": "#c3e88d",
+ "theme.bar.buttons.modules.netstat.icon": "#c3e88d",
+ "theme.bar.buttons.modules.netstat.text": "#c3e88d",
+ "theme.bar.buttons.modules.netstat.background": "#272a3d",
+ "theme.bar.buttons.modules.storage.icon_background": "#ff757f",
+ "theme.bar.buttons.modules.storage.icon": "#ff757f",
+ "theme.bar.buttons.modules.storage.text": "#ff757f",
+ "theme.bar.buttons.modules.storage.background": "#272a3d",
+ "theme.bar.buttons.modules.cpu.icon_background": "#ff757f",
+ "theme.bar.buttons.modules.cpu.icon": "#ff757f",
+ "theme.bar.buttons.modules.cpu.text": "#ff757f",
+ "theme.bar.buttons.modules.cpu.background": "#272a3d",
+ "theme.bar.buttons.modules.ram.icon_background": "#ffc777",
+ "theme.bar.buttons.modules.ram.icon": "#ffc777",
+ "theme.bar.buttons.modules.ram.text": "#ffc777",
+ "theme.bar.buttons.modules.ram.background": "#272a3d",
+ "theme.bar.buttons.notifications.total": "#4fd6be",
+ "theme.bar.buttons.notifications.icon_background": "#4fd6be",
+ "theme.bar.buttons.notifications.icon": "#4fd6be",
+ "theme.bar.buttons.notifications.background": "#272a3d",
+ "theme.bar.buttons.clock.icon_background": "#fca7ea",
+ "theme.bar.buttons.clock.icon": "#fca7ea",
+ "theme.bar.buttons.clock.text": "#fca7ea",
+ "theme.bar.buttons.clock.background": "#272a3d",
+ "theme.bar.buttons.battery.icon_background": "#ffc777",
+ "theme.bar.buttons.battery.icon": "#ffc777",
+ "theme.bar.buttons.battery.text": "#ffc777",
+ "theme.bar.buttons.battery.background": "#272a3d",
+ "theme.bar.buttons.systray.background": "#272a3d",
+ "theme.bar.buttons.bluetooth.icon_background": "#86e1fc",
+ "theme.bar.buttons.bluetooth.icon": "#86e1fc",
+ "theme.bar.buttons.bluetooth.text": "#86e1fc",
+ "theme.bar.buttons.bluetooth.background": "#272a3d",
+ "theme.bar.buttons.network.icon_background": "#c099ff",
+ "theme.bar.buttons.network.icon": "#c099ff",
+ "theme.bar.buttons.network.text": "#c099ff",
+ "theme.bar.buttons.network.background": "#272a3d",
+ "theme.bar.buttons.volume.icon_background": "#ff757f",
+ "theme.bar.buttons.volume.icon": "#ff757f",
+ "theme.bar.buttons.volume.text": "#ff757f",
+ "theme.bar.buttons.volume.background": "#272a3d",
+ "theme.bar.buttons.media.icon_background": "#c099ff",
+ "theme.bar.buttons.media.icon": "#c099ff",
+ "theme.bar.buttons.media.text": "#c099ff",
+ "theme.bar.buttons.media.background": "#272a3d",
+ "theme.bar.buttons.windowtitle.icon_background": "#ff757f",
+ "theme.bar.buttons.windowtitle.icon": "#ff757f",
+ "theme.bar.buttons.windowtitle.text": "#ff757f",
+ "theme.bar.buttons.windowtitle.background": "#272a3d",
+ "theme.bar.buttons.workspaces.numbered_active_underline_color": "#c678dd",
+ "theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
+ "theme.bar.buttons.workspaces.active": "#ff757f",
+ "theme.bar.buttons.workspaces.occupied": "#ff757f",
+ "theme.bar.buttons.workspaces.available": "#86e1fc",
+ "theme.bar.buttons.workspaces.hover": "#ff757f",
+ "theme.bar.buttons.workspaces.background": "#272a3d",
+ "theme.bar.buttons.dashboard.icon": "#272a3d",
+ "theme.bar.buttons.dashboard.background": "#ffc777",
+ "theme.bar.buttons.icon": "#242438",
+ "theme.bar.buttons.text": "#c099ff",
+ "theme.bar.buttons.hover": "#444a73",
+ "theme.bar.buttons.icon_background": "#c099ff",
+ "theme.bar.buttons.background": "#272a3d",
+ "theme.bar.buttons.style": "default",
+ "theme.bar.background": "#222436",
+ "theme.osd.label": "#c099ff",
+ "theme.osd.icon": "#222436",
+ "theme.osd.bar_overflow_color": "#ff757f",
+ "theme.osd.bar_empty_color": "#444a73",
+ "theme.osd.bar_color": "#c099ff",
+ "theme.osd.icon_container": "#c099ff",
+ "theme.osd.bar_container": "#1e2030",
+ "theme.notification.close_button.label": "#222436",
+ "theme.notification.close_button.background": "#41a5b5",
+ "theme.notification.labelicon": "#41a5b5",
+ "theme.notification.text": "#c8d3f5",
+ "theme.notification.time": "#9aa5ce",
+ "theme.notification.border": "#2f324d",
+ "theme.notification.label": "#41a5b5",
+ "theme.notification.actions.text": "#24283b",
+ "theme.notification.actions.background": "#41a5b5",
+ "theme.notification.background": "#222436",
+ "theme.bar.buttons.modules.power.border": "#ff757f",
+ "theme.bar.buttons.modules.weather.border": "#c099ff",
+ "theme.bar.buttons.modules.updates.border": "#ff966c",
+ "theme.bar.buttons.modules.kbLayout.border": "#86e1fc",
+ "theme.bar.buttons.modules.netstat.border": "#c3e88d",
+ "theme.bar.buttons.modules.storage.border": "#ff757f",
+ "theme.bar.buttons.modules.cpu.border": "#ff757f",
+ "theme.bar.buttons.modules.ram.border": "#ffc777",
+ "theme.bar.buttons.notifications.border": "#4fd6be",
+ "theme.bar.buttons.clock.border": "#fca7ea",
+ "theme.bar.buttons.battery.border": "#ffc777",
+ "theme.bar.buttons.systray.border": "#444a73",
+ "theme.bar.buttons.bluetooth.border": "#86e1fc",
+ "theme.bar.buttons.network.border": "#c099ff",
+ "theme.bar.buttons.volume.border": "#ff757f",
+ "theme.bar.buttons.media.border": "#c099ff",
+ "theme.bar.buttons.windowtitle.border": "#ff757f",
+ "theme.bar.buttons.workspaces.border": "#ff757f",
+ "theme.bar.buttons.dashboard.border": "#ffc777",
+ "theme.bar.buttons.modules.submap.background": "#272a3d",
+ "theme.bar.buttons.modules.submap.text": "#4fd6be",
+ "theme.bar.buttons.modules.submap.border": "#4fd6be",
+ "theme.bar.buttons.modules.submap.icon": "#4fd6be",
+ "theme.bar.buttons.modules.submap.icon_background": "#4fd6be",
+ "theme.bar.menus.menu.network.switch.enabled": "#c099ff",
+ "theme.bar.menus.menu.network.switch.disabled": "#636da6",
+ "theme.bar.menus.menu.network.switch.puck": "#636da6",
+ "theme.bar.buttons.systray.customIcon": "#c8d3f5",
+ "theme.bar.border.color": "#c099ff",
+ "theme.bar.menus.menu.media.timestamp": "#c8d3f5",
+ "theme.bar.buttons.borderColor": "#c099ff",
+ "theme.bar.buttons.modules.hyprsunset.icon": "#ffc777",
+ "theme.bar.buttons.modules.hyprsunset.background": "#272a3d",
+ "theme.bar.buttons.modules.hyprsunset.icon_background": "#ffc777",
+ "theme.bar.buttons.modules.hyprsunset.text": "#ffc777",
+ "theme.bar.buttons.modules.hyprsunset.border": "#ffc777",
+ "theme.bar.buttons.modules.hypridle.icon": "#0db8d7",
+ "theme.bar.buttons.modules.hypridle.background": "#272a3d",
+ "theme.bar.buttons.modules.hypridle.icon_background": "#0db8d7",
+ "theme.bar.buttons.modules.hypridle.text": "#0db8d7",
+ "theme.bar.buttons.modules.hypridle.border": "#0db8d7",
+ "theme.bar.menus.menu.network.scroller.color": "#c099ff",
+ "theme.bar.menus.menu.bluetooth.scroller.color": "#86e1fc",
+ "theme.bar.buttons.notifications.hover": "#504945",
+ "theme.bar.buttons.clock.hover": "#504945",
+ "theme.bar.buttons.battery.hover": "#504945",
+ "theme.bar.buttons.systray.hover": "#504945",
+ "theme.bar.buttons.bluetooth.hover": "#504945",
+ "theme.bar.buttons.network.hover": "#504945",
+ "theme.bar.buttons.volume.hover": "#504945",
+ "theme.bar.buttons.media.hover": "#504945",
+ "theme.bar.buttons.windowtitle.hover": "#504945",
+ "theme.bar.buttons.workspaces.numbered_active_text_color": "#24283b",
+ "theme.bar.buttons.dashboard.hover": "#504945",
+ "theme.bar.menus.menu.power.card.color": "#2a283e",
+ "theme.bar.buttons.modules.cpu.hover": "#45475a",
+ "theme.bar.buttons.volume.output_icon": "#11111b",
+ "theme.bar.buttons.volume.output_text": "#eba0ac",
+ "theme.bar.buttons.volume.input_icon": "#11111b",
+ "theme.bar.buttons.volume.input_text": "#eba0ac",
+ "theme.bar.buttons.volume.separator": "#45475a",
+ "theme.bar.buttons.modules.cpuTemp.icon_background": "#fab387",
+ "theme.bar.buttons.modules.cpuTemp.icon": "#fab387",
+ "theme.bar.buttons.modules.cpuTemp.text": "#fab387",
+ "theme.bar.buttons.modules.cpuTemp.border": "#fab387",
+ "theme.osd.border.color": "#8ff0a4",
+ "theme.bar.buttons.modules.cava.text": "#4fd6be",
+ "theme.bar.buttons.modules.cava.background": "#272a3d",
+ "theme.bar.buttons.modules.cava.icon_background": "#4fd6be",
+ "theme.bar.buttons.modules.cava.icon": "#4fd6be",
+ "theme.bar.buttons.modules.cava.border": "#4fd6be",
+ "theme.bar.buttons.modules.microphone.border": "#c3e88d",
+ "theme.bar.buttons.modules.microphone.background": "#272a3d",
+ "theme.bar.buttons.modules.microphone.text": "#c3e88d",
+ "theme.bar.buttons.modules.microphone.icon": "#c3e88d",
+ "theme.bar.buttons.modules.microphone.icon_background": "#272a3d"
+}
\ No newline at end of file
diff --git a/themes/tokyo_night_moon_split.json b/themes/tokyo_night_moon_split.json
index 0d5043b..d67f954 100644
--- a/themes/tokyo_night_moon_split.json
+++ b/themes/tokyo_night_moon_split.json
@@ -1,389 +1,393 @@
{
- "theme.bar.menus.menu.notifications.scrollbar.color": "#4fd6be",
- "theme.bar.menus.menu.notifications.pager.label": "#636da6",
- "theme.bar.menus.menu.notifications.pager.button": "#4fd6be",
- "theme.bar.menus.menu.notifications.pager.background": "#222436",
- "theme.bar.menus.menu.notifications.switch.puck": "#636da6",
- "theme.bar.menus.menu.notifications.switch.disabled": "#636da6",
- "theme.bar.menus.menu.notifications.switch.enabled": "#4fd6be",
- "theme.bar.menus.menu.notifications.clear": "#4fd6be",
- "theme.bar.menus.menu.notifications.switch_divider": "#444a73",
- "theme.bar.menus.menu.notifications.border": "#2f324d",
- "theme.bar.menus.menu.notifications.card": "#24283b",
- "theme.bar.menus.menu.notifications.background": "#1e2030",
- "theme.bar.menus.menu.notifications.no_notifications_label": "#444a73",
- "theme.bar.menus.menu.notifications.label": "#4fd6be",
- "theme.bar.menus.menu.power.buttons.sleep.icon": "#222436",
- "theme.bar.menus.menu.power.buttons.sleep.text": "#86e1fc",
- "theme.bar.menus.menu.power.buttons.sleep.icon_background": "#86e1fc",
- "theme.bar.menus.menu.power.buttons.sleep.background": "#24283b",
- "theme.bar.menus.menu.power.buttons.logout.icon": "#222436",
- "theme.bar.menus.menu.power.buttons.logout.text": "#c3e88d",
- "theme.bar.menus.menu.power.buttons.logout.icon_background": "#c3e88d",
- "theme.bar.menus.menu.power.buttons.logout.background": "#24283b",
- "theme.bar.menus.menu.power.buttons.restart.icon": "#222436",
- "theme.bar.menus.menu.power.buttons.restart.text": "#ffc777",
- "theme.bar.menus.menu.power.buttons.restart.icon_background": "#ffc777",
- "theme.bar.menus.menu.power.buttons.restart.background": "#24283b",
- "theme.bar.menus.menu.power.buttons.shutdown.icon": "#222436",
- "theme.bar.menus.menu.power.buttons.shutdown.text": "#ff757f",
- "theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#ff757f",
- "theme.bar.menus.menu.power.buttons.shutdown.background": "#24283b",
- "theme.bar.menus.menu.power.border.color": "#2f324d",
- "theme.bar.menus.menu.power.background.color": "#1e2030",
- "theme.bar.menus.menu.dashboard.monitors.disk.label": "#ff757f",
- "theme.bar.menus.menu.dashboard.monitors.disk.bar": "#ff757f",
- "theme.bar.menus.menu.dashboard.monitors.disk.icon": "#ff757f",
- "theme.bar.menus.menu.dashboard.monitors.gpu.label": "#c3e88d",
- "theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#c3e88d",
- "theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#c3e88d",
- "theme.bar.menus.menu.dashboard.monitors.ram.label": "#ffc777",
- "theme.bar.menus.menu.dashboard.monitors.ram.bar": "#ffc777",
- "theme.bar.menus.menu.dashboard.monitors.ram.icon": "#ffc777",
- "theme.bar.menus.menu.dashboard.monitors.cpu.label": "#ff757f",
- "theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#ff757f",
- "theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#ff757f",
- "theme.bar.menus.menu.dashboard.monitors.bar_background": "#444a73",
- "theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#c099ff",
- "theme.bar.menus.menu.dashboard.directories.right.middle.color": "#c099ff",
- "theme.bar.menus.menu.dashboard.directories.right.top.color": "#4fd6be",
- "theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#ff757f",
- "theme.bar.menus.menu.dashboard.directories.left.middle.color": "#ffc777",
- "theme.bar.menus.menu.dashboard.directories.left.top.color": "#ff757f",
- "theme.bar.menus.menu.dashboard.controls.input.text": "#222436",
- "theme.bar.menus.menu.dashboard.controls.input.background": "#ff757f",
- "theme.bar.menus.menu.dashboard.controls.volume.text": "#222436",
- "theme.bar.menus.menu.dashboard.controls.volume.background": "#ff757f",
- "theme.bar.menus.menu.dashboard.controls.notifications.text": "#222436",
- "theme.bar.menus.menu.dashboard.controls.notifications.background": "#ffc777",
- "theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#222436",
- "theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#86e1fc",
- "theme.bar.menus.menu.dashboard.controls.wifi.text": "#222436",
- "theme.bar.menus.menu.dashboard.controls.wifi.background": "#c099ff",
- "theme.bar.menus.menu.dashboard.controls.disabled": "#444a73",
- "theme.bar.menus.menu.dashboard.shortcuts.recording": "#c3e88d",
- "theme.bar.menus.menu.dashboard.shortcuts.text": "#222436",
- "theme.bar.menus.menu.dashboard.shortcuts.background": "#c099ff",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#222436",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#ff757f",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#c3e88d",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#c8d3f5",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#c099ff",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#444a73",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#222436",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#24283b",
- "theme.bar.menus.menu.dashboard.powermenu.sleep": "#86e1fc",
- "theme.bar.menus.menu.dashboard.powermenu.logout": "#c3e88d",
- "theme.bar.menus.menu.dashboard.powermenu.restart": "#ffc777",
- "theme.bar.menus.menu.dashboard.powermenu.shutdown": "#ff757f",
- "theme.bar.menus.menu.dashboard.profile.name": "#ff757f",
- "theme.bar.menus.menu.dashboard.border.color": "#2f324d",
- "theme.bar.menus.menu.dashboard.background.color": "#1e2030",
- "theme.bar.menus.menu.dashboard.card.color": "#24283b",
- "theme.bar.menus.menu.clock.weather.hourly.temperature": "#fca7ea",
- "theme.bar.menus.menu.clock.weather.hourly.icon": "#fca7ea",
- "theme.bar.menus.menu.clock.weather.hourly.time": "#fca7ea",
- "theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#86e1fc",
- "theme.bar.menus.menu.clock.weather.thermometer.cold": "#82aaff",
- "theme.bar.menus.menu.clock.weather.thermometer.moderate": "#c099ff",
- "theme.bar.menus.menu.clock.weather.thermometer.hot": "#ffc777",
- "theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#fca7ea",
- "theme.bar.menus.menu.clock.weather.stats": "#fca7ea",
- "theme.bar.menus.menu.clock.weather.status": "#4fd6be",
- "theme.bar.menus.menu.clock.weather.temperature": "#c8d3f5",
- "theme.bar.menus.menu.clock.weather.icon": "#fca7ea",
- "theme.bar.menus.menu.clock.calendar.contextdays": "#444a73",
- "theme.bar.menus.menu.clock.calendar.days": "#c8d3f5",
- "theme.bar.menus.menu.clock.calendar.currentday": "#fca7ea",
- "theme.bar.menus.menu.clock.calendar.paginator": "#fca7ea",
- "theme.bar.menus.menu.clock.calendar.weekdays": "#fca7ea",
- "theme.bar.menus.menu.clock.calendar.yearmonth": "#4fd6be",
- "theme.bar.menus.menu.clock.time.timeperiod": "#4fd6be",
- "theme.bar.menus.menu.clock.time.time": "#fca7ea",
- "theme.bar.menus.menu.clock.text": "#c8d3f5",
- "theme.bar.menus.menu.clock.border.color": "#2f324d",
- "theme.bar.menus.menu.clock.background.color": "#1e2030",
- "theme.bar.menus.menu.clock.card.color": "#24283b",
- "theme.bar.menus.menu.battery.slider.puck": "#636da6",
- "theme.bar.menus.menu.battery.slider.backgroundhover": "#444a73",
- "theme.bar.menus.menu.battery.slider.background": "#636da6",
- "theme.bar.menus.menu.battery.slider.primary": "#ffc777",
- "theme.bar.menus.menu.battery.icons.active": "#ffc777",
- "theme.bar.menus.menu.battery.icons.passive": "#636da6",
- "theme.bar.menus.menu.battery.listitems.active": "#ffc777",
- "theme.bar.menus.menu.battery.listitems.passive": "#c8d3f5",
- "theme.bar.menus.menu.battery.text": "#c8d3f5",
- "theme.bar.menus.menu.battery.label.color": "#ffc777",
- "theme.bar.menus.menu.battery.border.color": "#2f324d",
- "theme.bar.menus.menu.battery.background.color": "#1e2030",
- "theme.bar.menus.menu.battery.card.color": "#24283b",
- "theme.bar.menus.menu.systray.dropdownmenu.divider": "#24283b",
- "theme.bar.menus.menu.systray.dropdownmenu.text": "#c8d3f5",
- "theme.bar.menus.menu.systray.dropdownmenu.background": "#222436",
- "theme.bar.menus.menu.bluetooth.iconbutton.active": "#86e1fc",
- "theme.bar.menus.menu.bluetooth.iconbutton.passive": "#c8d3f5",
- "theme.bar.menus.menu.bluetooth.icons.active": "#86e1fc",
- "theme.bar.menus.menu.bluetooth.icons.passive": "#636da6",
- "theme.bar.menus.menu.bluetooth.listitems.active": "#86e1fc",
- "theme.bar.menus.menu.bluetooth.listitems.passive": "#c8d3f5",
- "theme.bar.menus.menu.bluetooth.switch.puck": "#636da6",
- "theme.bar.menus.menu.bluetooth.switch.disabled": "#636da6",
- "theme.bar.menus.menu.bluetooth.switch.enabled": "#86e1fc",
- "theme.bar.menus.menu.bluetooth.switch_divider": "#444a73",
- "theme.bar.menus.menu.bluetooth.status": "#636da6",
- "theme.bar.menus.menu.bluetooth.text": "#c8d3f5",
- "theme.bar.menus.menu.bluetooth.label.color": "#86e1fc",
- "theme.bar.menus.menu.bluetooth.border.color": "#2f324d",
- "theme.bar.menus.menu.bluetooth.background.color": "#1e2030",
- "theme.bar.menus.menu.bluetooth.card.color": "#24283b",
- "theme.bar.menus.menu.network.iconbuttons.active": "#c099ff",
- "theme.bar.menus.menu.network.iconbuttons.passive": "#c8d3f5",
- "theme.bar.menus.menu.network.icons.active": "#c099ff",
- "theme.bar.menus.menu.network.icons.passive": "#636da6",
- "theme.bar.menus.menu.network.listitems.active": "#c099ff",
- "theme.bar.menus.menu.network.listitems.passive": "#c8d3f5",
- "theme.bar.menus.menu.network.status.color": "#636da6",
- "theme.bar.menus.menu.network.text": "#c8d3f5",
- "theme.bar.menus.menu.network.label.color": "#c099ff",
- "theme.bar.menus.menu.network.border.color": "#2f324d",
- "theme.bar.menus.menu.network.background.color": "#1e2030",
- "theme.bar.menus.menu.network.card.color": "#24283b",
- "theme.bar.menus.menu.volume.input_slider.puck": "#444a73",
- "theme.bar.menus.menu.volume.input_slider.backgroundhover": "#444a73",
- "theme.bar.menus.menu.volume.input_slider.background": "#636da6",
- "theme.bar.menus.menu.volume.input_slider.primary": "#ff757f",
- "theme.bar.menus.menu.volume.audio_slider.puck": "#444a73",
- "theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#444a73",
- "theme.bar.menus.menu.volume.audio_slider.background": "#636da6",
- "theme.bar.menus.menu.volume.audio_slider.primary": "#ff757f",
- "theme.bar.menus.menu.volume.icons.active": "#ff757f",
- "theme.bar.menus.menu.volume.icons.passive": "#636da6",
- "theme.bar.menus.menu.volume.iconbutton.active": "#ff757f",
- "theme.bar.menus.menu.volume.iconbutton.passive": "#c8d3f5",
- "theme.bar.menus.menu.volume.listitems.active": "#ff757f",
- "theme.bar.menus.menu.volume.listitems.passive": "#c8d3f5",
- "theme.bar.menus.menu.volume.text": "#c8d3f5",
- "theme.bar.menus.menu.volume.label.color": "#ff757f",
- "theme.bar.menus.menu.volume.border.color": "#2f324d",
- "theme.bar.menus.menu.volume.background.color": "#1e2030",
- "theme.bar.menus.menu.volume.card.color": "#24283b",
- "theme.bar.menus.menu.media.slider.puck": "#636da6",
- "theme.bar.menus.menu.media.slider.backgroundhover": "#444a73",
- "theme.bar.menus.menu.media.slider.background": "#636da6",
- "theme.bar.menus.menu.media.slider.primary": "#ff757f",
- "theme.bar.menus.menu.media.buttons.text": "#222436",
- "theme.bar.menus.menu.media.buttons.background": "#c099ff",
- "theme.bar.menus.menu.media.buttons.enabled": "#4fd6be",
- "theme.bar.menus.menu.media.buttons.inactive": "#444a73",
- "theme.bar.menus.menu.media.border.color": "#2f324d",
- "theme.bar.menus.menu.media.card.color": "#24283b",
- "theme.bar.menus.menu.media.background.color": "#1e2030",
- "theme.bar.menus.menu.media.album": "#ff757f",
- "theme.bar.menus.menu.media.artist": "#4fd6be",
- "theme.bar.menus.menu.media.song": "#c099ff",
- "theme.bar.menus.tooltip.text": "#c8d3f5",
- "theme.bar.menus.tooltip.background": "#222436",
- "theme.bar.menus.dropdownmenu.divider": "#24283b",
- "theme.bar.menus.dropdownmenu.text": "#c8d3f5",
- "theme.bar.menus.dropdownmenu.background": "#222436",
- "theme.bar.menus.slider.puck": "#636da6",
- "theme.bar.menus.slider.backgroundhover": "#444a73",
- "theme.bar.menus.slider.background": "#636da6",
- "theme.bar.menus.slider.primary": "#c099ff",
- "theme.bar.menus.progressbar.background": "#444a73",
- "theme.bar.menus.progressbar.foreground": "#c099ff",
- "theme.bar.menus.iconbuttons.active": "#c099ff",
- "theme.bar.menus.iconbuttons.passive": "#c8d3f5",
- "theme.bar.menus.buttons.text": "#222436",
- "theme.bar.menus.buttons.disabled": "#636da6",
- "theme.bar.menus.buttons.active": "#ff757f",
- "theme.bar.menus.buttons.default": "#c099ff",
- "theme.bar.menus.check_radio_button.active": "#c099ff",
- "theme.bar.menus.check_radio_button.background": "#3b4261",
- "theme.bar.menus.switch.puck": "#636da6",
- "theme.bar.menus.switch.disabled": "#636da6",
- "theme.bar.menus.switch.enabled": "#c099ff",
- "theme.bar.menus.icons.active": "#c099ff",
- "theme.bar.menus.icons.passive": "#444a73",
- "theme.bar.menus.listitems.active": "#c099ff",
- "theme.bar.menus.listitems.passive": "#c8d3f5",
- "theme.bar.menus.popover.border": "#222436",
- "theme.bar.menus.popover.background": "#222436",
- "theme.bar.menus.popover.text": "#c099ff",
- "theme.bar.menus.label": "#c099ff",
- "theme.bar.menus.feinttext": "#444a73",
- "theme.bar.menus.dimtext": "#444a73",
- "theme.bar.menus.text": "#c8d3f5",
- "theme.bar.menus.border.color": "#444a73",
- "theme.bar.menus.cards": "#24283b",
- "theme.bar.menus.background": "#222436",
- "theme.bar.buttons.modules.power.icon_background": "#ff757f",
- "theme.bar.buttons.modules.power.icon": "#181825",
- "theme.bar.buttons.modules.power.background": "#272a3d",
- "theme.bar.buttons.modules.weather.icon_background": "#c099ff",
- "theme.bar.buttons.modules.weather.icon": "#272a3d",
- "theme.bar.buttons.modules.weather.text": "#c099ff",
- "theme.bar.buttons.modules.weather.background": "#272a3d",
- "theme.bar.buttons.modules.updates.icon_background": "#ff966c",
- "theme.bar.buttons.modules.updates.icon": "#181825",
- "theme.bar.buttons.modules.updates.text": "#ff966c",
- "theme.bar.buttons.modules.updates.background": "#272a3d",
- "theme.bar.buttons.modules.kbLayout.icon_background": "#86e1fc",
- "theme.bar.buttons.modules.kbLayout.icon": "#181825",
- "theme.bar.buttons.modules.kbLayout.text": "#86e1fc",
- "theme.bar.buttons.modules.kbLayout.background": "#272a3d",
- "theme.bar.buttons.modules.netstat.icon_background": "#c3e88d",
- "theme.bar.buttons.modules.netstat.icon": "#181825",
- "theme.bar.buttons.modules.netstat.text": "#c3e88d",
- "theme.bar.buttons.modules.netstat.background": "#272a3d",
- "theme.bar.buttons.modules.storage.icon_background": "#ff757f",
- "theme.bar.buttons.modules.storage.icon": "#181825",
- "theme.bar.buttons.modules.storage.text": "#ff757f",
- "theme.bar.buttons.modules.storage.background": "#272a3d",
- "theme.bar.buttons.modules.cpu.icon_background": "#ff757f",
- "theme.bar.buttons.modules.cpu.icon": "#181825",
- "theme.bar.buttons.modules.cpu.text": "#ff757f",
- "theme.bar.buttons.modules.cpu.background": "#272a3d",
- "theme.bar.buttons.modules.ram.icon_background": "#ffc777",
- "theme.bar.buttons.modules.ram.icon": "#181825",
- "theme.bar.buttons.modules.ram.text": "#ffc777",
- "theme.bar.buttons.modules.ram.background": "#272a3d",
- "theme.bar.buttons.notifications.total": "#4fd6be",
- "theme.bar.buttons.notifications.icon_background": "#4fd6be",
- "theme.bar.buttons.notifications.icon": "#272a3d",
- "theme.bar.buttons.notifications.background": "#272a3d",
- "theme.bar.buttons.clock.icon_background": "#fca7ea",
- "theme.bar.buttons.clock.icon": "#272a3d",
- "theme.bar.buttons.clock.text": "#fca7ea",
- "theme.bar.buttons.clock.background": "#272a3d",
- "theme.bar.buttons.battery.icon_background": "#ffc777",
- "theme.bar.buttons.battery.icon": "#272a3d",
- "theme.bar.buttons.battery.text": "#ffc777",
- "theme.bar.buttons.battery.background": "#272a3d",
- "theme.bar.buttons.systray.background": "#272a3d",
- "theme.bar.buttons.bluetooth.icon_background": "#86e1fc",
- "theme.bar.buttons.bluetooth.icon": "#272a3d",
- "theme.bar.buttons.bluetooth.text": "#86e1fc",
- "theme.bar.buttons.bluetooth.background": "#272a3d",
- "theme.bar.buttons.network.icon_background": "#c099ff",
- "theme.bar.buttons.network.icon": "#272a3d",
- "theme.bar.buttons.network.text": "#c099ff",
- "theme.bar.buttons.network.background": "#272a3d",
- "theme.bar.buttons.volume.icon_background": "#ff757f",
- "theme.bar.buttons.volume.icon": "#272a3d",
- "theme.bar.buttons.volume.text": "#ff757f",
- "theme.bar.buttons.volume.background": "#272a3d",
- "theme.bar.buttons.media.icon_background": "#c099ff",
- "theme.bar.buttons.media.icon": "#272a3d",
- "theme.bar.buttons.media.text": "#c099ff",
- "theme.bar.buttons.media.background": "#272a3d",
- "theme.bar.buttons.windowtitle.icon_background": "#ff757f",
- "theme.bar.buttons.windowtitle.icon": "#272a3d",
- "theme.bar.buttons.windowtitle.text": "#ff757f",
- "theme.bar.buttons.windowtitle.background": "#272a3d",
- "theme.bar.buttons.workspaces.numbered_active_underline_color": "#c678dd",
- "theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
- "theme.bar.buttons.workspaces.active": "#ff757f",
- "theme.bar.buttons.workspaces.occupied": "#ff757f",
- "theme.bar.buttons.workspaces.available": "#86e1fc",
- "theme.bar.buttons.workspaces.hover": "#ff757f",
- "theme.bar.buttons.workspaces.background": "#272a3d",
- "theme.bar.buttons.dashboard.icon": "#272a3d",
- "theme.bar.buttons.dashboard.background": "#ffc777",
- "theme.bar.buttons.icon": "#242438",
- "theme.bar.buttons.text": "#c099ff",
- "theme.bar.buttons.hover": "#444a73",
- "theme.bar.buttons.icon_background": "#c099ff",
- "theme.bar.buttons.background": "#272a3d",
- "theme.bar.buttons.style": "split",
- "theme.bar.background": "#222436",
- "theme.osd.label": "#c099ff",
- "theme.osd.icon": "#222436",
- "theme.osd.bar_overflow_color": "#ff757f",
- "theme.osd.bar_empty_color": "#444a73",
- "theme.osd.bar_color": "#c099ff",
- "theme.osd.icon_container": "#c099ff",
- "theme.osd.bar_container": "#1e2030",
- "theme.notification.close_button.label": "#222436",
- "theme.notification.close_button.background": "#41a5b5",
- "theme.notification.labelicon": "#41a5b5",
- "theme.notification.text": "#c8d3f5",
- "theme.notification.time": "#9aa5ce",
- "theme.notification.border": "#2f324d",
- "theme.notification.label": "#41a5b5",
- "theme.notification.actions.text": "#24283b",
- "theme.notification.actions.background": "#41a5b5",
- "theme.notification.background": "#222436",
- "theme.bar.buttons.modules.power.border": "#ff757f",
- "theme.bar.buttons.modules.weather.border": "#c099ff",
- "theme.bar.buttons.modules.updates.border": "#ff966c",
- "theme.bar.buttons.modules.kbLayout.border": "#86e1fc",
- "theme.bar.buttons.modules.netstat.border": "#c3e88d",
- "theme.bar.buttons.modules.storage.border": "#ff757f",
- "theme.bar.buttons.modules.cpu.border": "#ff757f",
- "theme.bar.buttons.modules.ram.border": "#ffc777",
- "theme.bar.buttons.notifications.border": "#4fd6be",
- "theme.bar.buttons.clock.border": "#fca7ea",
- "theme.bar.buttons.battery.border": "#ffc777",
- "theme.bar.buttons.systray.border": "#444a73",
- "theme.bar.buttons.bluetooth.border": "#86e1fc",
- "theme.bar.buttons.network.border": "#c099ff",
- "theme.bar.buttons.volume.border": "#ff757f",
- "theme.bar.buttons.media.border": "#c099ff",
- "theme.bar.buttons.windowtitle.border": "#ff757f",
- "theme.bar.buttons.workspaces.border": "#ff757f",
- "theme.bar.buttons.dashboard.border": "#ffc777",
- "theme.bar.buttons.modules.submap.background": "#272a3d",
- "theme.bar.buttons.modules.submap.text": "#4fd6be",
- "theme.bar.buttons.modules.submap.border": "#4fd6be",
- "theme.bar.buttons.modules.submap.icon": "#181825",
- "theme.bar.buttons.modules.submap.icon_background": "#4fd6be",
- "theme.bar.menus.menu.network.switch.enabled": "#c099ff",
- "theme.bar.menus.menu.network.switch.disabled": "#636da6",
- "theme.bar.menus.menu.network.switch.puck": "#636da6",
- "theme.bar.buttons.systray.customIcon": "#c8d3f5",
- "theme.bar.border.color": "#c099ff",
- "theme.bar.menus.menu.media.timestamp": "#c8d3f5",
- "theme.bar.buttons.borderColor": "#c099ff",
- "theme.bar.buttons.modules.hyprsunset.icon": "#181825",
- "theme.bar.buttons.modules.hyprsunset.background": "#272a3d",
- "theme.bar.buttons.modules.hyprsunset.icon_background": "#ffc777",
- "theme.bar.buttons.modules.hyprsunset.text": "#ffc777",
- "theme.bar.buttons.modules.hyprsunset.border": "#ffc777",
- "theme.bar.buttons.modules.hypridle.icon": "#181825",
- "theme.bar.buttons.modules.hypridle.background": "#272a3d",
- "theme.bar.buttons.modules.hypridle.icon_background": "#0db8d7",
- "theme.bar.buttons.modules.hypridle.text": "#0db8d7",
- "theme.bar.buttons.modules.hypridle.border": "#0db8d7",
- "theme.bar.menus.menu.network.scroller.color": "#c099ff",
- "theme.bar.menus.menu.bluetooth.scroller.color": "#86e1fc",
- "theme.bar.buttons.notifications.hover": "#504945",
- "theme.bar.buttons.clock.hover": "#504945",
- "theme.bar.buttons.battery.hover": "#504945",
- "theme.bar.buttons.systray.hover": "#504945",
- "theme.bar.buttons.bluetooth.hover": "#504945",
- "theme.bar.buttons.network.hover": "#504945",
- "theme.bar.buttons.volume.hover": "#504945",
- "theme.bar.buttons.media.hover": "#504945",
- "theme.bar.buttons.windowtitle.hover": "#504945",
- "theme.bar.buttons.workspaces.numbered_active_text_color": "#24283b",
- "theme.bar.buttons.dashboard.hover": "#504945",
- "theme.bar.menus.menu.power.card.color": "#2a283e",
- "theme.bar.buttons.modules.cpu.hover": "#45475a",
- "theme.bar.buttons.volume.output_icon": "#11111b",
- "theme.bar.buttons.volume.output_text": "#eba0ac",
- "theme.bar.buttons.volume.input_icon": "#11111b",
- "theme.bar.buttons.volume.input_text": "#eba0ac",
- "theme.bar.buttons.volume.separator": "#45475a",
- "theme.bar.buttons.modules.cpuTemp.icon_background": "#fab387",
- "theme.bar.buttons.modules.cpuTemp.icon": "#181824",
- "theme.bar.buttons.modules.cpuTemp.text": "#fab387",
- "theme.bar.buttons.modules.cpuTemp.border": "#fab387",
- "theme.osd.border.color": "#8ff0a4",
- "theme.bar.buttons.modules.cava.text": "#4fd6be",
- "theme.bar.buttons.modules.cava.background": "#272a3d",
- "theme.bar.buttons.modules.cava.icon_background": "#4fd6be",
- "theme.bar.buttons.modules.cava.icon": "#181825",
- "theme.bar.buttons.modules.cava.border": "#4fd6be"
-}
-
+ "theme.bar.menus.menu.notifications.scrollbar.color": "#4fd6be",
+ "theme.bar.menus.menu.notifications.pager.label": "#636da6",
+ "theme.bar.menus.menu.notifications.pager.button": "#4fd6be",
+ "theme.bar.menus.menu.notifications.pager.background": "#222436",
+ "theme.bar.menus.menu.notifications.switch.puck": "#636da6",
+ "theme.bar.menus.menu.notifications.switch.disabled": "#636da6",
+ "theme.bar.menus.menu.notifications.switch.enabled": "#4fd6be",
+ "theme.bar.menus.menu.notifications.clear": "#4fd6be",
+ "theme.bar.menus.menu.notifications.switch_divider": "#444a73",
+ "theme.bar.menus.menu.notifications.border": "#2f324d",
+ "theme.bar.menus.menu.notifications.card": "#24283b",
+ "theme.bar.menus.menu.notifications.background": "#1e2030",
+ "theme.bar.menus.menu.notifications.no_notifications_label": "#444a73",
+ "theme.bar.menus.menu.notifications.label": "#4fd6be",
+ "theme.bar.menus.menu.power.buttons.sleep.icon": "#222436",
+ "theme.bar.menus.menu.power.buttons.sleep.text": "#86e1fc",
+ "theme.bar.menus.menu.power.buttons.sleep.icon_background": "#86e1fc",
+ "theme.bar.menus.menu.power.buttons.sleep.background": "#24283b",
+ "theme.bar.menus.menu.power.buttons.logout.icon": "#222436",
+ "theme.bar.menus.menu.power.buttons.logout.text": "#c3e88d",
+ "theme.bar.menus.menu.power.buttons.logout.icon_background": "#c3e88d",
+ "theme.bar.menus.menu.power.buttons.logout.background": "#24283b",
+ "theme.bar.menus.menu.power.buttons.restart.icon": "#222436",
+ "theme.bar.menus.menu.power.buttons.restart.text": "#ffc777",
+ "theme.bar.menus.menu.power.buttons.restart.icon_background": "#ffc777",
+ "theme.bar.menus.menu.power.buttons.restart.background": "#24283b",
+ "theme.bar.menus.menu.power.buttons.shutdown.icon": "#222436",
+ "theme.bar.menus.menu.power.buttons.shutdown.text": "#ff757f",
+ "theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#ff757f",
+ "theme.bar.menus.menu.power.buttons.shutdown.background": "#24283b",
+ "theme.bar.menus.menu.power.border.color": "#2f324d",
+ "theme.bar.menus.menu.power.background.color": "#1e2030",
+ "theme.bar.menus.menu.dashboard.monitors.disk.label": "#ff757f",
+ "theme.bar.menus.menu.dashboard.monitors.disk.bar": "#ff757f",
+ "theme.bar.menus.menu.dashboard.monitors.disk.icon": "#ff757f",
+ "theme.bar.menus.menu.dashboard.monitors.gpu.label": "#c3e88d",
+ "theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#c3e88d",
+ "theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#c3e88d",
+ "theme.bar.menus.menu.dashboard.monitors.ram.label": "#ffc777",
+ "theme.bar.menus.menu.dashboard.monitors.ram.bar": "#ffc777",
+ "theme.bar.menus.menu.dashboard.monitors.ram.icon": "#ffc777",
+ "theme.bar.menus.menu.dashboard.monitors.cpu.label": "#ff757f",
+ "theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#ff757f",
+ "theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#ff757f",
+ "theme.bar.menus.menu.dashboard.monitors.bar_background": "#444a73",
+ "theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#c099ff",
+ "theme.bar.menus.menu.dashboard.directories.right.middle.color": "#c099ff",
+ "theme.bar.menus.menu.dashboard.directories.right.top.color": "#4fd6be",
+ "theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#ff757f",
+ "theme.bar.menus.menu.dashboard.directories.left.middle.color": "#ffc777",
+ "theme.bar.menus.menu.dashboard.directories.left.top.color": "#ff757f",
+ "theme.bar.menus.menu.dashboard.controls.input.text": "#222436",
+ "theme.bar.menus.menu.dashboard.controls.input.background": "#ff757f",
+ "theme.bar.menus.menu.dashboard.controls.volume.text": "#222436",
+ "theme.bar.menus.menu.dashboard.controls.volume.background": "#ff757f",
+ "theme.bar.menus.menu.dashboard.controls.notifications.text": "#222436",
+ "theme.bar.menus.menu.dashboard.controls.notifications.background": "#ffc777",
+ "theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#222436",
+ "theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#86e1fc",
+ "theme.bar.menus.menu.dashboard.controls.wifi.text": "#222436",
+ "theme.bar.menus.menu.dashboard.controls.wifi.background": "#c099ff",
+ "theme.bar.menus.menu.dashboard.controls.disabled": "#444a73",
+ "theme.bar.menus.menu.dashboard.shortcuts.recording": "#c3e88d",
+ "theme.bar.menus.menu.dashboard.shortcuts.text": "#222436",
+ "theme.bar.menus.menu.dashboard.shortcuts.background": "#c099ff",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#222436",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#ff757f",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#c3e88d",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#c8d3f5",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#c099ff",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#444a73",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#222436",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#24283b",
+ "theme.bar.menus.menu.dashboard.powermenu.sleep": "#86e1fc",
+ "theme.bar.menus.menu.dashboard.powermenu.logout": "#c3e88d",
+ "theme.bar.menus.menu.dashboard.powermenu.restart": "#ffc777",
+ "theme.bar.menus.menu.dashboard.powermenu.shutdown": "#ff757f",
+ "theme.bar.menus.menu.dashboard.profile.name": "#ff757f",
+ "theme.bar.menus.menu.dashboard.border.color": "#2f324d",
+ "theme.bar.menus.menu.dashboard.background.color": "#1e2030",
+ "theme.bar.menus.menu.dashboard.card.color": "#24283b",
+ "theme.bar.menus.menu.clock.weather.hourly.temperature": "#fca7ea",
+ "theme.bar.menus.menu.clock.weather.hourly.icon": "#fca7ea",
+ "theme.bar.menus.menu.clock.weather.hourly.time": "#fca7ea",
+ "theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#86e1fc",
+ "theme.bar.menus.menu.clock.weather.thermometer.cold": "#82aaff",
+ "theme.bar.menus.menu.clock.weather.thermometer.moderate": "#c099ff",
+ "theme.bar.menus.menu.clock.weather.thermometer.hot": "#ffc777",
+ "theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#fca7ea",
+ "theme.bar.menus.menu.clock.weather.stats": "#fca7ea",
+ "theme.bar.menus.menu.clock.weather.status": "#4fd6be",
+ "theme.bar.menus.menu.clock.weather.temperature": "#c8d3f5",
+ "theme.bar.menus.menu.clock.weather.icon": "#fca7ea",
+ "theme.bar.menus.menu.clock.calendar.contextdays": "#444a73",
+ "theme.bar.menus.menu.clock.calendar.days": "#c8d3f5",
+ "theme.bar.menus.menu.clock.calendar.currentday": "#fca7ea",
+ "theme.bar.menus.menu.clock.calendar.paginator": "#fca7ea",
+ "theme.bar.menus.menu.clock.calendar.weekdays": "#fca7ea",
+ "theme.bar.menus.menu.clock.calendar.yearmonth": "#4fd6be",
+ "theme.bar.menus.menu.clock.time.timeperiod": "#4fd6be",
+ "theme.bar.menus.menu.clock.time.time": "#fca7ea",
+ "theme.bar.menus.menu.clock.text": "#c8d3f5",
+ "theme.bar.menus.menu.clock.border.color": "#2f324d",
+ "theme.bar.menus.menu.clock.background.color": "#1e2030",
+ "theme.bar.menus.menu.clock.card.color": "#24283b",
+ "theme.bar.menus.menu.battery.slider.puck": "#636da6",
+ "theme.bar.menus.menu.battery.slider.backgroundhover": "#444a73",
+ "theme.bar.menus.menu.battery.slider.background": "#636da6",
+ "theme.bar.menus.menu.battery.slider.primary": "#ffc777",
+ "theme.bar.menus.menu.battery.icons.active": "#ffc777",
+ "theme.bar.menus.menu.battery.icons.passive": "#636da6",
+ "theme.bar.menus.menu.battery.listitems.active": "#ffc777",
+ "theme.bar.menus.menu.battery.listitems.passive": "#c8d3f5",
+ "theme.bar.menus.menu.battery.text": "#c8d3f5",
+ "theme.bar.menus.menu.battery.label.color": "#ffc777",
+ "theme.bar.menus.menu.battery.border.color": "#2f324d",
+ "theme.bar.menus.menu.battery.background.color": "#1e2030",
+ "theme.bar.menus.menu.battery.card.color": "#24283b",
+ "theme.bar.menus.menu.systray.dropdownmenu.divider": "#24283b",
+ "theme.bar.menus.menu.systray.dropdownmenu.text": "#c8d3f5",
+ "theme.bar.menus.menu.systray.dropdownmenu.background": "#222436",
+ "theme.bar.menus.menu.bluetooth.iconbutton.active": "#86e1fc",
+ "theme.bar.menus.menu.bluetooth.iconbutton.passive": "#c8d3f5",
+ "theme.bar.menus.menu.bluetooth.icons.active": "#86e1fc",
+ "theme.bar.menus.menu.bluetooth.icons.passive": "#636da6",
+ "theme.bar.menus.menu.bluetooth.listitems.active": "#86e1fc",
+ "theme.bar.menus.menu.bluetooth.listitems.passive": "#c8d3f5",
+ "theme.bar.menus.menu.bluetooth.switch.puck": "#636da6",
+ "theme.bar.menus.menu.bluetooth.switch.disabled": "#636da6",
+ "theme.bar.menus.menu.bluetooth.switch.enabled": "#86e1fc",
+ "theme.bar.menus.menu.bluetooth.switch_divider": "#444a73",
+ "theme.bar.menus.menu.bluetooth.status": "#636da6",
+ "theme.bar.menus.menu.bluetooth.text": "#c8d3f5",
+ "theme.bar.menus.menu.bluetooth.label.color": "#86e1fc",
+ "theme.bar.menus.menu.bluetooth.border.color": "#2f324d",
+ "theme.bar.menus.menu.bluetooth.background.color": "#1e2030",
+ "theme.bar.menus.menu.bluetooth.card.color": "#24283b",
+ "theme.bar.menus.menu.network.iconbuttons.active": "#c099ff",
+ "theme.bar.menus.menu.network.iconbuttons.passive": "#c8d3f5",
+ "theme.bar.menus.menu.network.icons.active": "#c099ff",
+ "theme.bar.menus.menu.network.icons.passive": "#636da6",
+ "theme.bar.menus.menu.network.listitems.active": "#c099ff",
+ "theme.bar.menus.menu.network.listitems.passive": "#c8d3f5",
+ "theme.bar.menus.menu.network.status.color": "#636da6",
+ "theme.bar.menus.menu.network.text": "#c8d3f5",
+ "theme.bar.menus.menu.network.label.color": "#c099ff",
+ "theme.bar.menus.menu.network.border.color": "#2f324d",
+ "theme.bar.menus.menu.network.background.color": "#1e2030",
+ "theme.bar.menus.menu.network.card.color": "#24283b",
+ "theme.bar.menus.menu.volume.input_slider.puck": "#444a73",
+ "theme.bar.menus.menu.volume.input_slider.backgroundhover": "#444a73",
+ "theme.bar.menus.menu.volume.input_slider.background": "#636da6",
+ "theme.bar.menus.menu.volume.input_slider.primary": "#ff757f",
+ "theme.bar.menus.menu.volume.audio_slider.puck": "#444a73",
+ "theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#444a73",
+ "theme.bar.menus.menu.volume.audio_slider.background": "#636da6",
+ "theme.bar.menus.menu.volume.audio_slider.primary": "#ff757f",
+ "theme.bar.menus.menu.volume.icons.active": "#ff757f",
+ "theme.bar.menus.menu.volume.icons.passive": "#636da6",
+ "theme.bar.menus.menu.volume.iconbutton.active": "#ff757f",
+ "theme.bar.menus.menu.volume.iconbutton.passive": "#c8d3f5",
+ "theme.bar.menus.menu.volume.listitems.active": "#ff757f",
+ "theme.bar.menus.menu.volume.listitems.passive": "#c8d3f5",
+ "theme.bar.menus.menu.volume.text": "#c8d3f5",
+ "theme.bar.menus.menu.volume.label.color": "#ff757f",
+ "theme.bar.menus.menu.volume.border.color": "#2f324d",
+ "theme.bar.menus.menu.volume.background.color": "#1e2030",
+ "theme.bar.menus.menu.volume.card.color": "#24283b",
+ "theme.bar.menus.menu.media.slider.puck": "#636da6",
+ "theme.bar.menus.menu.media.slider.backgroundhover": "#444a73",
+ "theme.bar.menus.menu.media.slider.background": "#636da6",
+ "theme.bar.menus.menu.media.slider.primary": "#ff757f",
+ "theme.bar.menus.menu.media.buttons.text": "#222436",
+ "theme.bar.menus.menu.media.buttons.background": "#c099ff",
+ "theme.bar.menus.menu.media.buttons.enabled": "#4fd6be",
+ "theme.bar.menus.menu.media.buttons.inactive": "#444a73",
+ "theme.bar.menus.menu.media.border.color": "#2f324d",
+ "theme.bar.menus.menu.media.card.color": "#24283b",
+ "theme.bar.menus.menu.media.background.color": "#1e2030",
+ "theme.bar.menus.menu.media.album": "#ff757f",
+ "theme.bar.menus.menu.media.artist": "#4fd6be",
+ "theme.bar.menus.menu.media.song": "#c099ff",
+ "theme.bar.menus.tooltip.text": "#c8d3f5",
+ "theme.bar.menus.tooltip.background": "#222436",
+ "theme.bar.menus.dropdownmenu.divider": "#24283b",
+ "theme.bar.menus.dropdownmenu.text": "#c8d3f5",
+ "theme.bar.menus.dropdownmenu.background": "#222436",
+ "theme.bar.menus.slider.puck": "#636da6",
+ "theme.bar.menus.slider.backgroundhover": "#444a73",
+ "theme.bar.menus.slider.background": "#636da6",
+ "theme.bar.menus.slider.primary": "#c099ff",
+ "theme.bar.menus.progressbar.background": "#444a73",
+ "theme.bar.menus.progressbar.foreground": "#c099ff",
+ "theme.bar.menus.iconbuttons.active": "#c099ff",
+ "theme.bar.menus.iconbuttons.passive": "#c8d3f5",
+ "theme.bar.menus.buttons.text": "#222436",
+ "theme.bar.menus.buttons.disabled": "#636da6",
+ "theme.bar.menus.buttons.active": "#ff757f",
+ "theme.bar.menus.buttons.default": "#c099ff",
+ "theme.bar.menus.check_radio_button.active": "#c099ff",
+ "theme.bar.menus.check_radio_button.background": "#3b4261",
+ "theme.bar.menus.switch.puck": "#636da6",
+ "theme.bar.menus.switch.disabled": "#636da6",
+ "theme.bar.menus.switch.enabled": "#c099ff",
+ "theme.bar.menus.icons.active": "#c099ff",
+ "theme.bar.menus.icons.passive": "#444a73",
+ "theme.bar.menus.listitems.active": "#c099ff",
+ "theme.bar.menus.listitems.passive": "#c8d3f5",
+ "theme.bar.menus.popover.border": "#222436",
+ "theme.bar.menus.popover.background": "#222436",
+ "theme.bar.menus.popover.text": "#c099ff",
+ "theme.bar.menus.label": "#c099ff",
+ "theme.bar.menus.feinttext": "#444a73",
+ "theme.bar.menus.dimtext": "#444a73",
+ "theme.bar.menus.text": "#c8d3f5",
+ "theme.bar.menus.border.color": "#444a73",
+ "theme.bar.menus.cards": "#24283b",
+ "theme.bar.menus.background": "#222436",
+ "theme.bar.buttons.modules.power.icon_background": "#ff757f",
+ "theme.bar.buttons.modules.power.icon": "#181825",
+ "theme.bar.buttons.modules.power.background": "#272a3d",
+ "theme.bar.buttons.modules.weather.icon_background": "#c099ff",
+ "theme.bar.buttons.modules.weather.icon": "#272a3d",
+ "theme.bar.buttons.modules.weather.text": "#c099ff",
+ "theme.bar.buttons.modules.weather.background": "#272a3d",
+ "theme.bar.buttons.modules.updates.icon_background": "#ff966c",
+ "theme.bar.buttons.modules.updates.icon": "#181825",
+ "theme.bar.buttons.modules.updates.text": "#ff966c",
+ "theme.bar.buttons.modules.updates.background": "#272a3d",
+ "theme.bar.buttons.modules.kbLayout.icon_background": "#86e1fc",
+ "theme.bar.buttons.modules.kbLayout.icon": "#181825",
+ "theme.bar.buttons.modules.kbLayout.text": "#86e1fc",
+ "theme.bar.buttons.modules.kbLayout.background": "#272a3d",
+ "theme.bar.buttons.modules.netstat.icon_background": "#c3e88d",
+ "theme.bar.buttons.modules.netstat.icon": "#181825",
+ "theme.bar.buttons.modules.netstat.text": "#c3e88d",
+ "theme.bar.buttons.modules.netstat.background": "#272a3d",
+ "theme.bar.buttons.modules.storage.icon_background": "#ff757f",
+ "theme.bar.buttons.modules.storage.icon": "#181825",
+ "theme.bar.buttons.modules.storage.text": "#ff757f",
+ "theme.bar.buttons.modules.storage.background": "#272a3d",
+ "theme.bar.buttons.modules.cpu.icon_background": "#ff757f",
+ "theme.bar.buttons.modules.cpu.icon": "#181825",
+ "theme.bar.buttons.modules.cpu.text": "#ff757f",
+ "theme.bar.buttons.modules.cpu.background": "#272a3d",
+ "theme.bar.buttons.modules.ram.icon_background": "#ffc777",
+ "theme.bar.buttons.modules.ram.icon": "#181825",
+ "theme.bar.buttons.modules.ram.text": "#ffc777",
+ "theme.bar.buttons.modules.ram.background": "#272a3d",
+ "theme.bar.buttons.notifications.total": "#4fd6be",
+ "theme.bar.buttons.notifications.icon_background": "#4fd6be",
+ "theme.bar.buttons.notifications.icon": "#272a3d",
+ "theme.bar.buttons.notifications.background": "#272a3d",
+ "theme.bar.buttons.clock.icon_background": "#fca7ea",
+ "theme.bar.buttons.clock.icon": "#272a3d",
+ "theme.bar.buttons.clock.text": "#fca7ea",
+ "theme.bar.buttons.clock.background": "#272a3d",
+ "theme.bar.buttons.battery.icon_background": "#ffc777",
+ "theme.bar.buttons.battery.icon": "#272a3d",
+ "theme.bar.buttons.battery.text": "#ffc777",
+ "theme.bar.buttons.battery.background": "#272a3d",
+ "theme.bar.buttons.systray.background": "#272a3d",
+ "theme.bar.buttons.bluetooth.icon_background": "#86e1fc",
+ "theme.bar.buttons.bluetooth.icon": "#272a3d",
+ "theme.bar.buttons.bluetooth.text": "#86e1fc",
+ "theme.bar.buttons.bluetooth.background": "#272a3d",
+ "theme.bar.buttons.network.icon_background": "#c099ff",
+ "theme.bar.buttons.network.icon": "#272a3d",
+ "theme.bar.buttons.network.text": "#c099ff",
+ "theme.bar.buttons.network.background": "#272a3d",
+ "theme.bar.buttons.volume.icon_background": "#ff757f",
+ "theme.bar.buttons.volume.icon": "#272a3d",
+ "theme.bar.buttons.volume.text": "#ff757f",
+ "theme.bar.buttons.volume.background": "#272a3d",
+ "theme.bar.buttons.media.icon_background": "#c099ff",
+ "theme.bar.buttons.media.icon": "#272a3d",
+ "theme.bar.buttons.media.text": "#c099ff",
+ "theme.bar.buttons.media.background": "#272a3d",
+ "theme.bar.buttons.windowtitle.icon_background": "#ff757f",
+ "theme.bar.buttons.windowtitle.icon": "#272a3d",
+ "theme.bar.buttons.windowtitle.text": "#ff757f",
+ "theme.bar.buttons.windowtitle.background": "#272a3d",
+ "theme.bar.buttons.workspaces.numbered_active_underline_color": "#c678dd",
+ "theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
+ "theme.bar.buttons.workspaces.active": "#ff757f",
+ "theme.bar.buttons.workspaces.occupied": "#ff757f",
+ "theme.bar.buttons.workspaces.available": "#86e1fc",
+ "theme.bar.buttons.workspaces.hover": "#ff757f",
+ "theme.bar.buttons.workspaces.background": "#272a3d",
+ "theme.bar.buttons.dashboard.icon": "#272a3d",
+ "theme.bar.buttons.dashboard.background": "#ffc777",
+ "theme.bar.buttons.icon": "#242438",
+ "theme.bar.buttons.text": "#c099ff",
+ "theme.bar.buttons.hover": "#444a73",
+ "theme.bar.buttons.icon_background": "#c099ff",
+ "theme.bar.buttons.background": "#272a3d",
+ "theme.bar.buttons.style": "split",
+ "theme.bar.background": "#222436",
+ "theme.osd.label": "#c099ff",
+ "theme.osd.icon": "#222436",
+ "theme.osd.bar_overflow_color": "#ff757f",
+ "theme.osd.bar_empty_color": "#444a73",
+ "theme.osd.bar_color": "#c099ff",
+ "theme.osd.icon_container": "#c099ff",
+ "theme.osd.bar_container": "#1e2030",
+ "theme.notification.close_button.label": "#222436",
+ "theme.notification.close_button.background": "#41a5b5",
+ "theme.notification.labelicon": "#41a5b5",
+ "theme.notification.text": "#c8d3f5",
+ "theme.notification.time": "#9aa5ce",
+ "theme.notification.border": "#2f324d",
+ "theme.notification.label": "#41a5b5",
+ "theme.notification.actions.text": "#24283b",
+ "theme.notification.actions.background": "#41a5b5",
+ "theme.notification.background": "#222436",
+ "theme.bar.buttons.modules.power.border": "#ff757f",
+ "theme.bar.buttons.modules.weather.border": "#c099ff",
+ "theme.bar.buttons.modules.updates.border": "#ff966c",
+ "theme.bar.buttons.modules.kbLayout.border": "#86e1fc",
+ "theme.bar.buttons.modules.netstat.border": "#c3e88d",
+ "theme.bar.buttons.modules.storage.border": "#ff757f",
+ "theme.bar.buttons.modules.cpu.border": "#ff757f",
+ "theme.bar.buttons.modules.ram.border": "#ffc777",
+ "theme.bar.buttons.notifications.border": "#4fd6be",
+ "theme.bar.buttons.clock.border": "#fca7ea",
+ "theme.bar.buttons.battery.border": "#ffc777",
+ "theme.bar.buttons.systray.border": "#444a73",
+ "theme.bar.buttons.bluetooth.border": "#86e1fc",
+ "theme.bar.buttons.network.border": "#c099ff",
+ "theme.bar.buttons.volume.border": "#ff757f",
+ "theme.bar.buttons.media.border": "#c099ff",
+ "theme.bar.buttons.windowtitle.border": "#ff757f",
+ "theme.bar.buttons.workspaces.border": "#ff757f",
+ "theme.bar.buttons.dashboard.border": "#ffc777",
+ "theme.bar.buttons.modules.submap.background": "#272a3d",
+ "theme.bar.buttons.modules.submap.text": "#4fd6be",
+ "theme.bar.buttons.modules.submap.border": "#4fd6be",
+ "theme.bar.buttons.modules.submap.icon": "#181825",
+ "theme.bar.buttons.modules.submap.icon_background": "#4fd6be",
+ "theme.bar.menus.menu.network.switch.enabled": "#c099ff",
+ "theme.bar.menus.menu.network.switch.disabled": "#636da6",
+ "theme.bar.menus.menu.network.switch.puck": "#636da6",
+ "theme.bar.buttons.systray.customIcon": "#c8d3f5",
+ "theme.bar.border.color": "#c099ff",
+ "theme.bar.menus.menu.media.timestamp": "#c8d3f5",
+ "theme.bar.buttons.borderColor": "#c099ff",
+ "theme.bar.buttons.modules.hyprsunset.icon": "#181825",
+ "theme.bar.buttons.modules.hyprsunset.background": "#272a3d",
+ "theme.bar.buttons.modules.hyprsunset.icon_background": "#ffc777",
+ "theme.bar.buttons.modules.hyprsunset.text": "#ffc777",
+ "theme.bar.buttons.modules.hyprsunset.border": "#ffc777",
+ "theme.bar.buttons.modules.hypridle.icon": "#181825",
+ "theme.bar.buttons.modules.hypridle.background": "#272a3d",
+ "theme.bar.buttons.modules.hypridle.icon_background": "#0db8d7",
+ "theme.bar.buttons.modules.hypridle.text": "#0db8d7",
+ "theme.bar.buttons.modules.hypridle.border": "#0db8d7",
+ "theme.bar.menus.menu.network.scroller.color": "#c099ff",
+ "theme.bar.menus.menu.bluetooth.scroller.color": "#86e1fc",
+ "theme.bar.buttons.notifications.hover": "#504945",
+ "theme.bar.buttons.clock.hover": "#504945",
+ "theme.bar.buttons.battery.hover": "#504945",
+ "theme.bar.buttons.systray.hover": "#504945",
+ "theme.bar.buttons.bluetooth.hover": "#504945",
+ "theme.bar.buttons.network.hover": "#504945",
+ "theme.bar.buttons.volume.hover": "#504945",
+ "theme.bar.buttons.media.hover": "#504945",
+ "theme.bar.buttons.windowtitle.hover": "#504945",
+ "theme.bar.buttons.workspaces.numbered_active_text_color": "#24283b",
+ "theme.bar.buttons.dashboard.hover": "#504945",
+ "theme.bar.menus.menu.power.card.color": "#2a283e",
+ "theme.bar.buttons.modules.cpu.hover": "#45475a",
+ "theme.bar.buttons.volume.output_icon": "#11111b",
+ "theme.bar.buttons.volume.output_text": "#eba0ac",
+ "theme.bar.buttons.volume.input_icon": "#11111b",
+ "theme.bar.buttons.volume.input_text": "#eba0ac",
+ "theme.bar.buttons.volume.separator": "#45475a",
+ "theme.bar.buttons.modules.cpuTemp.icon_background": "#fab387",
+ "theme.bar.buttons.modules.cpuTemp.icon": "#181824",
+ "theme.bar.buttons.modules.cpuTemp.text": "#fab387",
+ "theme.bar.buttons.modules.cpuTemp.border": "#fab387",
+ "theme.osd.border.color": "#8ff0a4",
+ "theme.bar.buttons.modules.cava.text": "#4fd6be",
+ "theme.bar.buttons.modules.cava.background": "#272a3d",
+ "theme.bar.buttons.modules.cava.icon_background": "#4fd6be",
+ "theme.bar.buttons.modules.cava.icon": "#181825",
+ "theme.bar.buttons.modules.cava.border": "#4fd6be",
+ "theme.bar.buttons.modules.microphone.border": "#c3e88d",
+ "theme.bar.buttons.modules.microphone.background": "#272a3d",
+ "theme.bar.buttons.modules.microphone.text": "#c3e88d",
+ "theme.bar.buttons.modules.microphone.icon": "#272a3d",
+ "theme.bar.buttons.modules.microphone.icon_background": "#c3e88d"
+}
\ No newline at end of file
diff --git a/themes/tokyo_night_moon_vivid.json b/themes/tokyo_night_moon_vivid.json
index 73bdd31..857fd6d 100644
--- a/themes/tokyo_night_moon_vivid.json
+++ b/themes/tokyo_night_moon_vivid.json
@@ -1,388 +1,393 @@
{
- "theme.bar.menus.menu.notifications.scrollbar.color": "#4fd6be",
- "theme.bar.menus.menu.notifications.pager.label": "#636da6",
- "theme.bar.menus.menu.notifications.pager.button": "#4fd6be",
- "theme.bar.menus.menu.notifications.pager.background": "#222436",
- "theme.bar.menus.menu.notifications.switch.puck": "#636da6",
- "theme.bar.menus.menu.notifications.switch.disabled": "#636da6",
- "theme.bar.menus.menu.notifications.switch.enabled": "#4fd6be",
- "theme.bar.menus.menu.notifications.clear": "#4fd6be",
- "theme.bar.menus.menu.notifications.switch_divider": "#444a73",
- "theme.bar.menus.menu.notifications.border": "#2f324d",
- "theme.bar.menus.menu.notifications.card": "#24283b",
- "theme.bar.menus.menu.notifications.background": "#1e2030",
- "theme.bar.menus.menu.notifications.no_notifications_label": "#444a73",
- "theme.bar.menus.menu.notifications.label": "#4fd6be",
- "theme.bar.menus.menu.power.buttons.sleep.icon": "#222436",
- "theme.bar.menus.menu.power.buttons.sleep.text": "#86e1fc",
- "theme.bar.menus.menu.power.buttons.sleep.icon_background": "#86e1fc",
- "theme.bar.menus.menu.power.buttons.sleep.background": "#24283b",
- "theme.bar.menus.menu.power.buttons.logout.icon": "#222436",
- "theme.bar.menus.menu.power.buttons.logout.text": "#c3e88d",
- "theme.bar.menus.menu.power.buttons.logout.icon_background": "#c3e88d",
- "theme.bar.menus.menu.power.buttons.logout.background": "#24283b",
- "theme.bar.menus.menu.power.buttons.restart.icon": "#222436",
- "theme.bar.menus.menu.power.buttons.restart.text": "#ffc777",
- "theme.bar.menus.menu.power.buttons.restart.icon_background": "#ffc777",
- "theme.bar.menus.menu.power.buttons.restart.background": "#24283b",
- "theme.bar.menus.menu.power.buttons.shutdown.icon": "#222436",
- "theme.bar.menus.menu.power.buttons.shutdown.text": "#ff757f",
- "theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#ff757f",
- "theme.bar.menus.menu.power.buttons.shutdown.background": "#24283b",
- "theme.bar.menus.menu.power.border.color": "#2f324d",
- "theme.bar.menus.menu.power.background.color": "#1e2030",
- "theme.bar.menus.menu.dashboard.monitors.disk.label": "#ff757f",
- "theme.bar.menus.menu.dashboard.monitors.disk.bar": "#ff757f",
- "theme.bar.menus.menu.dashboard.monitors.disk.icon": "#ff757f",
- "theme.bar.menus.menu.dashboard.monitors.gpu.label": "#c3e88d",
- "theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#c3e88d",
- "theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#c3e88d",
- "theme.bar.menus.menu.dashboard.monitors.ram.label": "#ffc777",
- "theme.bar.menus.menu.dashboard.monitors.ram.bar": "#ffc777",
- "theme.bar.menus.menu.dashboard.monitors.ram.icon": "#ffc777",
- "theme.bar.menus.menu.dashboard.monitors.cpu.label": "#ff757f",
- "theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#ff757f",
- "theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#ff757f",
- "theme.bar.menus.menu.dashboard.monitors.bar_background": "#444a73",
- "theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#c099ff",
- "theme.bar.menus.menu.dashboard.directories.right.middle.color": "#c099ff",
- "theme.bar.menus.menu.dashboard.directories.right.top.color": "#4fd6be",
- "theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#ff757f",
- "theme.bar.menus.menu.dashboard.directories.left.middle.color": "#ffc777",
- "theme.bar.menus.menu.dashboard.directories.left.top.color": "#ff757f",
- "theme.bar.menus.menu.dashboard.controls.input.text": "#222436",
- "theme.bar.menus.menu.dashboard.controls.input.background": "#ff757f",
- "theme.bar.menus.menu.dashboard.controls.volume.text": "#222436",
- "theme.bar.menus.menu.dashboard.controls.volume.background": "#ff757f",
- "theme.bar.menus.menu.dashboard.controls.notifications.text": "#222436",
- "theme.bar.menus.menu.dashboard.controls.notifications.background": "#ffc777",
- "theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#222436",
- "theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#86e1fc",
- "theme.bar.menus.menu.dashboard.controls.wifi.text": "#222436",
- "theme.bar.menus.menu.dashboard.controls.wifi.background": "#c099ff",
- "theme.bar.menus.menu.dashboard.controls.disabled": "#444a73",
- "theme.bar.menus.menu.dashboard.shortcuts.recording": "#c3e88d",
- "theme.bar.menus.menu.dashboard.shortcuts.text": "#222436",
- "theme.bar.menus.menu.dashboard.shortcuts.background": "#c099ff",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#222436",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#ff757f",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#c3e88d",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#c8d3f5",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#c099ff",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#444a73",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#222436",
- "theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#24283b",
- "theme.bar.menus.menu.dashboard.powermenu.sleep": "#86e1fc",
- "theme.bar.menus.menu.dashboard.powermenu.logout": "#c3e88d",
- "theme.bar.menus.menu.dashboard.powermenu.restart": "#ffc777",
- "theme.bar.menus.menu.dashboard.powermenu.shutdown": "#ff757f",
- "theme.bar.menus.menu.dashboard.profile.name": "#ff757f",
- "theme.bar.menus.menu.dashboard.border.color": "#2f324d",
- "theme.bar.menus.menu.dashboard.background.color": "#1e2030",
- "theme.bar.menus.menu.dashboard.card.color": "#24283b",
- "theme.bar.menus.menu.clock.weather.hourly.temperature": "#fca7ea",
- "theme.bar.menus.menu.clock.weather.hourly.icon": "#fca7ea",
- "theme.bar.menus.menu.clock.weather.hourly.time": "#fca7ea",
- "theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#86e1fc",
- "theme.bar.menus.menu.clock.weather.thermometer.cold": "#82aaff",
- "theme.bar.menus.menu.clock.weather.thermometer.moderate": "#c099ff",
- "theme.bar.menus.menu.clock.weather.thermometer.hot": "#ffc777",
- "theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#fca7ea",
- "theme.bar.menus.menu.clock.weather.stats": "#fca7ea",
- "theme.bar.menus.menu.clock.weather.status": "#4fd6be",
- "theme.bar.menus.menu.clock.weather.temperature": "#c8d3f5",
- "theme.bar.menus.menu.clock.weather.icon": "#fca7ea",
- "theme.bar.menus.menu.clock.calendar.contextdays": "#444a73",
- "theme.bar.menus.menu.clock.calendar.days": "#c8d3f5",
- "theme.bar.menus.menu.clock.calendar.currentday": "#fca7ea",
- "theme.bar.menus.menu.clock.calendar.paginator": "#fca7ea",
- "theme.bar.menus.menu.clock.calendar.weekdays": "#fca7ea",
- "theme.bar.menus.menu.clock.calendar.yearmonth": "#4fd6be",
- "theme.bar.menus.menu.clock.time.timeperiod": "#4fd6be",
- "theme.bar.menus.menu.clock.time.time": "#fca7ea",
- "theme.bar.menus.menu.clock.text": "#c8d3f5",
- "theme.bar.menus.menu.clock.border.color": "#2f324d",
- "theme.bar.menus.menu.clock.background.color": "#1e2030",
- "theme.bar.menus.menu.clock.card.color": "#24283b",
- "theme.bar.menus.menu.battery.slider.puck": "#636da6",
- "theme.bar.menus.menu.battery.slider.backgroundhover": "#444a73",
- "theme.bar.menus.menu.battery.slider.background": "#636da6",
- "theme.bar.menus.menu.battery.slider.primary": "#ffc777",
- "theme.bar.menus.menu.battery.icons.active": "#ffc777",
- "theme.bar.menus.menu.battery.icons.passive": "#636da6",
- "theme.bar.menus.menu.battery.listitems.active": "#ffc777",
- "theme.bar.menus.menu.battery.listitems.passive": "#c8d3f5",
- "theme.bar.menus.menu.battery.text": "#c8d3f5",
- "theme.bar.menus.menu.battery.label.color": "#ffc777",
- "theme.bar.menus.menu.battery.border.color": "#2f324d",
- "theme.bar.menus.menu.battery.background.color": "#1e2030",
- "theme.bar.menus.menu.battery.card.color": "#24283b",
- "theme.bar.menus.menu.systray.dropdownmenu.divider": "#24283b",
- "theme.bar.menus.menu.systray.dropdownmenu.text": "#c8d3f5",
- "theme.bar.menus.menu.systray.dropdownmenu.background": "#222436",
- "theme.bar.menus.menu.bluetooth.iconbutton.active": "#86e1fc",
- "theme.bar.menus.menu.bluetooth.iconbutton.passive": "#c8d3f5",
- "theme.bar.menus.menu.bluetooth.icons.active": "#86e1fc",
- "theme.bar.menus.menu.bluetooth.icons.passive": "#636da6",
- "theme.bar.menus.menu.bluetooth.listitems.active": "#86e1fc",
- "theme.bar.menus.menu.bluetooth.listitems.passive": "#c8d3f5",
- "theme.bar.menus.menu.bluetooth.switch.puck": "#636da6",
- "theme.bar.menus.menu.bluetooth.switch.disabled": "#636da6",
- "theme.bar.menus.menu.bluetooth.switch.enabled": "#86e1fc",
- "theme.bar.menus.menu.bluetooth.switch_divider": "#444a73",
- "theme.bar.menus.menu.bluetooth.status": "#636da6",
- "theme.bar.menus.menu.bluetooth.text": "#c8d3f5",
- "theme.bar.menus.menu.bluetooth.label.color": "#86e1fc",
- "theme.bar.menus.menu.bluetooth.border.color": "#2f324d",
- "theme.bar.menus.menu.bluetooth.background.color": "#1e2030",
- "theme.bar.menus.menu.bluetooth.card.color": "#24283b",
- "theme.bar.menus.menu.network.iconbuttons.active": "#c099ff",
- "theme.bar.menus.menu.network.iconbuttons.passive": "#c8d3f5",
- "theme.bar.menus.menu.network.icons.active": "#c099ff",
- "theme.bar.menus.menu.network.icons.passive": "#636da6",
- "theme.bar.menus.menu.network.listitems.active": "#c099ff",
- "theme.bar.menus.menu.network.listitems.passive": "#c8d3f5",
- "theme.bar.menus.menu.network.status.color": "#636da6",
- "theme.bar.menus.menu.network.text": "#c8d3f5",
- "theme.bar.menus.menu.network.label.color": "#c099ff",
- "theme.bar.menus.menu.network.border.color": "#2f324d",
- "theme.bar.menus.menu.network.background.color": "#1e2030",
- "theme.bar.menus.menu.network.card.color": "#24283b",
- "theme.bar.menus.menu.volume.input_slider.puck": "#444a73",
- "theme.bar.menus.menu.volume.input_slider.backgroundhover": "#444a73",
- "theme.bar.menus.menu.volume.input_slider.background": "#636da6",
- "theme.bar.menus.menu.volume.input_slider.primary": "#ff757f",
- "theme.bar.menus.menu.volume.audio_slider.puck": "#444a73",
- "theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#444a73",
- "theme.bar.menus.menu.volume.audio_slider.background": "#636da6",
- "theme.bar.menus.menu.volume.audio_slider.primary": "#ff757f",
- "theme.bar.menus.menu.volume.icons.active": "#ff757f",
- "theme.bar.menus.menu.volume.icons.passive": "#636da6",
- "theme.bar.menus.menu.volume.iconbutton.active": "#ff757f",
- "theme.bar.menus.menu.volume.iconbutton.passive": "#c8d3f5",
- "theme.bar.menus.menu.volume.listitems.active": "#ff757f",
- "theme.bar.menus.menu.volume.listitems.passive": "#c8d3f5",
- "theme.bar.menus.menu.volume.text": "#c8d3f5",
- "theme.bar.menus.menu.volume.label.color": "#ff757f",
- "theme.bar.menus.menu.volume.border.color": "#2f324d",
- "theme.bar.menus.menu.volume.background.color": "#1e2030",
- "theme.bar.menus.menu.volume.card.color": "#24283b",
- "theme.bar.menus.menu.media.slider.puck": "#636da6",
- "theme.bar.menus.menu.media.slider.backgroundhover": "#444a73",
- "theme.bar.menus.menu.media.slider.background": "#636da6",
- "theme.bar.menus.menu.media.slider.primary": "#ff757f",
- "theme.bar.menus.menu.media.buttons.text": "#222436",
- "theme.bar.menus.menu.media.buttons.background": "#c099ff",
- "theme.bar.menus.menu.media.buttons.enabled": "#4fd6be",
- "theme.bar.menus.menu.media.buttons.inactive": "#444a73",
- "theme.bar.menus.menu.media.border.color": "#2f324d",
- "theme.bar.menus.menu.media.card.color": "#24283b",
- "theme.bar.menus.menu.media.background.color": "#1e2030",
- "theme.bar.menus.menu.media.album": "#ff757f",
- "theme.bar.menus.menu.media.artist": "#4fd6be",
- "theme.bar.menus.menu.media.song": "#c099ff",
- "theme.bar.menus.tooltip.text": "#c8d3f5",
- "theme.bar.menus.tooltip.background": "#222436",
- "theme.bar.menus.dropdownmenu.divider": "#24283b",
- "theme.bar.menus.dropdownmenu.text": "#c8d3f5",
- "theme.bar.menus.dropdownmenu.background": "#222436",
- "theme.bar.menus.slider.puck": "#636da6",
- "theme.bar.menus.slider.backgroundhover": "#444a73",
- "theme.bar.menus.slider.background": "#636da6",
- "theme.bar.menus.slider.primary": "#c099ff",
- "theme.bar.menus.progressbar.background": "#444a73",
- "theme.bar.menus.progressbar.foreground": "#c099ff",
- "theme.bar.menus.iconbuttons.active": "#c099ff",
- "theme.bar.menus.iconbuttons.passive": "#c8d3f5",
- "theme.bar.menus.buttons.text": "#222436",
- "theme.bar.menus.buttons.disabled": "#636da6",
- "theme.bar.menus.buttons.active": "#ff757f",
- "theme.bar.menus.buttons.default": "#c099ff",
- "theme.bar.menus.check_radio_button.active": "#c099ff",
- "theme.bar.menus.check_radio_button.background": "#3b4261",
- "theme.bar.menus.switch.puck": "#636da6",
- "theme.bar.menus.switch.disabled": "#636da6",
- "theme.bar.menus.switch.enabled": "#c099ff",
- "theme.bar.menus.icons.active": "#c099ff",
- "theme.bar.menus.icons.passive": "#444a73",
- "theme.bar.menus.listitems.active": "#c099ff",
- "theme.bar.menus.listitems.passive": "#c8d3f5",
- "theme.bar.menus.popover.border": "#222436",
- "theme.bar.menus.popover.background": "#222436",
- "theme.bar.menus.popover.text": "#c099ff",
- "theme.bar.menus.label": "#c099ff",
- "theme.bar.menus.feinttext": "#444a73",
- "theme.bar.menus.dimtext": "#444a73",
- "theme.bar.menus.text": "#c8d3f5",
- "theme.bar.menus.border.color": "#444a73",
- "theme.bar.menus.cards": "#24283b",
- "theme.bar.menus.background": "#222436",
- "theme.bar.buttons.modules.power.icon_background": "#ff757f",
- "theme.bar.buttons.modules.power.icon": "#181825",
- "theme.bar.buttons.modules.power.background": "#272a3d",
- "theme.bar.buttons.modules.weather.icon_background": "#c099ff",
- "theme.bar.buttons.modules.weather.icon": "#272a3d",
- "theme.bar.buttons.modules.weather.text": "#272a3d",
- "theme.bar.buttons.modules.weather.background": "#c099ff",
- "theme.bar.buttons.modules.updates.icon_background": "#ff966c",
- "theme.bar.buttons.modules.updates.icon": "#272a3d",
- "theme.bar.buttons.modules.updates.text": "#272a3d",
- "theme.bar.buttons.modules.updates.background": "#ff966c",
- "theme.bar.buttons.modules.kbLayout.icon_background": "#86e1fc",
- "theme.bar.buttons.modules.kbLayout.icon": "#272a3d",
- "theme.bar.buttons.modules.kbLayout.text": "#272a3d",
- "theme.bar.buttons.modules.kbLayout.background": "#86e1fc",
- "theme.bar.buttons.modules.netstat.icon_background": "#c3e88d",
- "theme.bar.buttons.modules.netstat.icon": "#272a3d",
- "theme.bar.buttons.modules.netstat.text": "#272a3d",
- "theme.bar.buttons.modules.netstat.background": "#c3e88d",
- "theme.bar.buttons.modules.storage.icon_background": "#ff757f",
- "theme.bar.buttons.modules.storage.icon": "#272a3d",
- "theme.bar.buttons.modules.storage.text": "#272a3d",
- "theme.bar.buttons.modules.storage.background": "#ff757f",
- "theme.bar.buttons.modules.cpu.icon_background": "#ff757f",
- "theme.bar.buttons.modules.cpu.icon": "#272a3d",
- "theme.bar.buttons.modules.cpu.text": "#272a3d",
- "theme.bar.buttons.modules.cpu.background": "#ff757f",
- "theme.bar.buttons.modules.ram.icon_background": "#ffc777",
- "theme.bar.buttons.modules.ram.icon": "#272a3d",
- "theme.bar.buttons.modules.ram.text": "#272a3d",
- "theme.bar.buttons.modules.ram.background": "#ffc777",
- "theme.bar.buttons.notifications.total": "#272a3d",
- "theme.bar.buttons.notifications.icon_background": "#4fd6be",
- "theme.bar.buttons.notifications.icon": "#272a3d",
- "theme.bar.buttons.notifications.background": "#4fd6be",
- "theme.bar.buttons.clock.icon_background": "#fca7ea",
- "theme.bar.buttons.clock.icon": "#272a3d",
- "theme.bar.buttons.clock.text": "#272a3d",
- "theme.bar.buttons.clock.background": "#fca7ea",
- "theme.bar.buttons.battery.icon_background": "#ffc777",
- "theme.bar.buttons.battery.icon": "#272a3d",
- "theme.bar.buttons.battery.text": "#272a3d",
- "theme.bar.buttons.battery.background": "#ffc777",
- "theme.bar.buttons.systray.background": "#272a3d",
- "theme.bar.buttons.bluetooth.icon_background": "#86e1fc",
- "theme.bar.buttons.bluetooth.icon": "#272a3d",
- "theme.bar.buttons.bluetooth.text": "#272a3d",
- "theme.bar.buttons.bluetooth.background": "#86e1fc",
- "theme.bar.buttons.network.icon_background": "#c099ff",
- "theme.bar.buttons.network.icon": "#272a3d",
- "theme.bar.buttons.network.text": "#272a3d",
- "theme.bar.buttons.network.background": "#c099ff",
- "theme.bar.buttons.volume.icon_background": "#ff757f",
- "theme.bar.buttons.volume.icon": "#272a3d",
- "theme.bar.buttons.volume.text": "#272a3d",
- "theme.bar.buttons.volume.background": "#ff757f",
- "theme.bar.buttons.media.icon_background": "#c099ff",
- "theme.bar.buttons.media.icon": "#272a3d",
- "theme.bar.buttons.media.text": "#272a3d",
- "theme.bar.buttons.media.background": "#c099ff",
- "theme.bar.buttons.windowtitle.icon_background": "#ff757f",
- "theme.bar.buttons.windowtitle.icon": "#272a3d",
- "theme.bar.buttons.windowtitle.text": "#272a3d",
- "theme.bar.buttons.windowtitle.background": "#ff757f",
- "theme.bar.buttons.workspaces.numbered_active_underline_color": "#c678dd",
- "theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
- "theme.bar.buttons.workspaces.active": "#ff757f",
- "theme.bar.buttons.workspaces.occupied": "#ff757f",
- "theme.bar.buttons.workspaces.available": "#86e1fc",
- "theme.bar.buttons.workspaces.hover": "#ff757f",
- "theme.bar.buttons.workspaces.background": "#272a3d",
- "theme.bar.buttons.dashboard.icon": "#272a3d",
- "theme.bar.buttons.dashboard.background": "#ffc777",
- "theme.bar.buttons.icon": "#242438",
- "theme.bar.buttons.text": "#c099ff",
- "theme.bar.buttons.hover": "#444a73",
- "theme.bar.buttons.icon_background": "#c099ff",
- "theme.bar.buttons.background": "#272a3d",
- "theme.bar.buttons.style": "default",
- "theme.bar.background": "#222436",
- "theme.osd.label": "#c099ff",
- "theme.osd.icon": "#222436",
- "theme.osd.bar_overflow_color": "#ff757f",
- "theme.osd.bar_empty_color": "#444a73",
- "theme.osd.bar_color": "#c099ff",
- "theme.osd.icon_container": "#c099ff",
- "theme.osd.bar_container": "#1e2030",
- "theme.notification.close_button.label": "#222436",
- "theme.notification.close_button.background": "#41a5b5",
- "theme.notification.labelicon": "#41a5b5",
- "theme.notification.text": "#c8d3f5",
- "theme.notification.time": "#9aa5ce",
- "theme.notification.border": "#2f324d",
- "theme.notification.label": "#41a5b5",
- "theme.notification.actions.text": "#24283b",
- "theme.notification.actions.background": "#41a5b5",
- "theme.notification.background": "#222436",
- "theme.bar.buttons.modules.power.border": "#ff757f",
- "theme.bar.buttons.modules.weather.border": "#c099ff",
- "theme.bar.buttons.modules.updates.border": "#ff966c",
- "theme.bar.buttons.modules.kbLayout.border": "#86e1fc",
- "theme.bar.buttons.modules.netstat.border": "#c3e88d",
- "theme.bar.buttons.modules.storage.border": "#ff757f",
- "theme.bar.buttons.modules.cpu.border": "#ff757f",
- "theme.bar.buttons.modules.ram.border": "#ffc777",
- "theme.bar.buttons.notifications.border": "#4fd6be",
- "theme.bar.buttons.clock.border": "#fca7ea",
- "theme.bar.buttons.battery.border": "#ffc777",
- "theme.bar.buttons.systray.border": "#444a73",
- "theme.bar.buttons.bluetooth.border": "#86e1fc",
- "theme.bar.buttons.network.border": "#c099ff",
- "theme.bar.buttons.volume.border": "#ff757f",
- "theme.bar.buttons.media.border": "#c099ff",
- "theme.bar.buttons.windowtitle.border": "#ff757f",
- "theme.bar.buttons.workspaces.border": "#ff757f",
- "theme.bar.buttons.dashboard.border": "#ffc777",
- "theme.bar.buttons.modules.submap.background": "#4fd6be",
- "theme.bar.buttons.modules.submap.text": "#272a3d",
- "theme.bar.buttons.modules.submap.border": "#4fd6be",
- "theme.bar.buttons.modules.submap.icon": "#272a3d",
- "theme.bar.buttons.modules.submap.icon_background": "#4fd6be",
- "theme.bar.menus.menu.network.switch.enabled": "#c099ff",
- "theme.bar.menus.menu.network.switch.disabled": "#636da6",
- "theme.bar.menus.menu.network.switch.puck": "#636da6",
- "theme.bar.buttons.systray.customIcon": "#c8d3f5",
- "theme.bar.border.color": "#c099ff",
- "theme.bar.menus.menu.media.timestamp": "#c8d3f5",
- "theme.bar.buttons.borderColor": "#c099ff",
- "theme.bar.buttons.modules.hyprsunset.icon": "#272a3d",
- "theme.bar.buttons.modules.hyprsunset.background": "#ffc777",
- "theme.bar.buttons.modules.hyprsunset.icon_background": "#ffc777",
- "theme.bar.buttons.modules.hyprsunset.text": "#272a3d",
- "theme.bar.buttons.modules.hyprsunset.border": "#ffc777",
- "theme.bar.buttons.modules.hypridle.icon": "#272a3d",
- "theme.bar.buttons.modules.hypridle.background": "#0db8d7",
- "theme.bar.buttons.modules.hypridle.icon_background": "#0db8d7",
- "theme.bar.buttons.modules.hypridle.text": "#272a3d",
- "theme.bar.buttons.modules.hypridle.border": "#0db8d7",
- "theme.bar.menus.menu.network.scroller.color": "#c099ff",
- "theme.bar.menus.menu.bluetooth.scroller.color": "#86e1fc",
- "theme.bar.buttons.notifications.hover": "#504945",
- "theme.bar.buttons.clock.hover": "#504945",
- "theme.bar.buttons.battery.hover": "#504945",
- "theme.bar.buttons.systray.hover": "#504945",
- "theme.bar.buttons.bluetooth.hover": "#504945",
- "theme.bar.buttons.network.hover": "#504945",
- "theme.bar.buttons.volume.hover": "#504945",
- "theme.bar.buttons.media.hover": "#504945",
- "theme.bar.buttons.windowtitle.hover": "#504945",
- "theme.bar.buttons.workspaces.numbered_active_text_color": "#24283b",
- "theme.bar.buttons.dashboard.hover": "#504945",
- "theme.bar.menus.menu.power.card.color": "#2a283e",
- "theme.bar.buttons.modules.cpu.hover": "#45475a",
- "theme.bar.buttons.volume.output_icon": "#11111b",
- "theme.bar.buttons.volume.output_text": "#eba0ac",
- "theme.bar.buttons.volume.input_icon": "#11111b",
- "theme.bar.buttons.volume.input_text": "#eba0ac",
- "theme.bar.buttons.volume.separator": "#45475a",
- "theme.bar.buttons.modules.cpuTemp.icon_background": "#fab387",
- "theme.bar.buttons.modules.cpuTemp.icon": "#181824",
- "theme.bar.buttons.modules.cpuTemp.text": "#fab387",
- "theme.bar.buttons.modules.cpuTemp.border": "#fab387",
- "theme.osd.border.color": "#8ff0a4",
- "theme.bar.buttons.modules.cava.text": "#272a3d",
- "theme.bar.buttons.modules.cava.background": "#4fd6be",
- "theme.bar.buttons.modules.cava.icon_background": "#4fd6be",
- "theme.bar.buttons.modules.cava.icon": "#272a3d",
- "theme.bar.buttons.modules.cava.border": "#4fd6be"
-}
+ "theme.bar.menus.menu.notifications.scrollbar.color": "#4fd6be",
+ "theme.bar.menus.menu.notifications.pager.label": "#636da6",
+ "theme.bar.menus.menu.notifications.pager.button": "#4fd6be",
+ "theme.bar.menus.menu.notifications.pager.background": "#222436",
+ "theme.bar.menus.menu.notifications.switch.puck": "#636da6",
+ "theme.bar.menus.menu.notifications.switch.disabled": "#636da6",
+ "theme.bar.menus.menu.notifications.switch.enabled": "#4fd6be",
+ "theme.bar.menus.menu.notifications.clear": "#4fd6be",
+ "theme.bar.menus.menu.notifications.switch_divider": "#444a73",
+ "theme.bar.menus.menu.notifications.border": "#2f324d",
+ "theme.bar.menus.menu.notifications.card": "#24283b",
+ "theme.bar.menus.menu.notifications.background": "#1e2030",
+ "theme.bar.menus.menu.notifications.no_notifications_label": "#444a73",
+ "theme.bar.menus.menu.notifications.label": "#4fd6be",
+ "theme.bar.menus.menu.power.buttons.sleep.icon": "#222436",
+ "theme.bar.menus.menu.power.buttons.sleep.text": "#86e1fc",
+ "theme.bar.menus.menu.power.buttons.sleep.icon_background": "#86e1fc",
+ "theme.bar.menus.menu.power.buttons.sleep.background": "#24283b",
+ "theme.bar.menus.menu.power.buttons.logout.icon": "#222436",
+ "theme.bar.menus.menu.power.buttons.logout.text": "#c3e88d",
+ "theme.bar.menus.menu.power.buttons.logout.icon_background": "#c3e88d",
+ "theme.bar.menus.menu.power.buttons.logout.background": "#24283b",
+ "theme.bar.menus.menu.power.buttons.restart.icon": "#222436",
+ "theme.bar.menus.menu.power.buttons.restart.text": "#ffc777",
+ "theme.bar.menus.menu.power.buttons.restart.icon_background": "#ffc777",
+ "theme.bar.menus.menu.power.buttons.restart.background": "#24283b",
+ "theme.bar.menus.menu.power.buttons.shutdown.icon": "#222436",
+ "theme.bar.menus.menu.power.buttons.shutdown.text": "#ff757f",
+ "theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#ff757f",
+ "theme.bar.menus.menu.power.buttons.shutdown.background": "#24283b",
+ "theme.bar.menus.menu.power.border.color": "#2f324d",
+ "theme.bar.menus.menu.power.background.color": "#1e2030",
+ "theme.bar.menus.menu.dashboard.monitors.disk.label": "#ff757f",
+ "theme.bar.menus.menu.dashboard.monitors.disk.bar": "#ff757f",
+ "theme.bar.menus.menu.dashboard.monitors.disk.icon": "#ff757f",
+ "theme.bar.menus.menu.dashboard.monitors.gpu.label": "#c3e88d",
+ "theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#c3e88d",
+ "theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#c3e88d",
+ "theme.bar.menus.menu.dashboard.monitors.ram.label": "#ffc777",
+ "theme.bar.menus.menu.dashboard.monitors.ram.bar": "#ffc777",
+ "theme.bar.menus.menu.dashboard.monitors.ram.icon": "#ffc777",
+ "theme.bar.menus.menu.dashboard.monitors.cpu.label": "#ff757f",
+ "theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#ff757f",
+ "theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#ff757f",
+ "theme.bar.menus.menu.dashboard.monitors.bar_background": "#444a73",
+ "theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#c099ff",
+ "theme.bar.menus.menu.dashboard.directories.right.middle.color": "#c099ff",
+ "theme.bar.menus.menu.dashboard.directories.right.top.color": "#4fd6be",
+ "theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#ff757f",
+ "theme.bar.menus.menu.dashboard.directories.left.middle.color": "#ffc777",
+ "theme.bar.menus.menu.dashboard.directories.left.top.color": "#ff757f",
+ "theme.bar.menus.menu.dashboard.controls.input.text": "#222436",
+ "theme.bar.menus.menu.dashboard.controls.input.background": "#ff757f",
+ "theme.bar.menus.menu.dashboard.controls.volume.text": "#222436",
+ "theme.bar.menus.menu.dashboard.controls.volume.background": "#ff757f",
+ "theme.bar.menus.menu.dashboard.controls.notifications.text": "#222436",
+ "theme.bar.menus.menu.dashboard.controls.notifications.background": "#ffc777",
+ "theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#222436",
+ "theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#86e1fc",
+ "theme.bar.menus.menu.dashboard.controls.wifi.text": "#222436",
+ "theme.bar.menus.menu.dashboard.controls.wifi.background": "#c099ff",
+ "theme.bar.menus.menu.dashboard.controls.disabled": "#444a73",
+ "theme.bar.menus.menu.dashboard.shortcuts.recording": "#c3e88d",
+ "theme.bar.menus.menu.dashboard.shortcuts.text": "#222436",
+ "theme.bar.menus.menu.dashboard.shortcuts.background": "#c099ff",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#222436",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#ff757f",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#c3e88d",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#c8d3f5",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#c099ff",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#444a73",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#222436",
+ "theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#24283b",
+ "theme.bar.menus.menu.dashboard.powermenu.sleep": "#86e1fc",
+ "theme.bar.menus.menu.dashboard.powermenu.logout": "#c3e88d",
+ "theme.bar.menus.menu.dashboard.powermenu.restart": "#ffc777",
+ "theme.bar.menus.menu.dashboard.powermenu.shutdown": "#ff757f",
+ "theme.bar.menus.menu.dashboard.profile.name": "#ff757f",
+ "theme.bar.menus.menu.dashboard.border.color": "#2f324d",
+ "theme.bar.menus.menu.dashboard.background.color": "#1e2030",
+ "theme.bar.menus.menu.dashboard.card.color": "#24283b",
+ "theme.bar.menus.menu.clock.weather.hourly.temperature": "#fca7ea",
+ "theme.bar.menus.menu.clock.weather.hourly.icon": "#fca7ea",
+ "theme.bar.menus.menu.clock.weather.hourly.time": "#fca7ea",
+ "theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#86e1fc",
+ "theme.bar.menus.menu.clock.weather.thermometer.cold": "#82aaff",
+ "theme.bar.menus.menu.clock.weather.thermometer.moderate": "#c099ff",
+ "theme.bar.menus.menu.clock.weather.thermometer.hot": "#ffc777",
+ "theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#fca7ea",
+ "theme.bar.menus.menu.clock.weather.stats": "#fca7ea",
+ "theme.bar.menus.menu.clock.weather.status": "#4fd6be",
+ "theme.bar.menus.menu.clock.weather.temperature": "#c8d3f5",
+ "theme.bar.menus.menu.clock.weather.icon": "#fca7ea",
+ "theme.bar.menus.menu.clock.calendar.contextdays": "#444a73",
+ "theme.bar.menus.menu.clock.calendar.days": "#c8d3f5",
+ "theme.bar.menus.menu.clock.calendar.currentday": "#fca7ea",
+ "theme.bar.menus.menu.clock.calendar.paginator": "#fca7ea",
+ "theme.bar.menus.menu.clock.calendar.weekdays": "#fca7ea",
+ "theme.bar.menus.menu.clock.calendar.yearmonth": "#4fd6be",
+ "theme.bar.menus.menu.clock.time.timeperiod": "#4fd6be",
+ "theme.bar.menus.menu.clock.time.time": "#fca7ea",
+ "theme.bar.menus.menu.clock.text": "#c8d3f5",
+ "theme.bar.menus.menu.clock.border.color": "#2f324d",
+ "theme.bar.menus.menu.clock.background.color": "#1e2030",
+ "theme.bar.menus.menu.clock.card.color": "#24283b",
+ "theme.bar.menus.menu.battery.slider.puck": "#636da6",
+ "theme.bar.menus.menu.battery.slider.backgroundhover": "#444a73",
+ "theme.bar.menus.menu.battery.slider.background": "#636da6",
+ "theme.bar.menus.menu.battery.slider.primary": "#ffc777",
+ "theme.bar.menus.menu.battery.icons.active": "#ffc777",
+ "theme.bar.menus.menu.battery.icons.passive": "#636da6",
+ "theme.bar.menus.menu.battery.listitems.active": "#ffc777",
+ "theme.bar.menus.menu.battery.listitems.passive": "#c8d3f5",
+ "theme.bar.menus.menu.battery.text": "#c8d3f5",
+ "theme.bar.menus.menu.battery.label.color": "#ffc777",
+ "theme.bar.menus.menu.battery.border.color": "#2f324d",
+ "theme.bar.menus.menu.battery.background.color": "#1e2030",
+ "theme.bar.menus.menu.battery.card.color": "#24283b",
+ "theme.bar.menus.menu.systray.dropdownmenu.divider": "#24283b",
+ "theme.bar.menus.menu.systray.dropdownmenu.text": "#c8d3f5",
+ "theme.bar.menus.menu.systray.dropdownmenu.background": "#222436",
+ "theme.bar.menus.menu.bluetooth.iconbutton.active": "#86e1fc",
+ "theme.bar.menus.menu.bluetooth.iconbutton.passive": "#c8d3f5",
+ "theme.bar.menus.menu.bluetooth.icons.active": "#86e1fc",
+ "theme.bar.menus.menu.bluetooth.icons.passive": "#636da6",
+ "theme.bar.menus.menu.bluetooth.listitems.active": "#86e1fc",
+ "theme.bar.menus.menu.bluetooth.listitems.passive": "#c8d3f5",
+ "theme.bar.menus.menu.bluetooth.switch.puck": "#636da6",
+ "theme.bar.menus.menu.bluetooth.switch.disabled": "#636da6",
+ "theme.bar.menus.menu.bluetooth.switch.enabled": "#86e1fc",
+ "theme.bar.menus.menu.bluetooth.switch_divider": "#444a73",
+ "theme.bar.menus.menu.bluetooth.status": "#636da6",
+ "theme.bar.menus.menu.bluetooth.text": "#c8d3f5",
+ "theme.bar.menus.menu.bluetooth.label.color": "#86e1fc",
+ "theme.bar.menus.menu.bluetooth.border.color": "#2f324d",
+ "theme.bar.menus.menu.bluetooth.background.color": "#1e2030",
+ "theme.bar.menus.menu.bluetooth.card.color": "#24283b",
+ "theme.bar.menus.menu.network.iconbuttons.active": "#c099ff",
+ "theme.bar.menus.menu.network.iconbuttons.passive": "#c8d3f5",
+ "theme.bar.menus.menu.network.icons.active": "#c099ff",
+ "theme.bar.menus.menu.network.icons.passive": "#636da6",
+ "theme.bar.menus.menu.network.listitems.active": "#c099ff",
+ "theme.bar.menus.menu.network.listitems.passive": "#c8d3f5",
+ "theme.bar.menus.menu.network.status.color": "#636da6",
+ "theme.bar.menus.menu.network.text": "#c8d3f5",
+ "theme.bar.menus.menu.network.label.color": "#c099ff",
+ "theme.bar.menus.menu.network.border.color": "#2f324d",
+ "theme.bar.menus.menu.network.background.color": "#1e2030",
+ "theme.bar.menus.menu.network.card.color": "#24283b",
+ "theme.bar.menus.menu.volume.input_slider.puck": "#444a73",
+ "theme.bar.menus.menu.volume.input_slider.backgroundhover": "#444a73",
+ "theme.bar.menus.menu.volume.input_slider.background": "#636da6",
+ "theme.bar.menus.menu.volume.input_slider.primary": "#ff757f",
+ "theme.bar.menus.menu.volume.audio_slider.puck": "#444a73",
+ "theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#444a73",
+ "theme.bar.menus.menu.volume.audio_slider.background": "#636da6",
+ "theme.bar.menus.menu.volume.audio_slider.primary": "#ff757f",
+ "theme.bar.menus.menu.volume.icons.active": "#ff757f",
+ "theme.bar.menus.menu.volume.icons.passive": "#636da6",
+ "theme.bar.menus.menu.volume.iconbutton.active": "#ff757f",
+ "theme.bar.menus.menu.volume.iconbutton.passive": "#c8d3f5",
+ "theme.bar.menus.menu.volume.listitems.active": "#ff757f",
+ "theme.bar.menus.menu.volume.listitems.passive": "#c8d3f5",
+ "theme.bar.menus.menu.volume.text": "#c8d3f5",
+ "theme.bar.menus.menu.volume.label.color": "#ff757f",
+ "theme.bar.menus.menu.volume.border.color": "#2f324d",
+ "theme.bar.menus.menu.volume.background.color": "#1e2030",
+ "theme.bar.menus.menu.volume.card.color": "#24283b",
+ "theme.bar.menus.menu.media.slider.puck": "#636da6",
+ "theme.bar.menus.menu.media.slider.backgroundhover": "#444a73",
+ "theme.bar.menus.menu.media.slider.background": "#636da6",
+ "theme.bar.menus.menu.media.slider.primary": "#ff757f",
+ "theme.bar.menus.menu.media.buttons.text": "#222436",
+ "theme.bar.menus.menu.media.buttons.background": "#c099ff",
+ "theme.bar.menus.menu.media.buttons.enabled": "#4fd6be",
+ "theme.bar.menus.menu.media.buttons.inactive": "#444a73",
+ "theme.bar.menus.menu.media.border.color": "#2f324d",
+ "theme.bar.menus.menu.media.card.color": "#24283b",
+ "theme.bar.menus.menu.media.background.color": "#1e2030",
+ "theme.bar.menus.menu.media.album": "#ff757f",
+ "theme.bar.menus.menu.media.artist": "#4fd6be",
+ "theme.bar.menus.menu.media.song": "#c099ff",
+ "theme.bar.menus.tooltip.text": "#c8d3f5",
+ "theme.bar.menus.tooltip.background": "#222436",
+ "theme.bar.menus.dropdownmenu.divider": "#24283b",
+ "theme.bar.menus.dropdownmenu.text": "#c8d3f5",
+ "theme.bar.menus.dropdownmenu.background": "#222436",
+ "theme.bar.menus.slider.puck": "#636da6",
+ "theme.bar.menus.slider.backgroundhover": "#444a73",
+ "theme.bar.menus.slider.background": "#636da6",
+ "theme.bar.menus.slider.primary": "#c099ff",
+ "theme.bar.menus.progressbar.background": "#444a73",
+ "theme.bar.menus.progressbar.foreground": "#c099ff",
+ "theme.bar.menus.iconbuttons.active": "#c099ff",
+ "theme.bar.menus.iconbuttons.passive": "#c8d3f5",
+ "theme.bar.menus.buttons.text": "#222436",
+ "theme.bar.menus.buttons.disabled": "#636da6",
+ "theme.bar.menus.buttons.active": "#ff757f",
+ "theme.bar.menus.buttons.default": "#c099ff",
+ "theme.bar.menus.check_radio_button.active": "#c099ff",
+ "theme.bar.menus.check_radio_button.background": "#3b4261",
+ "theme.bar.menus.switch.puck": "#636da6",
+ "theme.bar.menus.switch.disabled": "#636da6",
+ "theme.bar.menus.switch.enabled": "#c099ff",
+ "theme.bar.menus.icons.active": "#c099ff",
+ "theme.bar.menus.icons.passive": "#444a73",
+ "theme.bar.menus.listitems.active": "#c099ff",
+ "theme.bar.menus.listitems.passive": "#c8d3f5",
+ "theme.bar.menus.popover.border": "#222436",
+ "theme.bar.menus.popover.background": "#222436",
+ "theme.bar.menus.popover.text": "#c099ff",
+ "theme.bar.menus.label": "#c099ff",
+ "theme.bar.menus.feinttext": "#444a73",
+ "theme.bar.menus.dimtext": "#444a73",
+ "theme.bar.menus.text": "#c8d3f5",
+ "theme.bar.menus.border.color": "#444a73",
+ "theme.bar.menus.cards": "#24283b",
+ "theme.bar.menus.background": "#222436",
+ "theme.bar.buttons.modules.power.icon_background": "#ff757f",
+ "theme.bar.buttons.modules.power.icon": "#181825",
+ "theme.bar.buttons.modules.power.background": "#272a3d",
+ "theme.bar.buttons.modules.weather.icon_background": "#c099ff",
+ "theme.bar.buttons.modules.weather.icon": "#272a3d",
+ "theme.bar.buttons.modules.weather.text": "#272a3d",
+ "theme.bar.buttons.modules.weather.background": "#c099ff",
+ "theme.bar.buttons.modules.updates.icon_background": "#ff966c",
+ "theme.bar.buttons.modules.updates.icon": "#272a3d",
+ "theme.bar.buttons.modules.updates.text": "#272a3d",
+ "theme.bar.buttons.modules.updates.background": "#ff966c",
+ "theme.bar.buttons.modules.kbLayout.icon_background": "#86e1fc",
+ "theme.bar.buttons.modules.kbLayout.icon": "#272a3d",
+ "theme.bar.buttons.modules.kbLayout.text": "#272a3d",
+ "theme.bar.buttons.modules.kbLayout.background": "#86e1fc",
+ "theme.bar.buttons.modules.netstat.icon_background": "#c3e88d",
+ "theme.bar.buttons.modules.netstat.icon": "#272a3d",
+ "theme.bar.buttons.modules.netstat.text": "#272a3d",
+ "theme.bar.buttons.modules.netstat.background": "#c3e88d",
+ "theme.bar.buttons.modules.storage.icon_background": "#ff757f",
+ "theme.bar.buttons.modules.storage.icon": "#272a3d",
+ "theme.bar.buttons.modules.storage.text": "#272a3d",
+ "theme.bar.buttons.modules.storage.background": "#ff757f",
+ "theme.bar.buttons.modules.cpu.icon_background": "#ff757f",
+ "theme.bar.buttons.modules.cpu.icon": "#272a3d",
+ "theme.bar.buttons.modules.cpu.text": "#272a3d",
+ "theme.bar.buttons.modules.cpu.background": "#ff757f",
+ "theme.bar.buttons.modules.ram.icon_background": "#ffc777",
+ "theme.bar.buttons.modules.ram.icon": "#272a3d",
+ "theme.bar.buttons.modules.ram.text": "#272a3d",
+ "theme.bar.buttons.modules.ram.background": "#ffc777",
+ "theme.bar.buttons.notifications.total": "#272a3d",
+ "theme.bar.buttons.notifications.icon_background": "#4fd6be",
+ "theme.bar.buttons.notifications.icon": "#272a3d",
+ "theme.bar.buttons.notifications.background": "#4fd6be",
+ "theme.bar.buttons.clock.icon_background": "#fca7ea",
+ "theme.bar.buttons.clock.icon": "#272a3d",
+ "theme.bar.buttons.clock.text": "#272a3d",
+ "theme.bar.buttons.clock.background": "#fca7ea",
+ "theme.bar.buttons.battery.icon_background": "#ffc777",
+ "theme.bar.buttons.battery.icon": "#272a3d",
+ "theme.bar.buttons.battery.text": "#272a3d",
+ "theme.bar.buttons.battery.background": "#ffc777",
+ "theme.bar.buttons.systray.background": "#272a3d",
+ "theme.bar.buttons.bluetooth.icon_background": "#86e1fc",
+ "theme.bar.buttons.bluetooth.icon": "#272a3d",
+ "theme.bar.buttons.bluetooth.text": "#272a3d",
+ "theme.bar.buttons.bluetooth.background": "#86e1fc",
+ "theme.bar.buttons.network.icon_background": "#c099ff",
+ "theme.bar.buttons.network.icon": "#272a3d",
+ "theme.bar.buttons.network.text": "#272a3d",
+ "theme.bar.buttons.network.background": "#c099ff",
+ "theme.bar.buttons.volume.icon_background": "#ff757f",
+ "theme.bar.buttons.volume.icon": "#272a3d",
+ "theme.bar.buttons.volume.text": "#272a3d",
+ "theme.bar.buttons.volume.background": "#ff757f",
+ "theme.bar.buttons.media.icon_background": "#c099ff",
+ "theme.bar.buttons.media.icon": "#272a3d",
+ "theme.bar.buttons.media.text": "#272a3d",
+ "theme.bar.buttons.media.background": "#c099ff",
+ "theme.bar.buttons.windowtitle.icon_background": "#ff757f",
+ "theme.bar.buttons.windowtitle.icon": "#272a3d",
+ "theme.bar.buttons.windowtitle.text": "#272a3d",
+ "theme.bar.buttons.windowtitle.background": "#ff757f",
+ "theme.bar.buttons.workspaces.numbered_active_underline_color": "#c678dd",
+ "theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
+ "theme.bar.buttons.workspaces.active": "#ff757f",
+ "theme.bar.buttons.workspaces.occupied": "#ff757f",
+ "theme.bar.buttons.workspaces.available": "#86e1fc",
+ "theme.bar.buttons.workspaces.hover": "#ff757f",
+ "theme.bar.buttons.workspaces.background": "#272a3d",
+ "theme.bar.buttons.dashboard.icon": "#272a3d",
+ "theme.bar.buttons.dashboard.background": "#ffc777",
+ "theme.bar.buttons.icon": "#242438",
+ "theme.bar.buttons.text": "#c099ff",
+ "theme.bar.buttons.hover": "#444a73",
+ "theme.bar.buttons.icon_background": "#c099ff",
+ "theme.bar.buttons.background": "#272a3d",
+ "theme.bar.buttons.style": "default",
+ "theme.bar.background": "#222436",
+ "theme.osd.label": "#c099ff",
+ "theme.osd.icon": "#222436",
+ "theme.osd.bar_overflow_color": "#ff757f",
+ "theme.osd.bar_empty_color": "#444a73",
+ "theme.osd.bar_color": "#c099ff",
+ "theme.osd.icon_container": "#c099ff",
+ "theme.osd.bar_container": "#1e2030",
+ "theme.notification.close_button.label": "#222436",
+ "theme.notification.close_button.background": "#41a5b5",
+ "theme.notification.labelicon": "#41a5b5",
+ "theme.notification.text": "#c8d3f5",
+ "theme.notification.time": "#9aa5ce",
+ "theme.notification.border": "#2f324d",
+ "theme.notification.label": "#41a5b5",
+ "theme.notification.actions.text": "#24283b",
+ "theme.notification.actions.background": "#41a5b5",
+ "theme.notification.background": "#222436",
+ "theme.bar.buttons.modules.power.border": "#ff757f",
+ "theme.bar.buttons.modules.weather.border": "#c099ff",
+ "theme.bar.buttons.modules.updates.border": "#ff966c",
+ "theme.bar.buttons.modules.kbLayout.border": "#86e1fc",
+ "theme.bar.buttons.modules.netstat.border": "#c3e88d",
+ "theme.bar.buttons.modules.storage.border": "#ff757f",
+ "theme.bar.buttons.modules.cpu.border": "#ff757f",
+ "theme.bar.buttons.modules.ram.border": "#ffc777",
+ "theme.bar.buttons.notifications.border": "#4fd6be",
+ "theme.bar.buttons.clock.border": "#fca7ea",
+ "theme.bar.buttons.battery.border": "#ffc777",
+ "theme.bar.buttons.systray.border": "#444a73",
+ "theme.bar.buttons.bluetooth.border": "#86e1fc",
+ "theme.bar.buttons.network.border": "#c099ff",
+ "theme.bar.buttons.volume.border": "#ff757f",
+ "theme.bar.buttons.media.border": "#c099ff",
+ "theme.bar.buttons.windowtitle.border": "#ff757f",
+ "theme.bar.buttons.workspaces.border": "#ff757f",
+ "theme.bar.buttons.dashboard.border": "#ffc777",
+ "theme.bar.buttons.modules.submap.background": "#4fd6be",
+ "theme.bar.buttons.modules.submap.text": "#272a3d",
+ "theme.bar.buttons.modules.submap.border": "#4fd6be",
+ "theme.bar.buttons.modules.submap.icon": "#272a3d",
+ "theme.bar.buttons.modules.submap.icon_background": "#4fd6be",
+ "theme.bar.menus.menu.network.switch.enabled": "#c099ff",
+ "theme.bar.menus.menu.network.switch.disabled": "#636da6",
+ "theme.bar.menus.menu.network.switch.puck": "#636da6",
+ "theme.bar.buttons.systray.customIcon": "#c8d3f5",
+ "theme.bar.border.color": "#c099ff",
+ "theme.bar.menus.menu.media.timestamp": "#c8d3f5",
+ "theme.bar.buttons.borderColor": "#c099ff",
+ "theme.bar.buttons.modules.hyprsunset.icon": "#272a3d",
+ "theme.bar.buttons.modules.hyprsunset.background": "#ffc777",
+ "theme.bar.buttons.modules.hyprsunset.icon_background": "#ffc777",
+ "theme.bar.buttons.modules.hyprsunset.text": "#272a3d",
+ "theme.bar.buttons.modules.hyprsunset.border": "#ffc777",
+ "theme.bar.buttons.modules.hypridle.icon": "#272a3d",
+ "theme.bar.buttons.modules.hypridle.background": "#0db8d7",
+ "theme.bar.buttons.modules.hypridle.icon_background": "#0db8d7",
+ "theme.bar.buttons.modules.hypridle.text": "#272a3d",
+ "theme.bar.buttons.modules.hypridle.border": "#0db8d7",
+ "theme.bar.menus.menu.network.scroller.color": "#c099ff",
+ "theme.bar.menus.menu.bluetooth.scroller.color": "#86e1fc",
+ "theme.bar.buttons.notifications.hover": "#504945",
+ "theme.bar.buttons.clock.hover": "#504945",
+ "theme.bar.buttons.battery.hover": "#504945",
+ "theme.bar.buttons.systray.hover": "#504945",
+ "theme.bar.buttons.bluetooth.hover": "#504945",
+ "theme.bar.buttons.network.hover": "#504945",
+ "theme.bar.buttons.volume.hover": "#504945",
+ "theme.bar.buttons.media.hover": "#504945",
+ "theme.bar.buttons.windowtitle.hover": "#504945",
+ "theme.bar.buttons.workspaces.numbered_active_text_color": "#24283b",
+ "theme.bar.buttons.dashboard.hover": "#504945",
+ "theme.bar.menus.menu.power.card.color": "#2a283e",
+ "theme.bar.buttons.modules.cpu.hover": "#45475a",
+ "theme.bar.buttons.volume.output_icon": "#11111b",
+ "theme.bar.buttons.volume.output_text": "#eba0ac",
+ "theme.bar.buttons.volume.input_icon": "#11111b",
+ "theme.bar.buttons.volume.input_text": "#eba0ac",
+ "theme.bar.buttons.volume.separator": "#45475a",
+ "theme.bar.buttons.modules.cpuTemp.icon_background": "#fab387",
+ "theme.bar.buttons.modules.cpuTemp.icon": "#181824",
+ "theme.bar.buttons.modules.cpuTemp.text": "#fab387",
+ "theme.bar.buttons.modules.cpuTemp.border": "#fab387",
+ "theme.osd.border.color": "#8ff0a4",
+ "theme.bar.buttons.modules.cava.text": "#272a3d",
+ "theme.bar.buttons.modules.cava.background": "#4fd6be",
+ "theme.bar.buttons.modules.cava.icon_background": "#4fd6be",
+ "theme.bar.buttons.modules.cava.icon": "#272a3d",
+ "theme.bar.buttons.modules.cava.border": "#4fd6be",
+ "theme.bar.buttons.modules.microphone.border": "#c3e88d",
+ "theme.bar.buttons.modules.microphone.text": "#272a3d",
+ "theme.bar.buttons.modules.microphone.background": "#c3e88d",
+ "theme.bar.buttons.modules.microphone.icon": "#272a3d",
+ "theme.bar.buttons.modules.microphone.icon_background": "#c3e88d"
+}
\ No newline at end of file
diff --git a/themes/tokyo_night_split.json b/themes/tokyo_night_split.json
index 529a947..aae11ad 100644
--- a/themes/tokyo_night_split.json
+++ b/themes/tokyo_night_split.json
@@ -384,5 +384,10 @@
"theme.bar.buttons.modules.cava.background": "#272a3d",
"theme.bar.buttons.modules.cava.icon_background": "#1abc9c",
"theme.bar.buttons.modules.cava.icon": "#181825",
- "theme.bar.buttons.modules.cava.border": "#1abc9c"
+ "theme.bar.buttons.modules.cava.border": "#1abc9c",
+ "theme.bar.buttons.modules.microphone.border": "#9ece6a",
+ "theme.bar.buttons.modules.microphone.background": "#272a3d",
+ "theme.bar.buttons.modules.microphone.text": "#9ece6a",
+ "theme.bar.buttons.modules.microphone.icon": "#272a3d",
+ "theme.bar.buttons.modules.microphone.icon_background": "#9ece6a"
}
\ No newline at end of file
diff --git a/themes/tokyo_night_vivid.json b/themes/tokyo_night_vivid.json
index 3fdcf76..a07fa5c 100644
--- a/themes/tokyo_night_vivid.json
+++ b/themes/tokyo_night_vivid.json
@@ -384,5 +384,10 @@
"theme.bar.buttons.modules.cava.background": "#1abc9c",
"theme.bar.buttons.modules.cava.icon_background": "#1abc9c",
"theme.bar.buttons.modules.cava.icon": "#272a3d",
- "theme.bar.buttons.modules.cava.border": "#1abc9c"
+ "theme.bar.buttons.modules.cava.border": "#1abc9c",
+ "theme.bar.buttons.modules.microphone.border": "#9ece6a",
+ "theme.bar.buttons.modules.microphone.text": "#272a3d",
+ "theme.bar.buttons.modules.microphone.background": "#9ece6a",
+ "theme.bar.buttons.modules.microphone.icon": "#272a3d",
+ "theme.bar.buttons.modules.microphone.icon_background": "#9ece6a"
}
\ No newline at end of file