Create Microphone bar module. (#801)
* Implement microphone module. * Add catppuccin themes * Add rest of themes * Fix comment * Add nix settings
This commit is contained in:
@@ -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";
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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()),
|
||||
|
||||
76
src/components/bar/modules/microphone/index.tsx
Normal file
76
src/components/bar/modules/microphone/index.tsx
Normal file
@@ -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;
|
||||
};
|
||||
@@ -16,6 +16,23 @@ export const CustomModuleSettings = (): JSX.Element => {
|
||||
<Header title="General" />
|
||||
<Option opt={options.bar.customModules.scrollSpeed} title="Scrolling Speed" type="number" />
|
||||
|
||||
{/* Microphone Section */}
|
||||
<Header title="Microphone" />
|
||||
<Option
|
||||
opt={options.theme.bar.buttons.modules.microphone.enableBorder}
|
||||
title="Button Border"
|
||||
type="boolean"
|
||||
/>
|
||||
<Option opt={options.bar.customModules.microphone.label} title="Show Label" type="boolean" />
|
||||
<Option opt={options.bar.customModules.microphone.mutedIcon} title="Muted Icon" type="string" />
|
||||
<Option opt={options.bar.customModules.microphone.unmutedIcon} title="Unmuted Icon" type="string" />
|
||||
<Option opt={options.theme.bar.buttons.modules.microphone.spacing} title="Spacing" type="string" />
|
||||
<Option opt={options.bar.customModules.microphone.leftClick} title="Left Click" type="string" />
|
||||
<Option opt={options.bar.customModules.microphone.rightClick} title="Right Click" type="string" />
|
||||
<Option opt={options.bar.customModules.microphone.middleClick} title="Middle Click" type="string" />
|
||||
<Option opt={options.bar.customModules.microphone.scrollUp} title="Scroll Up" type="string" />
|
||||
<Option opt={options.bar.customModules.microphone.scrollDown} title="Scroll Down" type="string" />
|
||||
|
||||
{/* RAM Section */}
|
||||
<Header title="RAM" />
|
||||
<Option opt={options.theme.bar.buttons.modules.ram.enableBorder} title="Button Border" type="boolean" />
|
||||
|
||||
@@ -14,6 +14,23 @@ export const CustomModuleTheme = (): JSX.Element => {
|
||||
vexpand={false}
|
||||
>
|
||||
<box vertical>
|
||||
{/* Microphone Module Section */}
|
||||
<Header title="Microphone" />
|
||||
<Option opt={options.theme.bar.buttons.modules.microphone.text} title="Text" type="color" />
|
||||
<Option opt={options.theme.bar.buttons.modules.microphone.icon} title="Icon" type="color" />
|
||||
<Option
|
||||
opt={options.theme.bar.buttons.modules.microphone.background}
|
||||
title="Label Background"
|
||||
type="color"
|
||||
/>
|
||||
<Option
|
||||
opt={options.theme.bar.buttons.modules.microphone.icon_background}
|
||||
title="Icon Background"
|
||||
subtitle="Applies a background color to the icon section of the button.\nRequires 'split' button styling."
|
||||
type="color"
|
||||
/>
|
||||
<Option opt={options.theme.bar.buttons.modules.microphone.border} title="Border" type="color" />
|
||||
|
||||
{/* RAM Module Section */}
|
||||
<Header title="RAM" />
|
||||
<Option opt={options.theme.bar.buttons.modules.ram.text} title="Text" type="color" />
|
||||
|
||||
@@ -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),
|
||||
|
||||
@@ -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 #
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
Reference in New Issue
Block a user