Added the hyprsunset module (requires hyprland v0.45.0) (#485)
* add sunset module * Implement hyprsunset module. * Update themes * Undo vivids * Fix vivids
This commit is contained in:
@@ -633,6 +633,83 @@ export const CustomModuleSettings = (): Scrollable<GtkWidget, Attribute> =>
|
|||||||
type: 'string',
|
type: 'string',
|
||||||
}),
|
}),
|
||||||
|
|
||||||
|
/*
|
||||||
|
************************************
|
||||||
|
* HYPRSUNSET *
|
||||||
|
************************************
|
||||||
|
*/
|
||||||
|
Header('Hyprsunset'),
|
||||||
|
Option({
|
||||||
|
opt: options.bar.customModules.hyprsunset.temperature,
|
||||||
|
title: 'Temperature',
|
||||||
|
subtitle: 'Ex: 1000k, 2000k, 5000k, etc.',
|
||||||
|
type: 'string',
|
||||||
|
}),
|
||||||
|
Option({
|
||||||
|
opt: options.theme.bar.buttons.modules.hyprsunset.enableBorder,
|
||||||
|
title: 'Button Border',
|
||||||
|
type: 'boolean',
|
||||||
|
}),
|
||||||
|
Option({
|
||||||
|
opt: options.bar.customModules.hyprsunset.onIcon,
|
||||||
|
title: 'Enabled Icon',
|
||||||
|
type: 'string',
|
||||||
|
}),
|
||||||
|
Option({
|
||||||
|
opt: options.bar.customModules.hyprsunset.offIcon,
|
||||||
|
title: 'Disabled Icon',
|
||||||
|
type: 'string',
|
||||||
|
}),
|
||||||
|
Option({
|
||||||
|
opt: options.bar.customModules.hyprsunset.onLabel,
|
||||||
|
title: 'Enabled Label',
|
||||||
|
type: 'string',
|
||||||
|
}),
|
||||||
|
Option({
|
||||||
|
opt: options.bar.customModules.hyprsunset.offLabel,
|
||||||
|
title: 'Disabled Label',
|
||||||
|
type: 'string',
|
||||||
|
}),
|
||||||
|
Option({
|
||||||
|
opt: options.bar.customModules.hyprsunset.label,
|
||||||
|
title: 'Show Label',
|
||||||
|
type: 'boolean',
|
||||||
|
}),
|
||||||
|
Option({
|
||||||
|
opt: options.theme.bar.buttons.modules.hyprsunset.spacing,
|
||||||
|
title: 'Spacing',
|
||||||
|
type: 'string',
|
||||||
|
}),
|
||||||
|
Option({
|
||||||
|
opt: options.bar.customModules.hyprsunset.pollingInterval,
|
||||||
|
title: 'Polling Interval',
|
||||||
|
type: 'number',
|
||||||
|
subtitle: "WARNING: Be careful of your package manager's rate limit.",
|
||||||
|
min: 100,
|
||||||
|
max: 60 * 24 * 1000,
|
||||||
|
increment: 1000,
|
||||||
|
}),
|
||||||
|
Option({
|
||||||
|
opt: options.bar.customModules.hyprsunset.rightClick,
|
||||||
|
title: 'Right Click',
|
||||||
|
type: 'string',
|
||||||
|
}),
|
||||||
|
Option({
|
||||||
|
opt: options.bar.customModules.hyprsunset.middleClick,
|
||||||
|
title: 'Middle Click',
|
||||||
|
type: 'string',
|
||||||
|
}),
|
||||||
|
Option({
|
||||||
|
opt: options.bar.customModules.hyprsunset.scrollUp,
|
||||||
|
title: 'Scroll Up',
|
||||||
|
type: 'string',
|
||||||
|
}),
|
||||||
|
Option({
|
||||||
|
opt: options.bar.customModules.hyprsunset.scrollDown,
|
||||||
|
title: 'Scroll Down',
|
||||||
|
type: 'string',
|
||||||
|
}),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
************************************
|
************************************
|
||||||
* POWER *
|
* POWER *
|
||||||
|
|||||||
33
customModules/hyprsunset/helpers.ts
Normal file
33
customModules/hyprsunset/helpers.ts
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
import options from 'options';
|
||||||
|
|
||||||
|
import { Variable as TVariable } from 'types/variable';
|
||||||
|
|
||||||
|
const { temperature } = options.bar.customModules.hyprsunset;
|
||||||
|
|
||||||
|
export const isActiveCommand = `bash -c "pgrep -x "hyprsunset" > /dev/null && echo "yes" || echo "no""`;
|
||||||
|
|
||||||
|
export const isActive = Variable(false);
|
||||||
|
|
||||||
|
export const toggleSunset = (isActive: TVariable<boolean>): void => {
|
||||||
|
Utils.execAsync(isActiveCommand).then((res) => {
|
||||||
|
if (res === 'no') {
|
||||||
|
Utils.execAsync(`bash -c "nohup hyprsunset -t ${temperature.value} > /dev/null 2>&1 &"`).then(() => {
|
||||||
|
Utils.execAsync(isActiveCommand).then((res) => {
|
||||||
|
isActive.value = res === 'yes';
|
||||||
|
});
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
Utils.execAsync(`bash -c "pkill hyprsunset "`).then(() => {
|
||||||
|
Utils.execAsync(isActiveCommand).then((res) => {
|
||||||
|
isActive.value = res === 'yes';
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export const checkSunsetStatus = (): undefined => {
|
||||||
|
Utils.execAsync(isActiveCommand).then((res) => {
|
||||||
|
isActive.value = res === 'yes';
|
||||||
|
});
|
||||||
|
};
|
||||||
65
customModules/hyprsunset/index.ts
Normal file
65
customModules/hyprsunset/index.ts
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
import options from 'options';
|
||||||
|
import { module } from '../module';
|
||||||
|
|
||||||
|
import { inputHandler, throttleInput } from 'customModules/utils';
|
||||||
|
import Button from 'types/widgets/button';
|
||||||
|
import { Attribute, Child } from 'lib/types/widget';
|
||||||
|
import { BarBoxChild } from 'lib/types/bar';
|
||||||
|
import { pollVariable } from 'customModules/PollVar';
|
||||||
|
import { checkSunsetStatus, isActive, toggleSunset } from './helpers';
|
||||||
|
|
||||||
|
const { label, pollingInterval, onIcon, offIcon, onLabel, offLabel, rightClick, middleClick, scrollUp, scrollDown } =
|
||||||
|
options.bar.customModules.hyprsunset;
|
||||||
|
|
||||||
|
const dummyVar = Variable(undefined);
|
||||||
|
|
||||||
|
checkSunsetStatus();
|
||||||
|
|
||||||
|
pollVariable(dummyVar, [], pollingInterval.bind('value'), checkSunsetStatus);
|
||||||
|
|
||||||
|
const throttledToggleSunset = throttleInput(() => toggleSunset(isActive), 1000);
|
||||||
|
|
||||||
|
export const Hyprsunset = (): BarBoxChild => {
|
||||||
|
const hyprsunsetModule = module({
|
||||||
|
textIcon: Utils.merge(
|
||||||
|
[isActive.bind('value'), onIcon.bind('value'), offIcon.bind('value')],
|
||||||
|
(active, onIcn, offIcn) => {
|
||||||
|
return active ? onIcn : offIcn;
|
||||||
|
},
|
||||||
|
),
|
||||||
|
tooltipText: isActive.bind('value').as((active) => `Hyprsunset ${active ? 'enabled' : 'disabled'}`),
|
||||||
|
boxClass: 'hyprsunset',
|
||||||
|
label: Utils.merge(
|
||||||
|
[isActive.bind('value'), onLabel.bind('value'), offLabel.bind('value')],
|
||||||
|
(active, onLbl, offLbl) => {
|
||||||
|
return active ? onLbl : offLbl;
|
||||||
|
},
|
||||||
|
),
|
||||||
|
showLabelBinding: label.bind('value'),
|
||||||
|
props: {
|
||||||
|
setup: (self: Button<Child, Attribute>) => {
|
||||||
|
inputHandler(self, {
|
||||||
|
onPrimaryClick: {
|
||||||
|
fn: () => {
|
||||||
|
throttledToggleSunset();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
onSecondaryClick: {
|
||||||
|
cmd: rightClick,
|
||||||
|
},
|
||||||
|
onMiddleClick: {
|
||||||
|
cmd: middleClick,
|
||||||
|
},
|
||||||
|
onScrollUp: {
|
||||||
|
cmd: scrollUp,
|
||||||
|
},
|
||||||
|
onScrollDown: {
|
||||||
|
cmd: scrollDown,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
return hyprsunsetModule;
|
||||||
|
};
|
||||||
@@ -167,6 +167,23 @@ export const CustomModuleTheme = (): Scrollable<GtkWidget, Attribute> => {
|
|||||||
}),
|
}),
|
||||||
Option({ opt: options.theme.bar.buttons.modules.weather.border, title: 'Border', type: 'color' }),
|
Option({ opt: options.theme.bar.buttons.modules.weather.border, title: 'Border', type: 'color' }),
|
||||||
|
|
||||||
|
Header('Hyprsunset'),
|
||||||
|
Option({ opt: options.theme.bar.buttons.modules.hyprsunset.text, title: 'Text', type: 'color' }),
|
||||||
|
Option({ opt: options.theme.bar.buttons.modules.hyprsunset.icon, title: 'Icon', type: 'color' }),
|
||||||
|
Option({
|
||||||
|
opt: options.theme.bar.buttons.modules.hyprsunset.background,
|
||||||
|
title: 'Label Background',
|
||||||
|
type: 'color',
|
||||||
|
}),
|
||||||
|
Option({
|
||||||
|
opt: options.theme.bar.buttons.modules.hyprsunset.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.hyprsunset.border, title: 'Border', type: 'color' }),
|
||||||
|
|
||||||
Header('Power'),
|
Header('Power'),
|
||||||
Option({ opt: options.theme.bar.buttons.modules.power.icon, title: 'Icon', type: 'color' }),
|
Option({ opt: options.theme.bar.buttons.modules.power.icon, title: 'Icon', type: 'color' }),
|
||||||
Option({
|
Option({
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ export const runAsyncCommand: RunAsyncCommand = (cmd, events, fn, postInputUpdat
|
|||||||
.catch((err) => console.error(`Error running command "${cmd}": ${err})`));
|
.catch((err) => console.error(`Error running command "${cmd}": ${err})`));
|
||||||
};
|
};
|
||||||
|
|
||||||
export function throttle<T extends ThrottleFn>(func: T, limit: number): T {
|
export function throttleInput<T extends ThrottleFn>(func: T, limit: number): T {
|
||||||
let inThrottle: boolean;
|
let inThrottle: boolean;
|
||||||
return function (this: ThisParameterType<T>, ...args: Parameters<T>) {
|
return function (this: ThisParameterType<T>, ...args: Parameters<T>) {
|
||||||
if (!inThrottle) {
|
if (!inThrottle) {
|
||||||
@@ -50,9 +50,12 @@ export function throttle<T extends ThrottleFn>(func: T, limit: number): T {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const throttledScrollHandler = (interval: number): ThrottleFn =>
|
export const throttledScrollHandler = (interval: number): ThrottleFn =>
|
||||||
throttle((cmd: string, events: EventArgs, fn: ThrottleFnCallback, postInputUpdater?: VariableType<boolean>) => {
|
throttleInput(
|
||||||
runAsyncCommand(cmd, events, fn, postInputUpdater);
|
(cmd: string, events: EventArgs, fn: ThrottleFnCallback, postInputUpdater?: VariableType<boolean>) => {
|
||||||
}, 200 / interval);
|
runAsyncCommand(cmd, events, fn, postInputUpdater);
|
||||||
|
},
|
||||||
|
200 / interval,
|
||||||
|
);
|
||||||
|
|
||||||
const dummyVar = Variable('');
|
const dummyVar = Variable('');
|
||||||
|
|
||||||
|
|||||||
@@ -24,6 +24,7 @@ import {
|
|||||||
Submap,
|
Submap,
|
||||||
Weather,
|
Weather,
|
||||||
Power,
|
Power,
|
||||||
|
Hyprsunset,
|
||||||
} from './Exports';
|
} from './Exports';
|
||||||
|
|
||||||
import { BarItemBox as WidgetContainer } from '../shared/barItemBox.js';
|
import { BarItemBox as WidgetContainer } from '../shared/barItemBox.js';
|
||||||
@@ -64,7 +65,8 @@ type Section =
|
|||||||
| 'submap'
|
| 'submap'
|
||||||
| 'weather'
|
| 'weather'
|
||||||
| 'power'
|
| 'power'
|
||||||
| 'systray';
|
| 'systray'
|
||||||
|
| 'hyprsunset';
|
||||||
|
|
||||||
type Layout = {
|
type Layout = {
|
||||||
left: Section[];
|
left: Section[];
|
||||||
@@ -121,6 +123,7 @@ const widget = {
|
|||||||
submap: (): Button<Child, Attribute> => WidgetContainer(Submap()),
|
submap: (): Button<Child, Attribute> => WidgetContainer(Submap()),
|
||||||
weather: (): Button<Child, Attribute> => WidgetContainer(Weather()),
|
weather: (): Button<Child, Attribute> => WidgetContainer(Weather()),
|
||||||
power: (): Button<Child, Attribute> => WidgetContainer(Power()),
|
power: (): Button<Child, Attribute> => WidgetContainer(Power()),
|
||||||
|
hyprsunset: (): Button<Child, Attribute> => WidgetContainer(Hyprsunset()),
|
||||||
};
|
};
|
||||||
|
|
||||||
type GdkMonitors = {
|
type GdkMonitors = {
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ import { Updates } from 'customModules/updates/index';
|
|||||||
import { Submap } from 'customModules/submap/index';
|
import { Submap } from 'customModules/submap/index';
|
||||||
import { Weather } from 'customModules/weather/index';
|
import { Weather } from 'customModules/weather/index';
|
||||||
import { Power } from 'customModules/power/index';
|
import { Power } from 'customModules/power/index';
|
||||||
|
import { Hyprsunset } from 'customModules/hyprsunset/index';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
Menu,
|
Menu,
|
||||||
@@ -46,4 +47,5 @@ export {
|
|||||||
Submap,
|
Submap,
|
||||||
Weather,
|
Weather,
|
||||||
Power,
|
Power,
|
||||||
|
Hyprsunset,
|
||||||
};
|
};
|
||||||
|
|||||||
22
options.ts
22
options.ts
@@ -377,6 +377,15 @@ const options = mkOptions(OPTIONS, {
|
|||||||
icon_background: opt(colors.base2),
|
icon_background: opt(colors.base2),
|
||||||
spacing: opt('0.45em'),
|
spacing: opt('0.45em'),
|
||||||
},
|
},
|
||||||
|
hyprsunset: {
|
||||||
|
enableBorder: opt(false),
|
||||||
|
border: opt(colors.peach),
|
||||||
|
background: opt(colors.base2),
|
||||||
|
text: opt(colors.peach),
|
||||||
|
icon: opt(colors.peach),
|
||||||
|
icon_background: opt(colors.base2),
|
||||||
|
spacing: opt('0.45em'),
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
menus: {
|
menus: {
|
||||||
@@ -1095,6 +1104,19 @@ const options = mkOptions(OPTIONS, {
|
|||||||
scrollUp: opt(''),
|
scrollUp: opt(''),
|
||||||
scrollDown: opt(''),
|
scrollDown: opt(''),
|
||||||
},
|
},
|
||||||
|
hyprsunset: {
|
||||||
|
temperature: opt('6000k'),
|
||||||
|
label: opt(true),
|
||||||
|
onIcon: opt(''),
|
||||||
|
offIcon: opt(''),
|
||||||
|
onLabel: opt('On'),
|
||||||
|
offLabel: opt('Off'),
|
||||||
|
pollingInterval: opt(1000 * 2),
|
||||||
|
rightClick: opt(''),
|
||||||
|
middleClick: opt(''),
|
||||||
|
scrollUp: opt(''),
|
||||||
|
scrollDown: opt(''),
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@@ -394,3 +394,30 @@
|
|||||||
// custom font size
|
// custom font size
|
||||||
1.3em //
|
1.3em //
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* #################################
|
||||||
|
* # Hyprsunset Styling #
|
||||||
|
* #################################
|
||||||
|
*/
|
||||||
|
@include styleModule(
|
||||||
|
//
|
||||||
|
// class name
|
||||||
|
'hyprsunset',
|
||||||
|
// label color
|
||||||
|
$bar-buttons-modules-hyprsunset-text,
|
||||||
|
// icon color
|
||||||
|
$bar-buttons-modules-hyprsunset-icon,
|
||||||
|
// icon background if split style is used
|
||||||
|
$bar-buttons-modules-hyprsunset-icon_background,
|
||||||
|
// label background
|
||||||
|
$bar-buttons-modules-hyprsunset-background,
|
||||||
|
// inner spacing
|
||||||
|
$bar-buttons-modules-hyprsunset-spacing,
|
||||||
|
// if border enabled
|
||||||
|
$bar-buttons-modules-hyprsunset-enableBorder,
|
||||||
|
// border color
|
||||||
|
$bar-buttons-modules-hyprsunset-border,
|
||||||
|
// custom font size
|
||||||
|
1.3em //
|
||||||
|
);
|
||||||
|
|||||||
@@ -1,348 +1,354 @@
|
|||||||
{
|
{
|
||||||
"theme.bar.menus.background": "#232634",
|
"theme.bar.menus.background": "#232634",
|
||||||
"theme.bar.background": "#232634",
|
"theme.bar.background": "#232634",
|
||||||
"theme.bar.buttons.media.icon": "#babbf1",
|
"theme.bar.buttons.media.icon": "#babbf1",
|
||||||
"theme.bar.buttons.media.text": "#babbf1",
|
"theme.bar.buttons.media.text": "#babbf1",
|
||||||
"theme.bar.buttons.icon": "#babbf1",
|
"theme.bar.buttons.icon": "#babbf1",
|
||||||
"theme.bar.buttons.text": "#babbf1",
|
"theme.bar.buttons.text": "#babbf1",
|
||||||
"theme.bar.buttons.hover": "#51576d",
|
"theme.bar.buttons.hover": "#51576d",
|
||||||
"theme.bar.buttons.background": "#303446",
|
"theme.bar.buttons.background": "#303446",
|
||||||
"theme.bar.menus.text": "#c6d0f5",
|
"theme.bar.menus.text": "#c6d0f5",
|
||||||
"theme.bar.menus.border.color": "#414559",
|
"theme.bar.menus.border.color": "#414559",
|
||||||
"theme.bar.buttons.media.background": "#303446",
|
"theme.bar.buttons.media.background": "#303446",
|
||||||
"theme.bar.menus.menu.volume.text": "#c6d0f5",
|
"theme.bar.menus.menu.volume.text": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.volume.card.color": "#292c3c",
|
"theme.bar.menus.menu.volume.card.color": "#292c3c",
|
||||||
"theme.bar.menus.menu.volume.label.color": "#ea999c",
|
"theme.bar.menus.menu.volume.label.color": "#ea999c",
|
||||||
"theme.bar.menus.popover.text": "#babbf1",
|
"theme.bar.menus.popover.text": "#babbf1",
|
||||||
"theme.bar.menus.popover.background": "#232634",
|
"theme.bar.menus.popover.background": "#232634",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#e78284",
|
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#e78284",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#e78284",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#e78284",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#a6d189",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#a6d189",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#232634",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#232634",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#c6d0f5",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#babbf1",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#babbf1",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#414559",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#414559",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#232634",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#232634",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#292c3c",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#292c3c",
|
||||||
"theme.bar.menus.menu.notifications.switch.puck": "#51576d",
|
"theme.bar.menus.menu.notifications.switch.puck": "#51576d",
|
||||||
"theme.bar.menus.menu.notifications.switch.disabled": "#414559",
|
"theme.bar.menus.menu.notifications.switch.disabled": "#414559",
|
||||||
"theme.bar.menus.menu.notifications.switch.enabled": "#babbf1",
|
"theme.bar.menus.menu.notifications.switch.enabled": "#babbf1",
|
||||||
"theme.bar.menus.menu.notifications.clear": "#e78284",
|
"theme.bar.menus.menu.notifications.clear": "#e78284",
|
||||||
"theme.bar.menus.menu.notifications.switch_divider": "#51576d",
|
"theme.bar.menus.menu.notifications.switch_divider": "#51576d",
|
||||||
"theme.bar.menus.menu.notifications.border": "#414559",
|
"theme.bar.menus.menu.notifications.border": "#414559",
|
||||||
"theme.bar.menus.menu.notifications.card": "#292c3c",
|
"theme.bar.menus.menu.notifications.card": "#292c3c",
|
||||||
"theme.bar.menus.menu.notifications.background": "#232634",
|
"theme.bar.menus.menu.notifications.background": "#232634",
|
||||||
"theme.bar.menus.menu.notifications.no_notifications_label": "#414559",
|
"theme.bar.menus.menu.notifications.no_notifications_label": "#414559",
|
||||||
"theme.bar.menus.menu.notifications.label": "#babbf1",
|
"theme.bar.menus.menu.notifications.label": "#babbf1",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#f4b8e4",
|
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#f4b8e4",
|
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#f4b8e4",
|
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#a6d189",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#a6d189",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#a6d189",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#a6d189",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#a6d189",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#a6d189",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#e5c890",
|
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#e5c890",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#e5c890",
|
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#e5c890",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#e5c890",
|
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#e5c890",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#ea999c",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#ea999c",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#ea999c",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#ea999c",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#ea999c",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#ea999c",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#51576d",
|
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#51576d",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#babbf1",
|
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#babbf1",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#ca9ee6",
|
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#ca9ee6",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#81c8be",
|
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#81c8be",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#ea999c",
|
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#ea999c",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#e5c890",
|
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#e5c890",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#f4b8e4",
|
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.text": "#232634",
|
"theme.bar.menus.menu.dashboard.controls.input.text": "#232634",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.background": "#f4b8e4",
|
"theme.bar.menus.menu.dashboard.controls.input.background": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.text": "#232634",
|
"theme.bar.menus.menu.dashboard.controls.volume.text": "#232634",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.background": "#ea999c",
|
"theme.bar.menus.menu.dashboard.controls.volume.background": "#ea999c",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#232634",
|
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#232634",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#e5c890",
|
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#e5c890",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#232634",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#232634",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#99d1db",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#99d1db",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#232634",
|
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#232634",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#ca9ee6",
|
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#ca9ee6",
|
||||||
"theme.bar.menus.menu.dashboard.controls.disabled": "#626880",
|
"theme.bar.menus.menu.dashboard.controls.disabled": "#626880",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#a6d189",
|
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#a6d189",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.text": "#232634",
|
"theme.bar.menus.menu.dashboard.shortcuts.text": "#232634",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.background": "#babbf1",
|
"theme.bar.menus.menu.dashboard.shortcuts.background": "#babbf1",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#99d1db",
|
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#99d1db",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.logout": "#a6d189",
|
"theme.bar.menus.menu.dashboard.powermenu.logout": "#a6d189",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.restart": "#ef9f76",
|
"theme.bar.menus.menu.dashboard.powermenu.restart": "#ef9f76",
|
||||||
"theme.bar.menus.menu.dashboard.profile.name": "#f4b8e4",
|
"theme.bar.menus.menu.dashboard.profile.name": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.dashboard.border.color": "#414559",
|
"theme.bar.menus.menu.dashboard.border.color": "#414559",
|
||||||
"theme.bar.menus.menu.dashboard.background.color": "#232634",
|
"theme.bar.menus.menu.dashboard.background.color": "#232634",
|
||||||
"theme.bar.menus.menu.dashboard.card.color": "#292c3c",
|
"theme.bar.menus.menu.dashboard.card.color": "#292c3c",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#f4b8e4",
|
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.icon": "#f4b8e4",
|
"theme.bar.menus.menu.clock.weather.hourly.icon": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.time": "#f4b8e4",
|
"theme.bar.menus.menu.clock.weather.hourly.time": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#99d1db",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#99d1db",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#8caaee",
|
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#8caaee",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#babbf1",
|
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#babbf1",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#ef9f76",
|
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#ef9f76",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#e78284",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#e78284",
|
||||||
"theme.bar.menus.menu.clock.weather.stats": "#f4b8e4",
|
"theme.bar.menus.menu.clock.weather.stats": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.clock.weather.status": "#81c8be",
|
"theme.bar.menus.menu.clock.weather.status": "#81c8be",
|
||||||
"theme.bar.menus.menu.clock.weather.temperature": "#c6d0f5",
|
"theme.bar.menus.menu.clock.weather.temperature": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.clock.weather.icon": "#f4b8e4",
|
"theme.bar.menus.menu.clock.weather.icon": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.clock.calendar.contextdays": "#626880",
|
"theme.bar.menus.menu.clock.calendar.contextdays": "#626880",
|
||||||
"theme.bar.menus.menu.clock.calendar.days": "#c6d0f5",
|
"theme.bar.menus.menu.clock.calendar.days": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.clock.calendar.currentday": "#f4b8e4",
|
"theme.bar.menus.menu.clock.calendar.currentday": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.clock.calendar.paginator": "#f4b8e4",
|
"theme.bar.menus.menu.clock.calendar.paginator": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.clock.calendar.weekdays": "#f4b8e4",
|
"theme.bar.menus.menu.clock.calendar.weekdays": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.clock.calendar.yearmonth": "#81c8be",
|
"theme.bar.menus.menu.clock.calendar.yearmonth": "#81c8be",
|
||||||
"theme.bar.menus.menu.clock.time.timeperiod": "#81c8be",
|
"theme.bar.menus.menu.clock.time.timeperiod": "#81c8be",
|
||||||
"theme.bar.menus.menu.clock.time.time": "#f4b8e4",
|
"theme.bar.menus.menu.clock.time.time": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.clock.text": "#c6d0f5",
|
"theme.bar.menus.menu.clock.text": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.clock.border.color": "#414559",
|
"theme.bar.menus.menu.clock.border.color": "#414559",
|
||||||
"theme.bar.menus.menu.clock.background.color": "#232634",
|
"theme.bar.menus.menu.clock.background.color": "#232634",
|
||||||
"theme.bar.menus.menu.clock.card.color": "#292c3c",
|
"theme.bar.menus.menu.clock.card.color": "#292c3c",
|
||||||
"theme.bar.menus.menu.battery.slider.puck": "#737994",
|
"theme.bar.menus.menu.battery.slider.puck": "#737994",
|
||||||
"theme.bar.menus.menu.battery.slider.backgroundhover": "#51576d",
|
"theme.bar.menus.menu.battery.slider.backgroundhover": "#51576d",
|
||||||
"theme.bar.menus.menu.battery.slider.background": "#626880",
|
"theme.bar.menus.menu.battery.slider.background": "#626880",
|
||||||
"theme.bar.menus.menu.battery.slider.primary": "#e5c890",
|
"theme.bar.menus.menu.battery.slider.primary": "#e5c890",
|
||||||
"theme.bar.menus.menu.battery.icons.active": "#e5c890",
|
"theme.bar.menus.menu.battery.icons.active": "#e5c890",
|
||||||
"theme.bar.menus.menu.battery.icons.passive": "#949cbb",
|
"theme.bar.menus.menu.battery.icons.passive": "#949cbb",
|
||||||
"theme.bar.menus.menu.battery.listitems.active": "#e5c890",
|
"theme.bar.menus.menu.battery.listitems.active": "#e5c890",
|
||||||
"theme.bar.menus.menu.battery.listitems.passive": "#c6d0f5",
|
"theme.bar.menus.menu.battery.listitems.passive": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.battery.text": "#c6d0f5",
|
"theme.bar.menus.menu.battery.text": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.battery.label.color": "#e5c890",
|
"theme.bar.menus.menu.battery.label.color": "#e5c890",
|
||||||
"theme.bar.menus.menu.battery.border.color": "#414559",
|
"theme.bar.menus.menu.battery.border.color": "#414559",
|
||||||
"theme.bar.menus.menu.battery.background.color": "#232634",
|
"theme.bar.menus.menu.battery.background.color": "#232634",
|
||||||
"theme.bar.menus.menu.battery.card.color": "#292c3c",
|
"theme.bar.menus.menu.battery.card.color": "#292c3c",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#292c3c",
|
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#292c3c",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.text": "#c6d0f5",
|
"theme.bar.menus.menu.systray.dropdownmenu.text": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.background": "#232634",
|
"theme.bar.menus.menu.systray.dropdownmenu.background": "#232634",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#99d1db",
|
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#99d1db",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#c6d0f5",
|
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.active": "#99d1db",
|
"theme.bar.menus.menu.bluetooth.icons.active": "#99d1db",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.passive": "#949cbb",
|
"theme.bar.menus.menu.bluetooth.icons.passive": "#949cbb",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.active": "#99d1db",
|
"theme.bar.menus.menu.bluetooth.listitems.active": "#99d1db",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.passive": "#c6d0f5",
|
"theme.bar.menus.menu.bluetooth.listitems.passive": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.puck": "#51576d",
|
"theme.bar.menus.menu.bluetooth.switch.puck": "#51576d",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.disabled": "#414559",
|
"theme.bar.menus.menu.bluetooth.switch.disabled": "#414559",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.enabled": "#99d1db",
|
"theme.bar.menus.menu.bluetooth.switch.enabled": "#99d1db",
|
||||||
"theme.bar.menus.menu.bluetooth.switch_divider": "#51576d",
|
"theme.bar.menus.menu.bluetooth.switch_divider": "#51576d",
|
||||||
"theme.bar.menus.menu.bluetooth.status": "#737994",
|
"theme.bar.menus.menu.bluetooth.status": "#737994",
|
||||||
"theme.bar.menus.menu.bluetooth.text": "#c6d0f5",
|
"theme.bar.menus.menu.bluetooth.text": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.bluetooth.label.color": "#99d1db",
|
"theme.bar.menus.menu.bluetooth.label.color": "#99d1db",
|
||||||
"theme.bar.menus.menu.bluetooth.border.color": "#414559",
|
"theme.bar.menus.menu.bluetooth.border.color": "#414559",
|
||||||
"theme.bar.menus.menu.bluetooth.background.color": "#232634",
|
"theme.bar.menus.menu.bluetooth.background.color": "#232634",
|
||||||
"theme.bar.menus.menu.bluetooth.card.color": "#292c3c",
|
"theme.bar.menus.menu.bluetooth.card.color": "#292c3c",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.active": "#ca9ee6",
|
"theme.bar.menus.menu.network.iconbuttons.active": "#ca9ee6",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.passive": "#c6d0f5",
|
"theme.bar.menus.menu.network.iconbuttons.passive": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.network.icons.active": "#ca9ee6",
|
"theme.bar.menus.menu.network.icons.active": "#ca9ee6",
|
||||||
"theme.bar.menus.menu.network.icons.passive": "#949cbb",
|
"theme.bar.menus.menu.network.icons.passive": "#949cbb",
|
||||||
"theme.bar.menus.menu.network.listitems.active": "#ca9ee6",
|
"theme.bar.menus.menu.network.listitems.active": "#ca9ee6",
|
||||||
"theme.bar.menus.menu.network.listitems.passive": "#c6d0f5",
|
"theme.bar.menus.menu.network.listitems.passive": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.network.status.color": "#737994",
|
"theme.bar.menus.menu.network.status.color": "#737994",
|
||||||
"theme.bar.menus.menu.network.text": "#c6d0f5",
|
"theme.bar.menus.menu.network.text": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.network.label.color": "#ca9ee6",
|
"theme.bar.menus.menu.network.label.color": "#ca9ee6",
|
||||||
"theme.bar.menus.menu.network.border.color": "#414559",
|
"theme.bar.menus.menu.network.border.color": "#414559",
|
||||||
"theme.bar.menus.menu.network.background.color": "#232634",
|
"theme.bar.menus.menu.network.background.color": "#232634",
|
||||||
"theme.bar.menus.menu.network.card.color": "#292c3c",
|
"theme.bar.menus.menu.network.card.color": "#292c3c",
|
||||||
"theme.bar.menus.menu.volume.input_slider.puck": "#626880",
|
"theme.bar.menus.menu.volume.input_slider.puck": "#626880",
|
||||||
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#51576d",
|
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#51576d",
|
||||||
"theme.bar.menus.menu.volume.input_slider.background": "#626880",
|
"theme.bar.menus.menu.volume.input_slider.background": "#626880",
|
||||||
"theme.bar.menus.menu.volume.input_slider.primary": "#ea999c",
|
"theme.bar.menus.menu.volume.input_slider.primary": "#ea999c",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.puck": "#626880",
|
"theme.bar.menus.menu.volume.audio_slider.puck": "#626880",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#51576d",
|
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#51576d",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.background": "#626880",
|
"theme.bar.menus.menu.volume.audio_slider.background": "#626880",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.primary": "#ea999c",
|
"theme.bar.menus.menu.volume.audio_slider.primary": "#ea999c",
|
||||||
"theme.bar.menus.menu.volume.icons.active": "#ea999c",
|
"theme.bar.menus.menu.volume.icons.active": "#ea999c",
|
||||||
"theme.bar.menus.menu.volume.icons.passive": "#949cbb",
|
"theme.bar.menus.menu.volume.icons.passive": "#949cbb",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.active": "#ea999c",
|
"theme.bar.menus.menu.volume.iconbutton.active": "#ea999c",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.passive": "#c6d0f5",
|
"theme.bar.menus.menu.volume.iconbutton.passive": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.volume.listitems.active": "#ea999c",
|
"theme.bar.menus.menu.volume.listitems.active": "#ea999c",
|
||||||
"theme.bar.menus.menu.volume.listitems.passive": "#c6d0f5",
|
"theme.bar.menus.menu.volume.listitems.passive": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.volume.border.color": "#414559",
|
"theme.bar.menus.menu.volume.border.color": "#414559",
|
||||||
"theme.bar.menus.menu.volume.background.color": "#232634",
|
"theme.bar.menus.menu.volume.background.color": "#232634",
|
||||||
"theme.bar.menus.menu.media.slider.puck": "#737994",
|
"theme.bar.menus.menu.media.slider.puck": "#737994",
|
||||||
"theme.bar.menus.menu.media.slider.backgroundhover": "#51576d",
|
"theme.bar.menus.menu.media.slider.backgroundhover": "#51576d",
|
||||||
"theme.bar.menus.menu.media.slider.background": "#626880",
|
"theme.bar.menus.menu.media.slider.background": "#626880",
|
||||||
"theme.bar.menus.menu.media.slider.primary": "#f4b8e4",
|
"theme.bar.menus.menu.media.slider.primary": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.media.buttons.text": "#232634",
|
"theme.bar.menus.menu.media.buttons.text": "#232634",
|
||||||
"theme.bar.menus.menu.media.buttons.background": "#babbf1",
|
"theme.bar.menus.menu.media.buttons.background": "#babbf1",
|
||||||
"theme.bar.menus.menu.media.buttons.enabled": "#81c8be",
|
"theme.bar.menus.menu.media.buttons.enabled": "#81c8be",
|
||||||
"theme.bar.menus.menu.media.buttons.inactive": "#626880",
|
"theme.bar.menus.menu.media.buttons.inactive": "#626880",
|
||||||
"theme.bar.menus.menu.media.border.color": "#414559",
|
"theme.bar.menus.menu.media.border.color": "#414559",
|
||||||
"theme.bar.menus.menu.media.background.color": "#232634",
|
"theme.bar.menus.menu.media.background.color": "#232634",
|
||||||
"theme.bar.menus.menu.media.album": "#f4b8e4",
|
"theme.bar.menus.menu.media.album": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.media.artist": "#81c8be",
|
"theme.bar.menus.menu.media.artist": "#81c8be",
|
||||||
"theme.bar.menus.menu.media.song": "#babbf1",
|
"theme.bar.menus.menu.media.song": "#babbf1",
|
||||||
"theme.bar.menus.tooltip.text": "#c6d0f5",
|
"theme.bar.menus.tooltip.text": "#c6d0f5",
|
||||||
"theme.bar.menus.tooltip.background": "#232634",
|
"theme.bar.menus.tooltip.background": "#232634",
|
||||||
"theme.bar.menus.dropdownmenu.divider": "#292c3c",
|
"theme.bar.menus.dropdownmenu.divider": "#292c3c",
|
||||||
"theme.bar.menus.dropdownmenu.text": "#c6d0f5",
|
"theme.bar.menus.dropdownmenu.text": "#c6d0f5",
|
||||||
"theme.bar.menus.dropdownmenu.background": "#232634",
|
"theme.bar.menus.dropdownmenu.background": "#232634",
|
||||||
"theme.bar.menus.slider.puck": "#737994",
|
"theme.bar.menus.slider.puck": "#737994",
|
||||||
"theme.bar.menus.slider.backgroundhover": "#51576d",
|
"theme.bar.menus.slider.backgroundhover": "#51576d",
|
||||||
"theme.bar.menus.slider.background": "#626880",
|
"theme.bar.menus.slider.background": "#626880",
|
||||||
"theme.bar.menus.slider.primary": "#babbf1",
|
"theme.bar.menus.slider.primary": "#babbf1",
|
||||||
"theme.bar.menus.progressbar.background": "#51576d",
|
"theme.bar.menus.progressbar.background": "#51576d",
|
||||||
"theme.bar.menus.progressbar.foreground": "#babbf1",
|
"theme.bar.menus.progressbar.foreground": "#babbf1",
|
||||||
"theme.bar.menus.iconbuttons.active": "#babbf1",
|
"theme.bar.menus.iconbuttons.active": "#babbf1",
|
||||||
"theme.bar.menus.iconbuttons.passive": "#c6d0f5",
|
"theme.bar.menus.iconbuttons.passive": "#c6d0f5",
|
||||||
"theme.bar.menus.buttons.text": "#232634",
|
"theme.bar.menus.buttons.text": "#232634",
|
||||||
"theme.bar.menus.buttons.disabled": "#626880",
|
"theme.bar.menus.buttons.disabled": "#626880",
|
||||||
"theme.bar.menus.buttons.active": "#f4b8e4",
|
"theme.bar.menus.buttons.active": "#f4b8e4",
|
||||||
"theme.bar.menus.buttons.default": "#babbf1",
|
"theme.bar.menus.buttons.default": "#babbf1",
|
||||||
"theme.bar.menus.switch.puck": "#51576d",
|
"theme.bar.menus.switch.puck": "#51576d",
|
||||||
"theme.bar.menus.switch.disabled": "#414559",
|
"theme.bar.menus.switch.disabled": "#414559",
|
||||||
"theme.bar.menus.switch.enabled": "#babbf1",
|
"theme.bar.menus.switch.enabled": "#babbf1",
|
||||||
"theme.bar.menus.icons.active": "#babbf1",
|
"theme.bar.menus.icons.active": "#babbf1",
|
||||||
"theme.bar.menus.icons.passive": "#626880",
|
"theme.bar.menus.icons.passive": "#626880",
|
||||||
"theme.bar.menus.listitems.active": "#babbf1",
|
"theme.bar.menus.listitems.active": "#babbf1",
|
||||||
"theme.bar.menus.listitems.passive": "#c6d0f5",
|
"theme.bar.menus.listitems.passive": "#c6d0f5",
|
||||||
"theme.bar.menus.label": "#babbf1",
|
"theme.bar.menus.label": "#babbf1",
|
||||||
"theme.bar.menus.feinttext": "#414559",
|
"theme.bar.menus.feinttext": "#414559",
|
||||||
"theme.bar.menus.dimtext": "#626880",
|
"theme.bar.menus.dimtext": "#626880",
|
||||||
"theme.bar.menus.cards": "#292c3c",
|
"theme.bar.menus.cards": "#292c3c",
|
||||||
"theme.bar.buttons.notifications.total": "#babbf1",
|
"theme.bar.buttons.notifications.total": "#babbf1",
|
||||||
"theme.bar.buttons.notifications.icon": "#babbf1",
|
"theme.bar.buttons.notifications.icon": "#babbf1",
|
||||||
"theme.bar.buttons.notifications.background": "#303446",
|
"theme.bar.buttons.notifications.background": "#303446",
|
||||||
"theme.bar.buttons.clock.icon": "#f4b8e4",
|
"theme.bar.buttons.clock.icon": "#f4b8e4",
|
||||||
"theme.bar.buttons.clock.text": "#f4b8e4",
|
"theme.bar.buttons.clock.text": "#f4b8e4",
|
||||||
"theme.bar.buttons.clock.background": "#303446",
|
"theme.bar.buttons.clock.background": "#303446",
|
||||||
"theme.bar.buttons.battery.icon": "#e5c890",
|
"theme.bar.buttons.battery.icon": "#e5c890",
|
||||||
"theme.bar.buttons.battery.text": "#e5c890",
|
"theme.bar.buttons.battery.text": "#e5c890",
|
||||||
"theme.bar.buttons.battery.background": "#303446",
|
"theme.bar.buttons.battery.background": "#303446",
|
||||||
"theme.bar.buttons.systray.background": "#303446",
|
"theme.bar.buttons.systray.background": "#303446",
|
||||||
"theme.bar.buttons.bluetooth.icon": "#99d1db",
|
"theme.bar.buttons.bluetooth.icon": "#99d1db",
|
||||||
"theme.bar.buttons.bluetooth.text": "#99d1db",
|
"theme.bar.buttons.bluetooth.text": "#99d1db",
|
||||||
"theme.bar.buttons.bluetooth.background": "#303446",
|
"theme.bar.buttons.bluetooth.background": "#303446",
|
||||||
"theme.bar.buttons.network.icon": "#ca9ee6",
|
"theme.bar.buttons.network.icon": "#ca9ee6",
|
||||||
"theme.bar.buttons.network.text": "#ca9ee6",
|
"theme.bar.buttons.network.text": "#ca9ee6",
|
||||||
"theme.bar.buttons.network.background": "#303446",
|
"theme.bar.buttons.network.background": "#303446",
|
||||||
"theme.bar.buttons.volume.icon": "#ea999c",
|
"theme.bar.buttons.volume.icon": "#ea999c",
|
||||||
"theme.bar.buttons.volume.text": "#ea999c",
|
"theme.bar.buttons.volume.text": "#ea999c",
|
||||||
"theme.bar.buttons.volume.background": "#303446",
|
"theme.bar.buttons.volume.background": "#303446",
|
||||||
"theme.bar.buttons.windowtitle.icon": "#f4b8e4",
|
"theme.bar.buttons.windowtitle.icon": "#f4b8e4",
|
||||||
"theme.bar.buttons.windowtitle.text": "#f4b8e4",
|
"theme.bar.buttons.windowtitle.text": "#f4b8e4",
|
||||||
"theme.bar.buttons.windowtitle.background": "#303446",
|
"theme.bar.buttons.windowtitle.background": "#303446",
|
||||||
"theme.bar.buttons.workspaces.active": "#f4b8e4",
|
"theme.bar.buttons.workspaces.active": "#f4b8e4",
|
||||||
"theme.bar.buttons.workspaces.occupied": "#eebebe",
|
"theme.bar.buttons.workspaces.occupied": "#eebebe",
|
||||||
"theme.bar.buttons.workspaces.available": "#99d1db",
|
"theme.bar.buttons.workspaces.available": "#99d1db",
|
||||||
"theme.bar.buttons.workspaces.hover": "#51576d",
|
"theme.bar.buttons.workspaces.hover": "#51576d",
|
||||||
"theme.bar.buttons.workspaces.background": "#303446",
|
"theme.bar.buttons.workspaces.background": "#303446",
|
||||||
"theme.bar.buttons.dashboard.icon": "#e5c890",
|
"theme.bar.buttons.dashboard.icon": "#e5c890",
|
||||||
"theme.bar.buttons.dashboard.background": "#303446",
|
"theme.bar.buttons.dashboard.background": "#303446",
|
||||||
"theme.osd.label": "#babbf1",
|
"theme.osd.label": "#babbf1",
|
||||||
"theme.osd.icon": "#232634",
|
"theme.osd.icon": "#232634",
|
||||||
"theme.osd.bar_overflow_color": "#e78284",
|
"theme.osd.bar_overflow_color": "#e78284",
|
||||||
"theme.osd.bar_empty_color": "#414559",
|
"theme.osd.bar_empty_color": "#414559",
|
||||||
"theme.osd.bar_color": "#babbf1",
|
"theme.osd.bar_color": "#babbf1",
|
||||||
"theme.osd.icon_container": "#babbf1",
|
"theme.osd.icon_container": "#babbf1",
|
||||||
"theme.osd.bar_container": "#232634",
|
"theme.osd.bar_container": "#232634",
|
||||||
"theme.notification.close_button.label": "#232634",
|
"theme.notification.close_button.label": "#232634",
|
||||||
"theme.notification.close_button.background": "#e78284",
|
"theme.notification.close_button.background": "#e78284",
|
||||||
"theme.notification.labelicon": "#babbf1",
|
"theme.notification.labelicon": "#babbf1",
|
||||||
"theme.notification.text": "#c6d0f5",
|
"theme.notification.text": "#c6d0f5",
|
||||||
"theme.notification.time": "#838ba7",
|
"theme.notification.time": "#838ba7",
|
||||||
"theme.notification.border": "#414559",
|
"theme.notification.border": "#414559",
|
||||||
"theme.notification.label": "#babbf1",
|
"theme.notification.label": "#babbf1",
|
||||||
"theme.notification.actions.text": "#232634",
|
"theme.notification.actions.text": "#232634",
|
||||||
"theme.notification.actions.background": "#babbf1",
|
"theme.notification.actions.background": "#babbf1",
|
||||||
"theme.notification.background": "#232634",
|
"theme.notification.background": "#232634",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
|
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#c678dd",
|
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#c678dd",
|
||||||
"theme.bar.menus.menu.media.card.color": "#292c3c",
|
"theme.bar.menus.menu.media.card.color": "#292c3c",
|
||||||
"theme.bar.menus.check_radio_button.background": "#232534",
|
"theme.bar.menus.check_radio_button.background": "#232534",
|
||||||
"theme.bar.menus.check_radio_button.active": "#b9baf1",
|
"theme.bar.menus.check_radio_button.active": "#b9baf1",
|
||||||
"theme.bar.buttons.style": "default",
|
"theme.bar.buttons.style": "default",
|
||||||
"theme.bar.menus.menu.notifications.pager.button": "#babbf1",
|
"theme.bar.menus.menu.notifications.pager.button": "#babbf1",
|
||||||
"theme.bar.menus.menu.notifications.scrollbar.color": "#babbf1",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#babbf1",
|
||||||
"theme.bar.menus.menu.notifications.pager.label": "#949cbb",
|
"theme.bar.menus.menu.notifications.pager.label": "#949cbb",
|
||||||
"theme.bar.menus.menu.notifications.pager.background": "#232634",
|
"theme.bar.menus.menu.notifications.pager.background": "#232634",
|
||||||
"theme.bar.buttons.clock.icon_background": "#f4b8e4",
|
"theme.bar.buttons.clock.icon_background": "#f4b8e4",
|
||||||
"theme.bar.buttons.modules.ram.icon": "#e5c890",
|
"theme.bar.buttons.modules.ram.icon": "#e5c890",
|
||||||
"theme.bar.buttons.modules.storage.icon_background": "#e78284",
|
"theme.bar.buttons.modules.storage.icon_background": "#e78284",
|
||||||
"theme.bar.menus.popover.border": "#232634",
|
"theme.bar.menus.popover.border": "#232634",
|
||||||
"theme.bar.buttons.volume.icon_background": "#ea999c",
|
"theme.bar.buttons.volume.icon_background": "#ea999c",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#99d1db",
|
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#99d1db",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.text": "#ef9f76",
|
"theme.bar.menus.menu.power.buttons.restart.text": "#ef9f76",
|
||||||
"theme.bar.buttons.modules.updates.background": "#303446",
|
"theme.bar.buttons.modules.updates.background": "#303446",
|
||||||
"theme.bar.buttons.modules.storage.icon": "#e78284",
|
"theme.bar.buttons.modules.storage.icon": "#e78284",
|
||||||
"theme.bar.buttons.modules.netstat.background": "#303446",
|
"theme.bar.buttons.modules.netstat.background": "#303446",
|
||||||
"theme.bar.buttons.modules.weather.icon": "#babbf1",
|
"theme.bar.buttons.modules.weather.icon": "#babbf1",
|
||||||
"theme.bar.buttons.modules.netstat.text": "#a6d189",
|
"theme.bar.buttons.modules.netstat.text": "#a6d189",
|
||||||
"theme.bar.buttons.modules.storage.background": "#303446",
|
"theme.bar.buttons.modules.storage.background": "#303446",
|
||||||
"theme.bar.buttons.modules.power.icon": "#e78284",
|
"theme.bar.buttons.modules.power.icon": "#e78284",
|
||||||
"theme.bar.buttons.modules.storage.text": "#e78284",
|
"theme.bar.buttons.modules.storage.text": "#e78284",
|
||||||
"theme.bar.buttons.modules.cpu.background": "#303446",
|
"theme.bar.buttons.modules.cpu.background": "#303446",
|
||||||
"theme.bar.menus.menu.power.border.color": "#414559",
|
"theme.bar.menus.menu.power.border.color": "#414559",
|
||||||
"theme.bar.buttons.network.icon_background": "#caa6f7",
|
"theme.bar.buttons.network.icon_background": "#caa6f7",
|
||||||
"theme.bar.buttons.modules.power.icon_background": "#e78284",
|
"theme.bar.buttons.modules.power.icon_background": "#e78284",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon": "#232634",
|
"theme.bar.menus.menu.power.buttons.logout.icon": "#232634",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#ef9f76",
|
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#ef9f76",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon": "#232634",
|
"theme.bar.menus.menu.power.buttons.restart.icon": "#232634",
|
||||||
"theme.bar.buttons.modules.cpu.icon": "#e78284",
|
"theme.bar.buttons.modules.cpu.icon": "#e78284",
|
||||||
"theme.bar.buttons.battery.icon_background": "#e5c890",
|
"theme.bar.buttons.battery.icon_background": "#e5c890",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon_background": "#99d1db",
|
"theme.bar.buttons.modules.kbLayout.icon_background": "#99d1db",
|
||||||
"theme.bar.buttons.modules.weather.text": "#babbf1",
|
"theme.bar.buttons.modules.weather.text": "#babbf1",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#232634",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#232634",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.text": "#99d1db",
|
"theme.bar.menus.menu.power.buttons.sleep.text": "#99d1db",
|
||||||
"theme.bar.buttons.modules.weather.icon_background": "#babbf1",
|
"theme.bar.buttons.modules.weather.icon_background": "#babbf1",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.background": "#292c3c",
|
"theme.bar.menus.menu.power.buttons.shutdown.background": "#292c3c",
|
||||||
"theme.bar.buttons.media.icon_background": "#babbf1",
|
"theme.bar.buttons.media.icon_background": "#babbf1",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.background": "#292c3c",
|
"theme.bar.menus.menu.power.buttons.logout.background": "#292c3c",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon": "#99d1db",
|
"theme.bar.buttons.modules.kbLayout.icon": "#99d1db",
|
||||||
"theme.bar.buttons.modules.ram.icon_background": "#e5c890",
|
"theme.bar.buttons.modules.ram.icon_background": "#e5c890",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#e78284",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#e78284",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.text": "#e78284",
|
"theme.bar.menus.menu.power.buttons.shutdown.text": "#e78284",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.background": "#292c3c",
|
"theme.bar.menus.menu.power.buttons.sleep.background": "#292c3c",
|
||||||
"theme.bar.buttons.modules.ram.text": "#e5c890",
|
"theme.bar.buttons.modules.ram.text": "#e5c890",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.text": "#a6d189",
|
"theme.bar.menus.menu.power.buttons.logout.text": "#a6d189",
|
||||||
"theme.bar.buttons.modules.updates.icon_background": "#ca9ee6",
|
"theme.bar.buttons.modules.updates.icon_background": "#ca9ee6",
|
||||||
"theme.bar.buttons.modules.kbLayout.background": "#303446",
|
"theme.bar.buttons.modules.kbLayout.background": "#303446",
|
||||||
"theme.bar.buttons.modules.power.background": "#303446",
|
"theme.bar.buttons.modules.power.background": "#303446",
|
||||||
"theme.bar.buttons.modules.weather.background": "#303446",
|
"theme.bar.buttons.modules.weather.background": "#303446",
|
||||||
"theme.bar.buttons.icon_background": "#303446",
|
"theme.bar.buttons.icon_background": "#303446",
|
||||||
"theme.bar.menus.menu.power.background.color": "#232634",
|
"theme.bar.menus.menu.power.background.color": "#232634",
|
||||||
"theme.bar.buttons.modules.ram.background": "#303446",
|
"theme.bar.buttons.modules.ram.background": "#303446",
|
||||||
"theme.bar.buttons.modules.netstat.icon": "#a6d189",
|
"theme.bar.buttons.modules.netstat.icon": "#a6d189",
|
||||||
"theme.bar.buttons.windowtitle.icon_background": "#f4b8e4",
|
"theme.bar.buttons.windowtitle.icon_background": "#f4b8e4",
|
||||||
"theme.bar.buttons.modules.cpu.icon_background": "#e78284",
|
"theme.bar.buttons.modules.cpu.icon_background": "#e78284",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#a6d189",
|
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#a6d189",
|
||||||
"theme.bar.buttons.modules.updates.text": "#ca9ee6",
|
"theme.bar.buttons.modules.updates.text": "#ca9ee6",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon": "#232634",
|
"theme.bar.menus.menu.power.buttons.sleep.icon": "#232634",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
|
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.background": "#292c3c",
|
"theme.bar.menus.menu.power.buttons.restart.background": "#292c3c",
|
||||||
"theme.bar.buttons.modules.updates.icon": "#ca9ee6",
|
"theme.bar.buttons.modules.updates.icon": "#ca9ee6",
|
||||||
"theme.bar.buttons.modules.cpu.text": "#e78284",
|
"theme.bar.buttons.modules.cpu.text": "#e78284",
|
||||||
"theme.bar.buttons.modules.netstat.icon_background": "#a6d189",
|
"theme.bar.buttons.modules.netstat.icon_background": "#a6d189",
|
||||||
"theme.bar.buttons.modules.kbLayout.text": "#99d1db",
|
"theme.bar.buttons.modules.kbLayout.text": "#99d1db",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#babbf1",
|
"theme.bar.buttons.notifications.icon_background": "#babbf1",
|
||||||
"theme.bar.buttons.modules.power.border": "#e78284",
|
"theme.bar.buttons.modules.power.border": "#e78284",
|
||||||
"theme.bar.buttons.modules.weather.border": "#babbf1",
|
"theme.bar.buttons.modules.weather.border": "#babbf1",
|
||||||
"theme.bar.buttons.modules.updates.border": "#ca9ee6",
|
"theme.bar.buttons.modules.updates.border": "#ca9ee6",
|
||||||
"theme.bar.buttons.modules.kbLayout.border": "#99d1db",
|
"theme.bar.buttons.modules.kbLayout.border": "#99d1db",
|
||||||
"theme.bar.buttons.modules.netstat.border": "#a6d189",
|
"theme.bar.buttons.modules.netstat.border": "#a6d189",
|
||||||
"theme.bar.buttons.modules.storage.border": "#e78284",
|
"theme.bar.buttons.modules.storage.border": "#e78284",
|
||||||
"theme.bar.buttons.modules.cpu.border": "#e78284",
|
"theme.bar.buttons.modules.cpu.border": "#e78284",
|
||||||
"theme.bar.buttons.modules.ram.border": "#e5c890",
|
"theme.bar.buttons.modules.ram.border": "#e5c890",
|
||||||
"theme.bar.buttons.notifications.border": "#babbf1",
|
"theme.bar.buttons.notifications.border": "#babbf1",
|
||||||
"theme.bar.buttons.clock.border": "#f4b8e4",
|
"theme.bar.buttons.clock.border": "#f4b8e4",
|
||||||
"theme.bar.buttons.battery.border": "#e5c890",
|
"theme.bar.buttons.battery.border": "#e5c890",
|
||||||
"theme.bar.buttons.systray.border": "#51576d",
|
"theme.bar.buttons.systray.border": "#51576d",
|
||||||
"theme.bar.buttons.bluetooth.border": "#99d1db",
|
"theme.bar.buttons.bluetooth.border": "#99d1db",
|
||||||
"theme.bar.buttons.network.border": "#ca9ee6",
|
"theme.bar.buttons.network.border": "#ca9ee6",
|
||||||
"theme.bar.buttons.volume.border": "#ea999c",
|
"theme.bar.buttons.volume.border": "#ea999c",
|
||||||
"theme.bar.buttons.media.border": "#babbf1",
|
"theme.bar.buttons.media.border": "#babbf1",
|
||||||
"theme.bar.buttons.windowtitle.border": "#f4b8e4",
|
"theme.bar.buttons.windowtitle.border": "#f4b8e4",
|
||||||
"theme.bar.buttons.workspaces.border": "#232634",
|
"theme.bar.buttons.workspaces.border": "#232634",
|
||||||
"theme.bar.buttons.dashboard.border": "#e5c890",
|
"theme.bar.buttons.dashboard.border": "#e5c890",
|
||||||
"theme.bar.buttons.modules.submap.background": "#303446",
|
"theme.bar.buttons.modules.submap.background": "#303446",
|
||||||
"theme.bar.buttons.modules.submap.text": "#81c8be",
|
"theme.bar.buttons.modules.submap.text": "#81c8be",
|
||||||
"theme.bar.buttons.modules.submap.border": "#81c8be",
|
"theme.bar.buttons.modules.submap.border": "#81c8be",
|
||||||
"theme.bar.buttons.modules.submap.icon": "#81c8be",
|
"theme.bar.buttons.modules.submap.icon": "#81c8be",
|
||||||
"theme.bar.buttons.modules.submap.icon_background": "#303446",
|
"theme.bar.buttons.modules.submap.icon_background": "#303446",
|
||||||
"theme.bar.menus.menu.network.switch.enabled": "#ca9ee6",
|
"theme.bar.menus.menu.network.switch.enabled": "#ca9ee6",
|
||||||
"theme.bar.menus.menu.network.switch.disabled": "#414559",
|
"theme.bar.menus.menu.network.switch.disabled": "#414559",
|
||||||
"theme.bar.menus.menu.network.switch.puck": "#51576d",
|
"theme.bar.menus.menu.network.switch.puck": "#51576d",
|
||||||
"theme.bar.buttons.systray.customIcon": "#c6d0f5",
|
"theme.bar.buttons.systray.customIcon": "#c6d0f5",
|
||||||
"theme.bar.border.color": "#babbf1",
|
"theme.bar.border.color": "#babbf1",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#c6d0f5",
|
"theme.bar.menus.menu.media.timestamp": "#c6d0f5",
|
||||||
"theme.bar.buttons.borderColor": "#babbf1"
|
"theme.bar.buttons.borderColor": "#babbf1",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#e5c890",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#303446",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e5c890",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#e5c890",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#e5c890"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#c6d0f5",
|
"theme.bar.buttons.systray.customIcon": "#c6d0f5",
|
||||||
"theme.bar.border.color": "#babbf1",
|
"theme.bar.border.color": "#babbf1",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#c6d0f5",
|
"theme.bar.menus.menu.media.timestamp": "#c6d0f5",
|
||||||
"theme.bar.buttons.borderColor": "#babbf1"
|
"theme.bar.buttons.borderColor": "#babbf1",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e5c890",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#303446",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#e5c890",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#e5c890"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#c6d0f5",
|
"theme.bar.buttons.systray.customIcon": "#c6d0f5",
|
||||||
"theme.bar.border.color": "#babbf1",
|
"theme.bar.border.color": "#babbf1",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#c6d0f5",
|
"theme.bar.menus.menu.media.timestamp": "#c6d0f5",
|
||||||
"theme.bar.buttons.borderColor": "#babbf1"
|
"theme.bar.buttons.borderColor": "#babbf1",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#303446",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#e78284",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e78284",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#303446",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#e78284"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#4c4f69",
|
"theme.bar.buttons.systray.customIcon": "#4c4f69",
|
||||||
"theme.bar.border.color": "#7287fd",
|
"theme.bar.border.color": "#7287fd",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#4c4f69",
|
"theme.bar.menus.menu.media.timestamp": "#4c4f69",
|
||||||
"theme.bar.buttons.borderColor": "#7287fd"
|
"theme.bar.buttons.borderColor": "#7287fd",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#df8e1d",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#dcdfe8",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#df8e1d",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#df8e1d",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#df8e1d"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#4c4f69",
|
"theme.bar.buttons.systray.customIcon": "#4c4f69",
|
||||||
"theme.bar.border.color": "#7287fd",
|
"theme.bar.border.color": "#7287fd",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#4c4f69",
|
"theme.bar.menus.menu.media.timestamp": "#4c4f69",
|
||||||
"theme.bar.buttons.borderColor": "#7287fd"
|
"theme.bar.buttons.borderColor": "#7287fd",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#df8e1d",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#dcdfe8",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#df8e1d",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#df8e1d"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#4c4f69",
|
"theme.bar.buttons.systray.customIcon": "#4c4f69",
|
||||||
"theme.bar.border.color": "#7287fd",
|
"theme.bar.border.color": "#7287fd",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#4c4f69",
|
"theme.bar.menus.menu.media.timestamp": "#4c4f69",
|
||||||
"theme.bar.buttons.borderColor": "#7287fd"
|
"theme.bar.buttons.borderColor": "#7287fd",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#dcdfe8",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#d20f39",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#d20f39",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#dcdfe8",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#d20f39"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#cad3f5",
|
"theme.bar.buttons.systray.customIcon": "#cad3f5",
|
||||||
"theme.bar.border.color": "#b7bdf8",
|
"theme.bar.border.color": "#b7bdf8",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#cad3f5",
|
"theme.bar.menus.menu.media.timestamp": "#cad3f5",
|
||||||
"theme.bar.buttons.borderColor": "#b7bdf8"
|
"theme.bar.buttons.borderColor": "#b7bdf8",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#eed49f",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#24273a",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#eed49f",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#eed49f",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#eed49f"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#cad3f5",
|
"theme.bar.buttons.systray.customIcon": "#cad3f5",
|
||||||
"theme.bar.border.color": "#b7bdf8",
|
"theme.bar.border.color": "#b7bdf8",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#cad3f5",
|
"theme.bar.menus.menu.media.timestamp": "#cad3f5",
|
||||||
"theme.bar.buttons.borderColor": "#b7bdf8"
|
"theme.bar.buttons.borderColor": "#b7bdf8",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#eed49f",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#24273a",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#eed49f",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#eed49f"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#cad3f5",
|
"theme.bar.buttons.systray.customIcon": "#cad3f5",
|
||||||
"theme.bar.border.color": "#b7bdf8",
|
"theme.bar.border.color": "#b7bdf8",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#cad3f5",
|
"theme.bar.menus.menu.media.timestamp": "#cad3f5",
|
||||||
"theme.bar.buttons.borderColor": "#b7bdf8"
|
"theme.bar.buttons.borderColor": "#b7bdf8",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#24273a",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#ed8796",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#ed8796",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#24273a",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#ed8796"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.menus.menu.network.switch.enabled": "#cba6f7",
|
"theme.bar.menus.menu.network.switch.enabled": "#cba6f7",
|
||||||
"theme.bar.menus.menu.network.switch.disabled": "#313245",
|
"theme.bar.menus.menu.network.switch.disabled": "#313245",
|
||||||
"theme.bar.menus.menu.network.switch.puck": "#454759",
|
"theme.bar.menus.menu.network.switch.puck": "#454759",
|
||||||
"theme.bar.border.color": "#b4befe"
|
"theme.bar.border.color": "#b4befe",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#fab387",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#242438",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#242438",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#fab387",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#fab387"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.menus.menu.network.switch.enabled": "#cba6f7",
|
"theme.bar.menus.menu.network.switch.enabled": "#cba6f7",
|
||||||
"theme.bar.menus.menu.network.switch.disabled": "#313245",
|
"theme.bar.menus.menu.network.switch.disabled": "#313245",
|
||||||
"theme.bar.menus.menu.network.switch.puck": "#454759",
|
"theme.bar.menus.menu.network.switch.puck": "#454759",
|
||||||
"theme.bar.border.color": "#b4befe"
|
"theme.bar.border.color": "#b4befe",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#fab387",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#242438",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#242438",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#fab387",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#fab387"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.notification.actions.text": "#181825",
|
"theme.notification.actions.text": "#181825",
|
||||||
"theme.notification.actions.background": "#b4befd",
|
"theme.notification.actions.background": "#b4befd",
|
||||||
"theme.notification.background": "#181826",
|
"theme.notification.background": "#181826",
|
||||||
"theme.bar.border.color": "#b4befe"
|
"theme.bar.border.color": "#b4befe",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#242438",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#fab387",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#fab387",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#242438",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#fab387"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#d1d1d1",
|
"theme.bar.buttons.systray.customIcon": "#d1d1d1",
|
||||||
"theme.bar.border.color": "#f7d04b",
|
"theme.bar.border.color": "#f7d04b",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#FFD700",
|
"theme.bar.menus.menu.media.timestamp": "#FFD700",
|
||||||
"theme.bar.buttons.borderColor": "#FFD700"
|
"theme.bar.buttons.borderColor": "#FFD700",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#FFD700",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#121212",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#FFD700",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#FFD700",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#FFD700"
|
||||||
}
|
}
|
||||||
@@ -1,349 +1,353 @@
|
|||||||
{
|
{
|
||||||
"theme.bar.menus.menu.notifications.scrollbar.color": "#00ffff",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#00ffff",
|
||||||
"theme.bar.menus.menu.notifications.pager.label": "#9399B2",
|
"theme.bar.menus.menu.notifications.pager.label": "#9399B2",
|
||||||
"theme.bar.menus.menu.notifications.pager.button": "#00ffff",
|
"theme.bar.menus.menu.notifications.pager.button": "#00ffff",
|
||||||
"theme.bar.menus.menu.notifications.pager.background": "#0A0A0A",
|
"theme.bar.menus.menu.notifications.pager.background": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.notifications.switch.puck": "#333333",
|
"theme.bar.menus.menu.notifications.switch.puck": "#333333",
|
||||||
"theme.bar.menus.menu.notifications.switch.disabled": "#2A2A2A",
|
"theme.bar.menus.menu.notifications.switch.disabled": "#2A2A2A",
|
||||||
"theme.bar.menus.menu.notifications.switch.enabled": "#FFD700",
|
"theme.bar.menus.menu.notifications.switch.enabled": "#FFD700",
|
||||||
"theme.bar.menus.menu.notifications.clear": "#FF4500",
|
"theme.bar.menus.menu.notifications.clear": "#FF4500",
|
||||||
"theme.bar.menus.menu.notifications.switch_divider": "#333333",
|
"theme.bar.menus.menu.notifications.switch_divider": "#333333",
|
||||||
"theme.bar.menus.menu.notifications.border": "#2A2A2A",
|
"theme.bar.menus.menu.notifications.border": "#2A2A2A",
|
||||||
"theme.bar.menus.menu.notifications.card": "#1A1A1A",
|
"theme.bar.menus.menu.notifications.card": "#1A1A1A",
|
||||||
"theme.bar.menus.menu.notifications.background": "#0A0A0A",
|
"theme.bar.menus.menu.notifications.background": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.notifications.no_notifications_label": "#2A2A2A",
|
"theme.bar.menus.menu.notifications.no_notifications_label": "#2A2A2A",
|
||||||
"theme.bar.menus.menu.notifications.label": "#FFD700",
|
"theme.bar.menus.menu.notifications.label": "#FFD700",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon": "#0A0A0A",
|
"theme.bar.menus.menu.power.buttons.sleep.icon": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.text": "#00FFFF",
|
"theme.bar.menus.menu.power.buttons.sleep.text": "#00FFFF",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#00FFFF",
|
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#00FFFF",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.background": "#1A1A1A",
|
"theme.bar.menus.menu.power.buttons.sleep.background": "#1A1A1A",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon": "#0A0A0A",
|
"theme.bar.menus.menu.power.buttons.logout.icon": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.text": "#32CD32",
|
"theme.bar.menus.menu.power.buttons.logout.text": "#32CD32",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#32CD32",
|
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#32CD32",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.background": "#1A1A1A",
|
"theme.bar.menus.menu.power.buttons.logout.background": "#1A1A1A",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon": "#0A0A0A",
|
"theme.bar.menus.menu.power.buttons.restart.icon": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.text": "#FFD700",
|
"theme.bar.menus.menu.power.buttons.restart.text": "#FFD700",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#FFD700",
|
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#FFD700",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.background": "#1A1A1A",
|
"theme.bar.menus.menu.power.buttons.restart.background": "#1A1A1A",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#0A0A0A",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.text": "#FF4500",
|
"theme.bar.menus.menu.power.buttons.shutdown.text": "#FF4500",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#ff4400",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#ff4400",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.background": "#1A1A1A",
|
"theme.bar.menus.menu.power.buttons.shutdown.background": "#1A1A1A",
|
||||||
"theme.bar.menus.menu.power.border.color": "#2A2A2A",
|
"theme.bar.menus.menu.power.border.color": "#2A2A2A",
|
||||||
"theme.bar.menus.menu.power.background.color": "#0A0A0A",
|
"theme.bar.menus.menu.power.background.color": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#FF69B4",
|
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#FF69B4",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#FF69B4",
|
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#FF69B4",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#FF69B4",
|
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#FF69B4",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#32CD32",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#32CD32",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#32CD32",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#32CD32",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#32CD32",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#32CD32",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#FFD700",
|
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#FFD700",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#FFD700",
|
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#FFD700",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#FFD700",
|
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#FFD700",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#FF4500",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#FF4500",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#FF4500",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#FF4500",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#FF4500",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#FF4500",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#333333",
|
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#333333",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#00FFFF",
|
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#00FFFF",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#FFD700",
|
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#FFD700",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#32CD32",
|
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#32CD32",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#FF4500",
|
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#FF4500",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#FFD700",
|
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#FFD700",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#FF69B4",
|
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#FF69B4",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.text": "#0A0A0A",
|
"theme.bar.menus.menu.dashboard.controls.input.text": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.background": "#FF69B4",
|
"theme.bar.menus.menu.dashboard.controls.input.background": "#FF69B4",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.text": "#0A0A0A",
|
"theme.bar.menus.menu.dashboard.controls.volume.text": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.background": "#FF4500",
|
"theme.bar.menus.menu.dashboard.controls.volume.background": "#FF4500",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#0A0A0A",
|
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#FFD700",
|
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#FFD700",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#0A0A0A",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#00FFFF",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#00FFFF",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#0A0A0A",
|
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#FF69B4",
|
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#FF69B4",
|
||||||
"theme.bar.menus.menu.dashboard.controls.disabled": "#585858",
|
"theme.bar.menus.menu.dashboard.controls.disabled": "#585858",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#32CD32",
|
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#32CD32",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.text": "#0A0A0A",
|
"theme.bar.menus.menu.dashboard.shortcuts.text": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.background": "#00FFFF",
|
"theme.bar.menus.menu.dashboard.shortcuts.background": "#00FFFF",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#0A0A0A",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#FF4500",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#FF4500",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#32CD32",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#32CD32",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#FFFFFF",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#FFFFFF",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#00FFFF",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#00FFFF",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#2A2A2A",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#2A2A2A",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#0A0A0A",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#1A1A1A",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#1A1A1A",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#00FFFF",
|
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#00FFFF",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.logout": "#32CD32",
|
"theme.bar.menus.menu.dashboard.powermenu.logout": "#32CD32",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.restart": "#FFD700",
|
"theme.bar.menus.menu.dashboard.powermenu.restart": "#FFD700",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#FF4500",
|
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#FF4500",
|
||||||
"theme.bar.menus.menu.dashboard.profile.name": "#FF69B4",
|
"theme.bar.menus.menu.dashboard.profile.name": "#FF69B4",
|
||||||
"theme.bar.menus.menu.dashboard.border.color": "#2A2A2A",
|
"theme.bar.menus.menu.dashboard.border.color": "#2A2A2A",
|
||||||
"theme.bar.menus.menu.dashboard.background.color": "#0A0A0A",
|
"theme.bar.menus.menu.dashboard.background.color": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.dashboard.card.color": "#1A1A1A",
|
"theme.bar.menus.menu.dashboard.card.color": "#1A1A1A",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#FF69B4",
|
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#FF69B4",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.icon": "#FF69B4",
|
"theme.bar.menus.menu.clock.weather.hourly.icon": "#FF69B4",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.time": "#FF69B4",
|
"theme.bar.menus.menu.clock.weather.hourly.time": "#FF69B4",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#00FFFF",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#00FFFF",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#00BFFF",
|
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#00BFFF",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#00FFFF",
|
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#00FFFF",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#FFD700",
|
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#FFD700",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#FFD700",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#FFD700",
|
||||||
"theme.bar.menus.menu.clock.weather.stats": "#00FFFF",
|
"theme.bar.menus.menu.clock.weather.stats": "#00FFFF",
|
||||||
"theme.bar.menus.menu.clock.weather.status": "#FF69B4",
|
"theme.bar.menus.menu.clock.weather.status": "#FF69B4",
|
||||||
"theme.bar.menus.menu.clock.weather.temperature": "#32CD32",
|
"theme.bar.menus.menu.clock.weather.temperature": "#32CD32",
|
||||||
"theme.bar.menus.menu.clock.weather.icon": "#FFD700",
|
"theme.bar.menus.menu.clock.weather.icon": "#FFD700",
|
||||||
"theme.bar.menus.menu.clock.calendar.contextdays": "#585858",
|
"theme.bar.menus.menu.clock.calendar.contextdays": "#585858",
|
||||||
"theme.bar.menus.menu.clock.calendar.days": "#FFD700",
|
"theme.bar.menus.menu.clock.calendar.days": "#FFD700",
|
||||||
"theme.bar.menus.menu.clock.calendar.currentday": "#00FFFF",
|
"theme.bar.menus.menu.clock.calendar.currentday": "#00FFFF",
|
||||||
"theme.bar.menus.menu.clock.calendar.paginator": "#00FFFF",
|
"theme.bar.menus.menu.clock.calendar.paginator": "#00FFFF",
|
||||||
"theme.bar.menus.menu.clock.calendar.weekdays": "#00FFFF",
|
"theme.bar.menus.menu.clock.calendar.weekdays": "#00FFFF",
|
||||||
"theme.bar.menus.menu.clock.calendar.yearmonth": "#FF69B4",
|
"theme.bar.menus.menu.clock.calendar.yearmonth": "#FF69B4",
|
||||||
"theme.bar.menus.menu.clock.time.timeperiod": "#32CD32",
|
"theme.bar.menus.menu.clock.time.timeperiod": "#32CD32",
|
||||||
"theme.bar.menus.menu.clock.time.time": "#FFD700",
|
"theme.bar.menus.menu.clock.time.time": "#FFD700",
|
||||||
"theme.bar.menus.menu.clock.text": "#00FFFF",
|
"theme.bar.menus.menu.clock.text": "#00FFFF",
|
||||||
"theme.bar.menus.menu.clock.border.color": "#2A2A2A",
|
"theme.bar.menus.menu.clock.border.color": "#2A2A2A",
|
||||||
"theme.bar.menus.menu.clock.background.color": "#0A0A0A",
|
"theme.bar.menus.menu.clock.background.color": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.clock.card.color": "#1A1A1A",
|
"theme.bar.menus.menu.clock.card.color": "#1A1A1A",
|
||||||
"theme.bar.menus.menu.battery.slider.puck": "#333333",
|
"theme.bar.menus.menu.battery.slider.puck": "#333333",
|
||||||
"theme.bar.menus.menu.battery.slider.backgroundhover": "#45475A",
|
"theme.bar.menus.menu.battery.slider.backgroundhover": "#45475A",
|
||||||
"theme.bar.menus.menu.battery.slider.background": "#2A2A2A",
|
"theme.bar.menus.menu.battery.slider.background": "#2A2A2A",
|
||||||
"theme.bar.menus.menu.battery.slider.primary": "#FFD700",
|
"theme.bar.menus.menu.battery.slider.primary": "#FFD700",
|
||||||
"theme.bar.menus.menu.battery.icons.active": "#FFD700",
|
"theme.bar.menus.menu.battery.icons.active": "#FFD700",
|
||||||
"theme.bar.menus.menu.battery.icons.passive": "#9399B2",
|
"theme.bar.menus.menu.battery.icons.passive": "#9399B2",
|
||||||
"theme.bar.menus.menu.battery.listitems.active": "#FFD700",
|
"theme.bar.menus.menu.battery.listitems.active": "#FFD700",
|
||||||
"theme.bar.menus.menu.battery.listitems.passive": "#00FFFF",
|
"theme.bar.menus.menu.battery.listitems.passive": "#00FFFF",
|
||||||
"theme.bar.menus.menu.battery.text": "#FFD700",
|
"theme.bar.menus.menu.battery.text": "#FFD700",
|
||||||
"theme.bar.menus.menu.battery.label.color": "#FFD700",
|
"theme.bar.menus.menu.battery.label.color": "#FFD700",
|
||||||
"theme.bar.menus.menu.battery.border.color": "#2A2A2A",
|
"theme.bar.menus.menu.battery.border.color": "#2A2A2A",
|
||||||
"theme.bar.menus.menu.battery.background.color": "#0A0A0A",
|
"theme.bar.menus.menu.battery.background.color": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.battery.card.color": "#1A1A1A",
|
"theme.bar.menus.menu.battery.card.color": "#1A1A1A",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#1A1A1A",
|
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#1A1A1A",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.text": "#FFD700",
|
"theme.bar.menus.menu.systray.dropdownmenu.text": "#FFD700",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.background": "#0A0A0A",
|
"theme.bar.menus.menu.systray.dropdownmenu.background": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#00FFFF",
|
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#00FFFF",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#FFD700",
|
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#FFD700",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.active": "#00FFFF",
|
"theme.bar.menus.menu.bluetooth.icons.active": "#00FFFF",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.passive": "#9399B2",
|
"theme.bar.menus.menu.bluetooth.icons.passive": "#9399B2",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.active": "#00FFFF",
|
"theme.bar.menus.menu.bluetooth.listitems.active": "#00FFFF",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.passive": "#FFD700",
|
"theme.bar.menus.menu.bluetooth.listitems.passive": "#FFD700",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.puck": "#333333",
|
"theme.bar.menus.menu.bluetooth.switch.puck": "#333333",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.disabled": "#2A2A2A",
|
"theme.bar.menus.menu.bluetooth.switch.disabled": "#2A2A2A",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.enabled": "#00FFFF",
|
"theme.bar.menus.menu.bluetooth.switch.enabled": "#00FFFF",
|
||||||
"theme.bar.menus.menu.bluetooth.switch_divider": "#333333",
|
"theme.bar.menus.menu.bluetooth.switch_divider": "#333333",
|
||||||
"theme.bar.menus.menu.bluetooth.status": "#FF69B4",
|
"theme.bar.menus.menu.bluetooth.status": "#FF69B4",
|
||||||
"theme.bar.menus.menu.bluetooth.text": "#FFD700",
|
"theme.bar.menus.menu.bluetooth.text": "#FFD700",
|
||||||
"theme.bar.menus.menu.bluetooth.label.color": "#00FFFF",
|
"theme.bar.menus.menu.bluetooth.label.color": "#00FFFF",
|
||||||
"theme.bar.menus.menu.bluetooth.border.color": "#2A2A2A",
|
"theme.bar.menus.menu.bluetooth.border.color": "#2A2A2A",
|
||||||
"theme.bar.menus.menu.bluetooth.background.color": "#0A0A0A",
|
"theme.bar.menus.menu.bluetooth.background.color": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.bluetooth.card.color": "#1A1A1A",
|
"theme.bar.menus.menu.bluetooth.card.color": "#1A1A1A",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.active": "#FF69B4",
|
"theme.bar.menus.menu.network.iconbuttons.active": "#FF69B4",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.passive": "#FFD700",
|
"theme.bar.menus.menu.network.iconbuttons.passive": "#FFD700",
|
||||||
"theme.bar.menus.menu.network.icons.active": "#FF69B4",
|
"theme.bar.menus.menu.network.icons.active": "#FF69B4",
|
||||||
"theme.bar.menus.menu.network.icons.passive": "#9399B2",
|
"theme.bar.menus.menu.network.icons.passive": "#9399B2",
|
||||||
"theme.bar.menus.menu.network.listitems.active": "#FF69B4",
|
"theme.bar.menus.menu.network.listitems.active": "#FF69B4",
|
||||||
"theme.bar.menus.menu.network.listitems.passive": "#FFD700",
|
"theme.bar.menus.menu.network.listitems.passive": "#FFD700",
|
||||||
"theme.bar.menus.menu.network.status.color": "#FF69B4",
|
"theme.bar.menus.menu.network.status.color": "#FF69B4",
|
||||||
"theme.bar.menus.menu.network.text": "#FFD700",
|
"theme.bar.menus.menu.network.text": "#FFD700",
|
||||||
"theme.bar.menus.menu.network.label.color": "#FF69B4",
|
"theme.bar.menus.menu.network.label.color": "#FF69B4",
|
||||||
"theme.bar.menus.menu.network.border.color": "#2A2A2A",
|
"theme.bar.menus.menu.network.border.color": "#2A2A2A",
|
||||||
"theme.bar.menus.menu.network.background.color": "#0A0A0A",
|
"theme.bar.menus.menu.network.background.color": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.network.card.color": "#1A1A1A",
|
"theme.bar.menus.menu.network.card.color": "#1A1A1A",
|
||||||
"theme.bar.menus.menu.volume.input_slider.puck": "#333333",
|
"theme.bar.menus.menu.volume.input_slider.puck": "#333333",
|
||||||
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#45475A",
|
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#45475A",
|
||||||
"theme.bar.menus.menu.volume.input_slider.background": "#2A2A2A",
|
"theme.bar.menus.menu.volume.input_slider.background": "#2A2A2A",
|
||||||
"theme.bar.menus.menu.volume.input_slider.primary": "#FF69B4",
|
"theme.bar.menus.menu.volume.input_slider.primary": "#FF69B4",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.puck": "#333333",
|
"theme.bar.menus.menu.volume.audio_slider.puck": "#333333",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#45475A",
|
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#45475A",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.background": "#2A2A2A",
|
"theme.bar.menus.menu.volume.audio_slider.background": "#2A2A2A",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.primary": "#FF69B4",
|
"theme.bar.menus.menu.volume.audio_slider.primary": "#FF69B4",
|
||||||
"theme.bar.menus.menu.volume.icons.active": "#FF69B4",
|
"theme.bar.menus.menu.volume.icons.active": "#FF69B4",
|
||||||
"theme.bar.menus.menu.volume.icons.passive": "#9399B2",
|
"theme.bar.menus.menu.volume.icons.passive": "#9399B2",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.active": "#FF69B4",
|
"theme.bar.menus.menu.volume.iconbutton.active": "#FF69B4",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.passive": "#FFD700",
|
"theme.bar.menus.menu.volume.iconbutton.passive": "#FFD700",
|
||||||
"theme.bar.menus.menu.volume.listitems.active": "#FF69B4",
|
"theme.bar.menus.menu.volume.listitems.active": "#FF69B4",
|
||||||
"theme.bar.menus.menu.volume.listitems.passive": "#FFD700",
|
"theme.bar.menus.menu.volume.listitems.passive": "#FFD700",
|
||||||
"theme.bar.menus.menu.volume.text": "#FFFFFF",
|
"theme.bar.menus.menu.volume.text": "#FFFFFF",
|
||||||
"theme.bar.menus.menu.volume.label.color": "#FF69B4",
|
"theme.bar.menus.menu.volume.label.color": "#FF69B4",
|
||||||
"theme.bar.menus.menu.volume.border.color": "#2A2A2A",
|
"theme.bar.menus.menu.volume.border.color": "#2A2A2A",
|
||||||
"theme.bar.menus.menu.volume.background.color": "#0A0A0A",
|
"theme.bar.menus.menu.volume.background.color": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.volume.card.color": "#1A1A1A",
|
"theme.bar.menus.menu.volume.card.color": "#1A1A1A",
|
||||||
"theme.bar.menus.menu.media.slider.puck": "#333333",
|
"theme.bar.menus.menu.media.slider.puck": "#333333",
|
||||||
"theme.bar.menus.menu.media.slider.backgroundhover": "#45475A",
|
"theme.bar.menus.menu.media.slider.backgroundhover": "#45475A",
|
||||||
"theme.bar.menus.menu.media.slider.background": "#2A2A2A",
|
"theme.bar.menus.menu.media.slider.background": "#2A2A2A",
|
||||||
"theme.bar.menus.menu.media.slider.primary": "#FFD700",
|
"theme.bar.menus.menu.media.slider.primary": "#FFD700",
|
||||||
"theme.bar.menus.menu.media.buttons.text": "#0A0A0A",
|
"theme.bar.menus.menu.media.buttons.text": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.media.buttons.background": "#FF69B4",
|
"theme.bar.menus.menu.media.buttons.background": "#FF69B4",
|
||||||
"theme.bar.menus.menu.media.buttons.enabled": "#00FFFF",
|
"theme.bar.menus.menu.media.buttons.enabled": "#00FFFF",
|
||||||
"theme.bar.menus.menu.media.buttons.inactive": "#333333",
|
"theme.bar.menus.menu.media.buttons.inactive": "#333333",
|
||||||
"theme.bar.menus.menu.media.border.color": "#2A2A2A",
|
"theme.bar.menus.menu.media.border.color": "#2A2A2A",
|
||||||
"theme.bar.menus.menu.media.card.color": "#1A1A1A",
|
"theme.bar.menus.menu.media.card.color": "#1A1A1A",
|
||||||
"theme.bar.menus.menu.media.background.color": "#0A0A0A",
|
"theme.bar.menus.menu.media.background.color": "#0A0A0A",
|
||||||
"theme.bar.menus.menu.media.album": "#FF69B4",
|
"theme.bar.menus.menu.media.album": "#FF69B4",
|
||||||
"theme.bar.menus.menu.media.artist": "#00FFFF",
|
"theme.bar.menus.menu.media.artist": "#00FFFF",
|
||||||
"theme.bar.menus.menu.media.song": "#FFD700",
|
"theme.bar.menus.menu.media.song": "#FFD700",
|
||||||
"theme.bar.menus.tooltip.text": "#FFD700",
|
"theme.bar.menus.tooltip.text": "#FFD700",
|
||||||
"theme.bar.menus.tooltip.background": "#0A0A0A",
|
"theme.bar.menus.tooltip.background": "#0A0A0A",
|
||||||
"theme.bar.menus.dropdownmenu.divider": "#1A1A1A",
|
"theme.bar.menus.dropdownmenu.divider": "#1A1A1A",
|
||||||
"theme.bar.menus.dropdownmenu.text": "#FFD700",
|
"theme.bar.menus.dropdownmenu.text": "#FFD700",
|
||||||
"theme.bar.menus.dropdownmenu.background": "#0A0A0A",
|
"theme.bar.menus.dropdownmenu.background": "#0A0A0A",
|
||||||
"theme.bar.menus.slider.puck": "#333333",
|
"theme.bar.menus.slider.puck": "#333333",
|
||||||
"theme.bar.menus.slider.backgroundhover": "#45475A",
|
"theme.bar.menus.slider.backgroundhover": "#45475A",
|
||||||
"theme.bar.menus.slider.background": "#2A2A2A",
|
"theme.bar.menus.slider.background": "#2A2A2A",
|
||||||
"theme.bar.menus.slider.primary": "#00FFFF",
|
"theme.bar.menus.slider.primary": "#00FFFF",
|
||||||
"theme.bar.menus.progressbar.background": "#45475A",
|
"theme.bar.menus.progressbar.background": "#45475A",
|
||||||
"theme.bar.menus.progressbar.foreground": "#00FFFF",
|
"theme.bar.menus.progressbar.foreground": "#00FFFF",
|
||||||
"theme.bar.menus.iconbuttons.active": "#00FFFF",
|
"theme.bar.menus.iconbuttons.active": "#00FFFF",
|
||||||
"theme.bar.menus.iconbuttons.passive": "#FFD700",
|
"theme.bar.menus.iconbuttons.passive": "#FFD700",
|
||||||
"theme.bar.menus.buttons.text": "#0A0A0A",
|
"theme.bar.menus.buttons.text": "#0A0A0A",
|
||||||
"theme.bar.menus.buttons.disabled": "#333333",
|
"theme.bar.menus.buttons.disabled": "#333333",
|
||||||
"theme.bar.menus.buttons.active": "#00FFFF",
|
"theme.bar.menus.buttons.active": "#00FFFF",
|
||||||
"theme.bar.menus.buttons.default": "#FFD700",
|
"theme.bar.menus.buttons.default": "#FFD700",
|
||||||
"theme.bar.menus.check_radio_button.active": "#ffffff",
|
"theme.bar.menus.check_radio_button.active": "#ffffff",
|
||||||
"theme.bar.menus.check_radio_button.background": "#000000",
|
"theme.bar.menus.check_radio_button.background": "#000000",
|
||||||
"theme.bar.menus.switch.puck": "#333333",
|
"theme.bar.menus.switch.puck": "#333333",
|
||||||
"theme.bar.menus.switch.disabled": "#2A2A2A",
|
"theme.bar.menus.switch.disabled": "#2A2A2A",
|
||||||
"theme.bar.menus.switch.enabled": "#00FFFF",
|
"theme.bar.menus.switch.enabled": "#00FFFF",
|
||||||
"theme.bar.menus.icons.active": "#00FFFF",
|
"theme.bar.menus.icons.active": "#00FFFF",
|
||||||
"theme.bar.menus.icons.passive": "#333333",
|
"theme.bar.menus.icons.passive": "#333333",
|
||||||
"theme.bar.menus.listitems.active": "#00FFFF",
|
"theme.bar.menus.listitems.active": "#00FFFF",
|
||||||
"theme.bar.menus.listitems.passive": "#FFD700",
|
"theme.bar.menus.listitems.passive": "#FFD700",
|
||||||
"theme.bar.menus.popover.border": "#0A0A0A",
|
"theme.bar.menus.popover.border": "#0A0A0A",
|
||||||
"theme.bar.menus.popover.background": "#0D0D0D",
|
"theme.bar.menus.popover.background": "#0D0D0D",
|
||||||
"theme.bar.menus.popover.text": "#00FFFF",
|
"theme.bar.menus.popover.text": "#00FFFF",
|
||||||
"theme.bar.menus.label": "#00FFFF",
|
"theme.bar.menus.label": "#00FFFF",
|
||||||
"theme.bar.menus.feinttext": "#1a1a1a",
|
"theme.bar.menus.feinttext": "#1a1a1a",
|
||||||
"theme.bar.menus.dimtext": "#2b2b2b",
|
"theme.bar.menus.dimtext": "#2b2b2b",
|
||||||
"theme.bar.menus.text": "#FFFFFF",
|
"theme.bar.menus.text": "#FFFFFF",
|
||||||
"theme.bar.menus.border.color": "#2A2A2A",
|
"theme.bar.menus.border.color": "#2A2A2A",
|
||||||
"theme.bar.menus.cards": "#0a0a0a",
|
"theme.bar.menus.cards": "#0a0a0a",
|
||||||
"theme.bar.menus.background": "#0A0A0A",
|
"theme.bar.menus.background": "#0A0A0A",
|
||||||
"theme.bar.buttons.modules.power.icon_background": "#FF4500",
|
"theme.bar.buttons.modules.power.icon_background": "#FF4500",
|
||||||
"theme.bar.buttons.modules.power.icon": "#121212",
|
"theme.bar.buttons.modules.power.icon": "#121212",
|
||||||
"theme.bar.buttons.modules.power.background": "#121212",
|
"theme.bar.buttons.modules.power.background": "#121212",
|
||||||
"theme.bar.buttons.modules.weather.icon_background": "#00ffff",
|
"theme.bar.buttons.modules.weather.icon_background": "#00ffff",
|
||||||
"theme.bar.buttons.modules.weather.icon": "#121212",
|
"theme.bar.buttons.modules.weather.icon": "#121212",
|
||||||
"theme.bar.buttons.modules.weather.text": "#00ffff",
|
"theme.bar.buttons.modules.weather.text": "#00ffff",
|
||||||
"theme.bar.buttons.modules.weather.background": "#121212",
|
"theme.bar.buttons.modules.weather.background": "#121212",
|
||||||
"theme.bar.buttons.modules.updates.icon_background": "#FFD700",
|
"theme.bar.buttons.modules.updates.icon_background": "#FFD700",
|
||||||
"theme.bar.buttons.modules.updates.icon": "#121212",
|
"theme.bar.buttons.modules.updates.icon": "#121212",
|
||||||
"theme.bar.buttons.modules.updates.text": "#FFD700",
|
"theme.bar.buttons.modules.updates.text": "#FFD700",
|
||||||
"theme.bar.buttons.modules.updates.background": "#121212",
|
"theme.bar.buttons.modules.updates.background": "#121212",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon_background": "#00FFFF",
|
"theme.bar.buttons.modules.kbLayout.icon_background": "#00FFFF",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon": "#121212",
|
"theme.bar.buttons.modules.kbLayout.icon": "#121212",
|
||||||
"theme.bar.buttons.modules.kbLayout.text": "#00FFFF",
|
"theme.bar.buttons.modules.kbLayout.text": "#00FFFF",
|
||||||
"theme.bar.buttons.modules.kbLayout.background": "#121212",
|
"theme.bar.buttons.modules.kbLayout.background": "#121212",
|
||||||
"theme.bar.buttons.modules.netstat.icon_background": "#32CD32",
|
"theme.bar.buttons.modules.netstat.icon_background": "#32CD32",
|
||||||
"theme.bar.buttons.modules.netstat.icon": "#121212",
|
"theme.bar.buttons.modules.netstat.icon": "#121212",
|
||||||
"theme.bar.buttons.modules.netstat.text": "#32CD32",
|
"theme.bar.buttons.modules.netstat.text": "#32CD32",
|
||||||
"theme.bar.buttons.modules.netstat.background": "#121212",
|
"theme.bar.buttons.modules.netstat.background": "#121212",
|
||||||
"theme.bar.buttons.modules.storage.icon_background": "#FF4500",
|
"theme.bar.buttons.modules.storage.icon_background": "#FF4500",
|
||||||
"theme.bar.buttons.modules.storage.icon": "#121212",
|
"theme.bar.buttons.modules.storage.icon": "#121212",
|
||||||
"theme.bar.buttons.modules.storage.text": "#FF4500",
|
"theme.bar.buttons.modules.storage.text": "#FF4500",
|
||||||
"theme.bar.buttons.modules.storage.background": "#121212",
|
"theme.bar.buttons.modules.storage.background": "#121212",
|
||||||
"theme.bar.buttons.modules.cpu.icon_background": "#FF4500",
|
"theme.bar.buttons.modules.cpu.icon_background": "#FF4500",
|
||||||
"theme.bar.buttons.modules.cpu.icon": "#121212",
|
"theme.bar.buttons.modules.cpu.icon": "#121212",
|
||||||
"theme.bar.buttons.modules.cpu.text": "#FF4500",
|
"theme.bar.buttons.modules.cpu.text": "#FF4500",
|
||||||
"theme.bar.buttons.modules.cpu.background": "#121212",
|
"theme.bar.buttons.modules.cpu.background": "#121212",
|
||||||
"theme.bar.buttons.modules.ram.icon_background": "#FFD700",
|
"theme.bar.buttons.modules.ram.icon_background": "#FFD700",
|
||||||
"theme.bar.buttons.modules.ram.icon": "#121212",
|
"theme.bar.buttons.modules.ram.icon": "#121212",
|
||||||
"theme.bar.buttons.modules.ram.text": "#FFD700",
|
"theme.bar.buttons.modules.ram.text": "#FFD700",
|
||||||
"theme.bar.buttons.modules.ram.background": "#121212",
|
"theme.bar.buttons.modules.ram.background": "#121212",
|
||||||
"theme.bar.buttons.notifications.total": "#f7d04b",
|
"theme.bar.buttons.notifications.total": "#f7d04b",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#f7d04b",
|
"theme.bar.buttons.notifications.icon_background": "#f7d04b",
|
||||||
"theme.bar.buttons.notifications.icon": "#121212",
|
"theme.bar.buttons.notifications.icon": "#121212",
|
||||||
"theme.bar.buttons.notifications.background": "#121212",
|
"theme.bar.buttons.notifications.background": "#121212",
|
||||||
"theme.bar.buttons.clock.icon_background": "#5bafff",
|
"theme.bar.buttons.clock.icon_background": "#5bafff",
|
||||||
"theme.bar.buttons.clock.icon": "#121212",
|
"theme.bar.buttons.clock.icon": "#121212",
|
||||||
"theme.bar.buttons.clock.text": "#5bafff",
|
"theme.bar.buttons.clock.text": "#5bafff",
|
||||||
"theme.bar.buttons.clock.background": "#121212",
|
"theme.bar.buttons.clock.background": "#121212",
|
||||||
"theme.bar.buttons.battery.icon_background": "#f7d04b",
|
"theme.bar.buttons.battery.icon_background": "#f7d04b",
|
||||||
"theme.bar.buttons.battery.icon": "#121212",
|
"theme.bar.buttons.battery.icon": "#121212",
|
||||||
"theme.bar.buttons.battery.text": "#f7d04b",
|
"theme.bar.buttons.battery.text": "#f7d04b",
|
||||||
"theme.bar.buttons.battery.background": "#121212",
|
"theme.bar.buttons.battery.background": "#121212",
|
||||||
"theme.bar.buttons.systray.background": "#121212",
|
"theme.bar.buttons.systray.background": "#121212",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#5bafff",
|
"theme.bar.buttons.bluetooth.icon_background": "#5bafff",
|
||||||
"theme.bar.buttons.bluetooth.icon": "#121212",
|
"theme.bar.buttons.bluetooth.icon": "#121212",
|
||||||
"theme.bar.buttons.bluetooth.text": "#5bafff",
|
"theme.bar.buttons.bluetooth.text": "#5bafff",
|
||||||
"theme.bar.buttons.bluetooth.background": "#121212",
|
"theme.bar.buttons.bluetooth.background": "#121212",
|
||||||
"theme.bar.buttons.network.icon_background": "#e23fe2",
|
"theme.bar.buttons.network.icon_background": "#e23fe2",
|
||||||
"theme.bar.buttons.network.icon": "#121212",
|
"theme.bar.buttons.network.icon": "#121212",
|
||||||
"theme.bar.buttons.network.text": "#e23fe2",
|
"theme.bar.buttons.network.text": "#e23fe2",
|
||||||
"theme.bar.buttons.network.background": "#121212",
|
"theme.bar.buttons.network.background": "#121212",
|
||||||
"theme.bar.buttons.volume.icon_background": "#ff3f3f",
|
"theme.bar.buttons.volume.icon_background": "#ff3f3f",
|
||||||
"theme.bar.buttons.volume.icon": "#121212",
|
"theme.bar.buttons.volume.icon": "#121212",
|
||||||
"theme.bar.buttons.volume.text": "#ff3f3f",
|
"theme.bar.buttons.volume.text": "#ff3f3f",
|
||||||
"theme.bar.buttons.volume.background": "#121212",
|
"theme.bar.buttons.volume.background": "#121212",
|
||||||
"theme.bar.buttons.media.icon_background": "#00ffff",
|
"theme.bar.buttons.media.icon_background": "#00ffff",
|
||||||
"theme.bar.buttons.media.icon": "#121212",
|
"theme.bar.buttons.media.icon": "#121212",
|
||||||
"theme.bar.buttons.media.text": "#00ffff",
|
"theme.bar.buttons.media.text": "#00ffff",
|
||||||
"theme.bar.buttons.media.background": "#111111",
|
"theme.bar.buttons.media.background": "#111111",
|
||||||
"theme.bar.buttons.windowtitle.icon_background": "#5bafff",
|
"theme.bar.buttons.windowtitle.icon_background": "#5bafff",
|
||||||
"theme.bar.buttons.windowtitle.icon": "#121212",
|
"theme.bar.buttons.windowtitle.icon": "#121212",
|
||||||
"theme.bar.buttons.windowtitle.text": "#5bafff",
|
"theme.bar.buttons.windowtitle.text": "#5bafff",
|
||||||
"theme.bar.buttons.windowtitle.background": "#121212",
|
"theme.bar.buttons.windowtitle.background": "#121212",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#e23ee2",
|
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#e23ee2",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#e23fe2",
|
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#e23fe2",
|
||||||
"theme.bar.buttons.workspaces.active": "#e23fe2",
|
"theme.bar.buttons.workspaces.active": "#e23fe2",
|
||||||
"theme.bar.buttons.workspaces.occupied": "#ff3f3f",
|
"theme.bar.buttons.workspaces.occupied": "#ff3f3f",
|
||||||
"theme.bar.buttons.workspaces.available": "#5bafff",
|
"theme.bar.buttons.workspaces.available": "#5bafff",
|
||||||
"theme.bar.buttons.workspaces.hover": "#e23fe2",
|
"theme.bar.buttons.workspaces.hover": "#e23fe2",
|
||||||
"theme.bar.buttons.workspaces.background": "#121212",
|
"theme.bar.buttons.workspaces.background": "#121212",
|
||||||
"theme.bar.buttons.dashboard.icon": "#121212",
|
"theme.bar.buttons.dashboard.icon": "#121212",
|
||||||
"theme.bar.buttons.dashboard.background": "#f7d04b",
|
"theme.bar.buttons.dashboard.background": "#f7d04b",
|
||||||
"theme.bar.buttons.icon": "#242438",
|
"theme.bar.buttons.icon": "#242438",
|
||||||
"theme.bar.buttons.text": "#00FFFF",
|
"theme.bar.buttons.text": "#00FFFF",
|
||||||
"theme.bar.buttons.hover": "#333333",
|
"theme.bar.buttons.hover": "#333333",
|
||||||
"theme.bar.buttons.icon_background": "#FFD700",
|
"theme.bar.buttons.icon_background": "#FFD700",
|
||||||
"theme.bar.buttons.background": "#111111",
|
"theme.bar.buttons.background": "#111111",
|
||||||
"theme.bar.buttons.style": "split",
|
"theme.bar.buttons.style": "split",
|
||||||
"theme.bar.background": "#0A0A0A",
|
"theme.bar.background": "#0A0A0A",
|
||||||
"theme.osd.label": "#5bafff",
|
"theme.osd.label": "#5bafff",
|
||||||
"theme.osd.icon": "#0a0a0a",
|
"theme.osd.icon": "#0a0a0a",
|
||||||
"theme.osd.bar_overflow_color": "#ff3f3f",
|
"theme.osd.bar_overflow_color": "#ff3f3f",
|
||||||
"theme.osd.bar_empty_color": "#1a1a1a",
|
"theme.osd.bar_empty_color": "#1a1a1a",
|
||||||
"theme.osd.bar_color": "#5bafff",
|
"theme.osd.bar_color": "#5bafff",
|
||||||
"theme.osd.icon_container": "#5bafff",
|
"theme.osd.icon_container": "#5bafff",
|
||||||
"theme.osd.bar_container": "#0a0a0a",
|
"theme.osd.bar_container": "#0a0a0a",
|
||||||
"theme.notification.close_button.label": "#0a0a0a",
|
"theme.notification.close_button.label": "#0a0a0a",
|
||||||
"theme.notification.close_button.background": "#ff3f3f",
|
"theme.notification.close_button.background": "#ff3f3f",
|
||||||
"theme.notification.labelicon": "#5bafff",
|
"theme.notification.labelicon": "#5bafff",
|
||||||
"theme.notification.text": "#d1d1d1",
|
"theme.notification.text": "#d1d1d1",
|
||||||
"theme.notification.time": "#797979",
|
"theme.notification.time": "#797979",
|
||||||
"theme.notification.border": "#1a1a1a",
|
"theme.notification.border": "#1a1a1a",
|
||||||
"theme.notification.label": "#5bafff",
|
"theme.notification.label": "#5bafff",
|
||||||
"theme.notification.actions.text": "#0a0a0a",
|
"theme.notification.actions.text": "#0a0a0a",
|
||||||
"theme.notification.actions.background": "#5bafff",
|
"theme.notification.actions.background": "#5bafff",
|
||||||
"theme.notification.background": "#0a0a0a",
|
"theme.notification.background": "#0a0a0a",
|
||||||
"theme.bar.buttons.modules.power.border": "#FF4500",
|
"theme.bar.buttons.modules.power.border": "#FF4500",
|
||||||
"theme.bar.buttons.modules.weather.border": "#FFD700",
|
"theme.bar.buttons.modules.weather.border": "#FFD700",
|
||||||
"theme.bar.buttons.modules.updates.border": "#FFD700",
|
"theme.bar.buttons.modules.updates.border": "#FFD700",
|
||||||
"theme.bar.buttons.modules.kbLayout.border": "#00FFFF",
|
"theme.bar.buttons.modules.kbLayout.border": "#00FFFF",
|
||||||
"theme.bar.buttons.modules.netstat.border": "#32CD32",
|
"theme.bar.buttons.modules.netstat.border": "#32CD32",
|
||||||
"theme.bar.buttons.modules.storage.border": "#FF4500",
|
"theme.bar.buttons.modules.storage.border": "#FF4500",
|
||||||
"theme.bar.buttons.modules.cpu.border": "#FF4500",
|
"theme.bar.buttons.modules.cpu.border": "#FF4500",
|
||||||
"theme.bar.buttons.modules.ram.border": "#FFD700",
|
"theme.bar.buttons.modules.ram.border": "#FFD700",
|
||||||
"theme.bar.buttons.notifications.border": "#f7d04b",
|
"theme.bar.buttons.notifications.border": "#f7d04b",
|
||||||
"theme.bar.buttons.clock.border": "#5bafff",
|
"theme.bar.buttons.clock.border": "#5bafff",
|
||||||
"theme.bar.buttons.battery.border": "#f7d04b",
|
"theme.bar.buttons.battery.border": "#f7d04b",
|
||||||
"theme.bar.buttons.systray.border": "#303030",
|
"theme.bar.buttons.systray.border": "#303030",
|
||||||
"theme.bar.buttons.bluetooth.border": "#5bafff",
|
"theme.bar.buttons.bluetooth.border": "#5bafff",
|
||||||
"theme.bar.buttons.network.border": "#e23fe2",
|
"theme.bar.buttons.network.border": "#e23fe2",
|
||||||
"theme.bar.buttons.volume.border": "#ff3f3f",
|
"theme.bar.buttons.volume.border": "#ff3f3f",
|
||||||
"theme.bar.buttons.media.border": "#FFD700",
|
"theme.bar.buttons.media.border": "#FFD700",
|
||||||
"theme.bar.buttons.windowtitle.border": "#5bafff",
|
"theme.bar.buttons.windowtitle.border": "#5bafff",
|
||||||
"theme.bar.buttons.workspaces.border": "#e23ee2",
|
"theme.bar.buttons.workspaces.border": "#e23ee2",
|
||||||
"theme.bar.buttons.dashboard.border": "#f7d04b",
|
"theme.bar.buttons.dashboard.border": "#f7d04b",
|
||||||
"theme.bar.buttons.modules.submap.background": "#121212",
|
"theme.bar.buttons.modules.submap.background": "#121212",
|
||||||
"theme.bar.buttons.modules.submap.text": "#FF69B4",
|
"theme.bar.buttons.modules.submap.text": "#FF69B4",
|
||||||
"theme.bar.buttons.modules.submap.border": "#FF69B4",
|
"theme.bar.buttons.modules.submap.border": "#FF69B4",
|
||||||
"theme.bar.buttons.modules.submap.icon": "#121212",
|
"theme.bar.buttons.modules.submap.icon": "#121212",
|
||||||
"theme.bar.buttons.modules.submap.icon_background": "#FF69B4",
|
"theme.bar.buttons.modules.submap.icon_background": "#FF69B4",
|
||||||
"theme.bar.menus.menu.network.switch.enabled": "#FF69B4",
|
"theme.bar.menus.menu.network.switch.enabled": "#FF69B4",
|
||||||
"theme.bar.menus.menu.network.switch.disabled": "#2A2A2A",
|
"theme.bar.menus.menu.network.switch.disabled": "#2A2A2A",
|
||||||
"theme.bar.menus.menu.network.switch.puck": "#333333",
|
"theme.bar.menus.menu.network.switch.puck": "#333333",
|
||||||
"theme.bar.buttons.systray.customIcon": "#d1d1d1",
|
"theme.bar.buttons.systray.customIcon": "#d1d1d1",
|
||||||
"theme.bar.border.color": "#f7d04b",
|
"theme.bar.border.color": "#f7d04b",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#FFD700",
|
"theme.bar.menus.menu.media.timestamp": "#FFD700",
|
||||||
"theme.bar.buttons.borderColor": "#f7d04b"
|
"theme.bar.buttons.borderColor": "#f7d04b",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#FFD700",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#121212",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#121212",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#FFD700",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#FFD700"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#d1d1d1",
|
"theme.bar.buttons.systray.customIcon": "#d1d1d1",
|
||||||
"theme.bar.border.color": "#f7d04b",
|
"theme.bar.border.color": "#f7d04b",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#FFD700",
|
"theme.bar.menus.menu.media.timestamp": "#FFD700",
|
||||||
"theme.bar.buttons.borderColor": "#FFD700"
|
"theme.bar.buttons.borderColor": "#FFD700",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#121212",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#FF4500",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#FF4500",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#121212",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#FF4500"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#f8f8f2",
|
"theme.bar.buttons.systray.customIcon": "#f8f8f2",
|
||||||
"theme.bar.border.color": "#bd93f9",
|
"theme.bar.border.color": "#bd93f9",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#f8f8f2",
|
"theme.bar.menus.menu.media.timestamp": "#f8f8f2",
|
||||||
"theme.bar.buttons.borderColor": "#bd93f9"
|
"theme.bar.buttons.borderColor": "#bd93f9",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#f1fa8c",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#44475a",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f1fa8c",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#f1fa8c",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#f1fa8c"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#f8f8f2",
|
"theme.bar.buttons.systray.customIcon": "#f8f8f2",
|
||||||
"theme.bar.border.color": "#bd93f9",
|
"theme.bar.border.color": "#bd93f9",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#f8f8f2",
|
"theme.bar.menus.menu.media.timestamp": "#f8f8f2",
|
||||||
"theme.bar.buttons.borderColor": "#bd93f9"
|
"theme.bar.buttons.borderColor": "#bd93f9",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f1fa8c",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#44475a",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#282936",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#f1fa8c",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#f1fa8c"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#f8f8f2",
|
"theme.bar.buttons.systray.customIcon": "#f8f8f2",
|
||||||
"theme.bar.border.color": "#bd93f9",
|
"theme.bar.border.color": "#bd93f9",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#f8f8f2",
|
"theme.bar.menus.menu.media.timestamp": "#f8f8f2",
|
||||||
"theme.bar.buttons.borderColor": "#bd93f9"
|
"theme.bar.buttons.borderColor": "#bd93f9",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#44475a",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#ff79c6",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#ff79c6",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#44475a",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#ff79c6"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#d8caac",
|
"theme.bar.buttons.systray.customIcon": "#d8caac",
|
||||||
"theme.bar.border.color": "#83c092",
|
"theme.bar.border.color": "#83c092",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#d3c6aa",
|
"theme.bar.menus.menu.media.timestamp": "#d3c6aa",
|
||||||
"theme.bar.buttons.borderColor": "#a7c080"
|
"theme.bar.buttons.borderColor": "#a7c080",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#dbbc7f",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#323d43",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#dbbc7f",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#dbbc7f",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#dbbc7f"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#d8caac",
|
"theme.bar.buttons.systray.customIcon": "#d8caac",
|
||||||
"theme.bar.border.color": "#83c092",
|
"theme.bar.border.color": "#83c092",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#d3c6aa",
|
"theme.bar.menus.menu.media.timestamp": "#d3c6aa",
|
||||||
"theme.bar.buttons.borderColor": "#a7c080"
|
"theme.bar.buttons.borderColor": "#a7c080",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#dbbc7f",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#323d43",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#dbbc7f",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#dbbc7f"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#d8caac",
|
"theme.bar.buttons.systray.customIcon": "#d8caac",
|
||||||
"theme.bar.border.color": "#83c092",
|
"theme.bar.border.color": "#83c092",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#d3c6aa",
|
"theme.bar.menus.menu.media.timestamp": "#d3c6aa",
|
||||||
"theme.bar.buttons.borderColor": "#a7c080"
|
"theme.bar.buttons.borderColor": "#a7c080",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#323d43",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#e67e80",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e67e80",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#323d43",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#e67e80"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#ebdbb2",
|
"theme.bar.buttons.systray.customIcon": "#ebdbb2",
|
||||||
"theme.bar.border.color": "#83a598",
|
"theme.bar.border.color": "#83a598",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#ebdbb2",
|
"theme.bar.menus.menu.media.timestamp": "#ebdbb2",
|
||||||
"theme.bar.buttons.borderColor": "#83a598"
|
"theme.bar.buttons.borderColor": "#83a598",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#fabd2f",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#282828",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#282828",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#fabd2f",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#fabd2f"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#ebdbb2",
|
"theme.bar.buttons.systray.customIcon": "#ebdbb2",
|
||||||
"theme.bar.border.color": "#83a598",
|
"theme.bar.border.color": "#83a598",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#ebdbb2",
|
"theme.bar.menus.menu.media.timestamp": "#ebdbb2",
|
||||||
"theme.bar.buttons.borderColor": "#83a598"
|
"theme.bar.buttons.borderColor": "#83a598",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#fabd2f",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#282828",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#fabd2f",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#fabd2f"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#ebdbb2",
|
"theme.bar.buttons.systray.customIcon": "#ebdbb2",
|
||||||
"theme.bar.border.color": "#83a598",
|
"theme.bar.border.color": "#83a598",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#ebdbb2",
|
"theme.bar.menus.menu.media.timestamp": "#ebdbb2",
|
||||||
"theme.bar.buttons.borderColor": "#83a598"
|
"theme.bar.buttons.borderColor": "#83a598",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#282828",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#d3869b",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#282828",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#282828",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#d3869b"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#FFFFFF",
|
"theme.bar.buttons.systray.customIcon": "#FFFFFF",
|
||||||
"theme.bar.border.color": "#FFFFFF",
|
"theme.bar.border.color": "#FFFFFF",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#FFFFFF",
|
"theme.bar.menus.menu.media.timestamp": "#FFFFFF",
|
||||||
"theme.bar.buttons.borderColor": "#FFFFFF"
|
"theme.bar.buttons.borderColor": "#FFFFFF",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#ffffff",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#090909",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#ffffff",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#ffffff",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#ffffff"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#FFFFFF",
|
"theme.bar.buttons.systray.customIcon": "#FFFFFF",
|
||||||
"theme.bar.border.color": "#FFFFFF",
|
"theme.bar.border.color": "#FFFFFF",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#FFFFFF",
|
"theme.bar.menus.menu.media.timestamp": "#FFFFFF",
|
||||||
"theme.bar.buttons.borderColor": "#FFFFFF"
|
"theme.bar.buttons.borderColor": "#FFFFFF",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#ffffff",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#090909",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#ffffff",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#ffffff"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#FFFFFF",
|
"theme.bar.buttons.systray.customIcon": "#FFFFFF",
|
||||||
"theme.bar.border.color": "#FFFFFF",
|
"theme.bar.border.color": "#FFFFFF",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#FFFFFF",
|
"theme.bar.menus.menu.media.timestamp": "#FFFFFF",
|
||||||
"theme.bar.buttons.borderColor": "#FFFFFF"
|
"theme.bar.buttons.borderColor": "#FFFFFF",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#090909",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#ffffff",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#ffffff",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#090909",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#ffffff"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#d8dee9",
|
"theme.bar.buttons.systray.customIcon": "#d8dee9",
|
||||||
"theme.bar.border.color": "#88c0d0",
|
"theme.bar.border.color": "#88c0d0",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#d8dee9",
|
"theme.bar.menus.menu.media.timestamp": "#d8dee9",
|
||||||
"theme.bar.buttons.borderColor": "#88c0d0"
|
"theme.bar.buttons.borderColor": "#88c0d0",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#81a1c1",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#3b4252",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#81a1c1",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#81a1c1",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#81a1c1"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#d8dee9",
|
"theme.bar.buttons.systray.customIcon": "#d8dee9",
|
||||||
"theme.bar.border.color": "#88c0d0",
|
"theme.bar.border.color": "#88c0d0",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#d8dee9",
|
"theme.bar.menus.menu.media.timestamp": "#d8dee9",
|
||||||
"theme.bar.buttons.borderColor": "#88c0d0"
|
"theme.bar.buttons.borderColor": "#88c0d0",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#81a1c1",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#3b4252",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#81a1c1",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#81a1c1"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#d8dee9",
|
"theme.bar.buttons.systray.customIcon": "#d8dee9",
|
||||||
"theme.bar.border.color": "#88c0d0",
|
"theme.bar.border.color": "#88c0d0",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#d8dee9",
|
"theme.bar.menus.menu.media.timestamp": "#d8dee9",
|
||||||
"theme.bar.buttons.borderColor": "#88c0d0"
|
"theme.bar.buttons.borderColor": "#88c0d0",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#3b4252",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#8fbcbb",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#8fbcbb",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#3b4252",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#8fbcbb"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#abb2bf",
|
"theme.bar.buttons.systray.customIcon": "#abb2bf",
|
||||||
"theme.bar.border.color": "#61afef",
|
"theme.bar.border.color": "#61afef",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#abb2bf",
|
"theme.bar.menus.menu.media.timestamp": "#abb2bf",
|
||||||
"theme.bar.buttons.borderColor": "#61afef"
|
"theme.bar.buttons.borderColor": "#61afef",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#e5c07b",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#21252b",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e5c07b",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#e5c07b",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#e5c07b"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#abb2bf",
|
"theme.bar.buttons.systray.customIcon": "#abb2bf",
|
||||||
"theme.bar.border.color": "#61afef",
|
"theme.bar.border.color": "#61afef",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#abb2bf",
|
"theme.bar.menus.menu.media.timestamp": "#abb2bf",
|
||||||
"theme.bar.buttons.borderColor": "#61afef"
|
"theme.bar.buttons.borderColor": "#61afef",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e5c07b",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#21252b",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#e5c07b",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#e5c07b"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#abb2bf",
|
"theme.bar.buttons.systray.customIcon": "#abb2bf",
|
||||||
"theme.bar.border.color": "#61afef",
|
"theme.bar.border.color": "#61afef",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#abb2bf",
|
"theme.bar.menus.menu.media.timestamp": "#abb2bf",
|
||||||
"theme.bar.buttons.borderColor": "#61afef"
|
"theme.bar.buttons.borderColor": "#61afef",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#e06c75",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e06c75",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#21252b",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#e06c75"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
||||||
"theme.bar.border.color": "#c4a7e7",
|
"theme.bar.border.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
||||||
"theme.bar.buttons.borderColor": "#c4a7e7"
|
"theme.bar.buttons.borderColor": "#c4a7e7",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#f6c177",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#21202e",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f6c177",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
||||||
"theme.bar.border.color": "#c4a7e7",
|
"theme.bar.border.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
||||||
"theme.bar.buttons.borderColor": "#c4a7e7"
|
"theme.bar.buttons.borderColor": "#c4a7e7",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#f6c177",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#2a283e",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#2a283e",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
||||||
"theme.bar.border.color": "#c4a7e7",
|
"theme.bar.border.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
||||||
"theme.bar.buttons.borderColor": "#c4a7e7"
|
"theme.bar.buttons.borderColor": "#c4a7e7",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f6c177",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#2a283e",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
||||||
"theme.bar.border.color": "#c4a7e7",
|
"theme.bar.border.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
||||||
"theme.bar.buttons.borderColor": "#c4a7e7"
|
"theme.bar.buttons.borderColor": "#c4a7e7",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#2a283e",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#eb6f92",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#2a283e",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#2a283e",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#eb6f92"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
||||||
"theme.bar.border.color": "#c4a7e7",
|
"theme.bar.border.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
||||||
"theme.bar.buttons.borderColor": "#c4a7e7"
|
"theme.bar.buttons.borderColor": "#c4a7e7",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f6c177",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#21202e",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
"theme.bar.buttons.systray.customIcon": "#e0def4",
|
||||||
"theme.bar.border.color": "#c4a7e7",
|
"theme.bar.border.color": "#c4a7e7",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
"theme.bar.menus.menu.media.timestamp": "#e0def4",
|
||||||
"theme.bar.buttons.borderColor": "#c4a7e7"
|
"theme.bar.buttons.borderColor": "#c4a7e7",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#21202e",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#eb6f92",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#eb6f92",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#21202e",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#eb6f92"
|
||||||
}
|
}
|
||||||
@@ -1,348 +1,354 @@
|
|||||||
{
|
{
|
||||||
"theme.bar.menus.background": "#1a1b26",
|
"theme.bar.menus.background": "#1a1b26",
|
||||||
"theme.bar.background": "#1a1b26",
|
"theme.bar.background": "#1a1b26",
|
||||||
"theme.bar.buttons.media.icon": "#bb9af7",
|
"theme.bar.buttons.media.icon": "#bb9af7",
|
||||||
"theme.bar.buttons.media.text": "#bb9af7",
|
"theme.bar.buttons.media.text": "#bb9af7",
|
||||||
"theme.bar.buttons.icon": "#bb9af7",
|
"theme.bar.buttons.icon": "#bb9af7",
|
||||||
"theme.bar.buttons.text": "#bb9af7",
|
"theme.bar.buttons.text": "#bb9af7",
|
||||||
"theme.bar.buttons.hover": "#414868",
|
"theme.bar.buttons.hover": "#414868",
|
||||||
"theme.bar.buttons.background": "#272a3d",
|
"theme.bar.buttons.background": "#272a3d",
|
||||||
"theme.bar.menus.text": "#c0caf5",
|
"theme.bar.menus.text": "#c0caf5",
|
||||||
"theme.bar.menus.border.color": "#414868",
|
"theme.bar.menus.border.color": "#414868",
|
||||||
"theme.bar.buttons.media.background": "#272a3d",
|
"theme.bar.buttons.media.background": "#272a3d",
|
||||||
"theme.bar.menus.menu.volume.text": "#c0caf5",
|
"theme.bar.menus.menu.volume.text": "#c0caf5",
|
||||||
"theme.bar.menus.menu.volume.card.color": "#24283b",
|
"theme.bar.menus.menu.volume.card.color": "#24283b",
|
||||||
"theme.bar.menus.menu.volume.label.color": "#f7768e",
|
"theme.bar.menus.menu.volume.label.color": "#f7768e",
|
||||||
"theme.bar.menus.popover.text": "#bb9af7",
|
"theme.bar.menus.popover.text": "#bb9af7",
|
||||||
"theme.bar.menus.popover.background": "#1a1b26",
|
"theme.bar.menus.popover.background": "#1a1b26",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#f7768e",
|
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#f7768e",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#9ece6a",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#9ece6a",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#1a1b26",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#1a1b26",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#c0caf5",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#c0caf5",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#bb9af7",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#bb9af7",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#414868",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#414868",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#1a1b26",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#1a1b26",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#24283b",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#24283b",
|
||||||
"theme.bar.menus.menu.notifications.switch.puck": "#565f89",
|
"theme.bar.menus.menu.notifications.switch.puck": "#565f89",
|
||||||
"theme.bar.menus.menu.notifications.switch.disabled": "#565f89",
|
"theme.bar.menus.menu.notifications.switch.disabled": "#565f89",
|
||||||
"theme.bar.menus.menu.notifications.switch.enabled": "#bb9af7",
|
"theme.bar.menus.menu.notifications.switch.enabled": "#bb9af7",
|
||||||
"theme.bar.menus.menu.notifications.clear": "#f7768e",
|
"theme.bar.menus.menu.notifications.clear": "#f7768e",
|
||||||
"theme.bar.menus.menu.notifications.switch_divider": "#414868",
|
"theme.bar.menus.menu.notifications.switch_divider": "#414868",
|
||||||
"theme.bar.menus.menu.notifications.border": "#414868",
|
"theme.bar.menus.menu.notifications.border": "#414868",
|
||||||
"theme.bar.menus.menu.notifications.card": "#24283b",
|
"theme.bar.menus.menu.notifications.card": "#24283b",
|
||||||
"theme.bar.menus.menu.notifications.background": "#1a1b26",
|
"theme.bar.menus.menu.notifications.background": "#1a1b26",
|
||||||
"theme.bar.menus.menu.notifications.no_notifications_label": "#414868",
|
"theme.bar.menus.menu.notifications.no_notifications_label": "#414868",
|
||||||
"theme.bar.menus.menu.notifications.label": "#bb9af7",
|
"theme.bar.menus.menu.notifications.label": "#bb9af7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#f7768e",
|
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#f7768e",
|
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#f7768e",
|
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#9ece6a",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#9ece6a",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#9ece6a",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#9ece6a",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#9ece6a",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#9ece6a",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#e0af68",
|
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#e0af68",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#e0af68",
|
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#e0af68",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#e0af68",
|
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#e0af68",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#f7768e",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#f7768e",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#f7768e",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#414868",
|
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#414868",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#bb9af7",
|
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#bb9af7",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#bb9af7",
|
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#bb9af7",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#73daca",
|
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#73daca",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#f7768e",
|
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#e0af68",
|
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#e0af68",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#f7768e",
|
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.text": "#1a1b26",
|
"theme.bar.menus.menu.dashboard.controls.input.text": "#1a1b26",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.background": "#f7768e",
|
"theme.bar.menus.menu.dashboard.controls.input.background": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.text": "#1a1b26",
|
"theme.bar.menus.menu.dashboard.controls.volume.text": "#1a1b26",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.background": "#f7768e",
|
"theme.bar.menus.menu.dashboard.controls.volume.background": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#1a1b26",
|
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#1a1b26",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#e0af68",
|
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#e0af68",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#1a1b26",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#1a1b26",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#7dcfff",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#7dcfff",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#1a1b26",
|
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#1a1b26",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#bb9af7",
|
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#bb9af7",
|
||||||
"theme.bar.menus.menu.dashboard.controls.disabled": "#414868",
|
"theme.bar.menus.menu.dashboard.controls.disabled": "#414868",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#9ece6a",
|
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#9ece6a",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.text": "#1a1b26",
|
"theme.bar.menus.menu.dashboard.shortcuts.text": "#1a1b26",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.background": "#bb9af7",
|
"theme.bar.menus.menu.dashboard.shortcuts.background": "#bb9af7",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#7dcfff",
|
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#7dcfff",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.logout": "#9ece6a",
|
"theme.bar.menus.menu.dashboard.powermenu.logout": "#9ece6a",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.restart": "#e0af68",
|
"theme.bar.menus.menu.dashboard.powermenu.restart": "#e0af68",
|
||||||
"theme.bar.menus.menu.dashboard.profile.name": "#f7768e",
|
"theme.bar.menus.menu.dashboard.profile.name": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.border.color": "#414868",
|
"theme.bar.menus.menu.dashboard.border.color": "#414868",
|
||||||
"theme.bar.menus.menu.dashboard.background.color": "#1a1b26",
|
"theme.bar.menus.menu.dashboard.background.color": "#1a1b26",
|
||||||
"theme.bar.menus.menu.dashboard.card.color": "#24283b",
|
"theme.bar.menus.menu.dashboard.card.color": "#24283b",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#f7768e",
|
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#f7768e",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.icon": "#f7768e",
|
"theme.bar.menus.menu.clock.weather.hourly.icon": "#f7768e",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.time": "#f7768e",
|
"theme.bar.menus.menu.clock.weather.hourly.time": "#f7768e",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#7dcfff",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#7dcfff",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#7aa2f7",
|
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#7aa2f7",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#bb9af7",
|
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#bb9af7",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#e0af68",
|
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#e0af68",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#f7768e",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#f7768e",
|
||||||
"theme.bar.menus.menu.clock.weather.stats": "#f7768e",
|
"theme.bar.menus.menu.clock.weather.stats": "#f7768e",
|
||||||
"theme.bar.menus.menu.clock.weather.status": "#73daca",
|
"theme.bar.menus.menu.clock.weather.status": "#73daca",
|
||||||
"theme.bar.menus.menu.clock.weather.temperature": "#c0caf5",
|
"theme.bar.menus.menu.clock.weather.temperature": "#c0caf5",
|
||||||
"theme.bar.menus.menu.clock.weather.icon": "#f7768e",
|
"theme.bar.menus.menu.clock.weather.icon": "#f7768e",
|
||||||
"theme.bar.menus.menu.clock.calendar.contextdays": "#414868",
|
"theme.bar.menus.menu.clock.calendar.contextdays": "#414868",
|
||||||
"theme.bar.menus.menu.clock.calendar.days": "#c0caf5",
|
"theme.bar.menus.menu.clock.calendar.days": "#c0caf5",
|
||||||
"theme.bar.menus.menu.clock.calendar.currentday": "#f7768e",
|
"theme.bar.menus.menu.clock.calendar.currentday": "#f7768e",
|
||||||
"theme.bar.menus.menu.clock.calendar.paginator": "#f7768e",
|
"theme.bar.menus.menu.clock.calendar.paginator": "#f7768e",
|
||||||
"theme.bar.menus.menu.clock.calendar.weekdays": "#f7768e",
|
"theme.bar.menus.menu.clock.calendar.weekdays": "#f7768e",
|
||||||
"theme.bar.menus.menu.clock.calendar.yearmonth": "#73daca",
|
"theme.bar.menus.menu.clock.calendar.yearmonth": "#73daca",
|
||||||
"theme.bar.menus.menu.clock.time.timeperiod": "#73daca",
|
"theme.bar.menus.menu.clock.time.timeperiod": "#73daca",
|
||||||
"theme.bar.menus.menu.clock.time.time": "#f7768e",
|
"theme.bar.menus.menu.clock.time.time": "#f7768e",
|
||||||
"theme.bar.menus.menu.clock.text": "#c0caf5",
|
"theme.bar.menus.menu.clock.text": "#c0caf5",
|
||||||
"theme.bar.menus.menu.clock.border.color": "#414868",
|
"theme.bar.menus.menu.clock.border.color": "#414868",
|
||||||
"theme.bar.menus.menu.clock.background.color": "#1a1b26",
|
"theme.bar.menus.menu.clock.background.color": "#1a1b26",
|
||||||
"theme.bar.menus.menu.clock.card.color": "#24283b",
|
"theme.bar.menus.menu.clock.card.color": "#24283b",
|
||||||
"theme.bar.menus.menu.battery.slider.puck": "#565f89",
|
"theme.bar.menus.menu.battery.slider.puck": "#565f89",
|
||||||
"theme.bar.menus.menu.battery.slider.backgroundhover": "#414868",
|
"theme.bar.menus.menu.battery.slider.backgroundhover": "#414868",
|
||||||
"theme.bar.menus.menu.battery.slider.background": "#565f89",
|
"theme.bar.menus.menu.battery.slider.background": "#565f89",
|
||||||
"theme.bar.menus.menu.battery.slider.primary": "#e0af68",
|
"theme.bar.menus.menu.battery.slider.primary": "#e0af68",
|
||||||
"theme.bar.menus.menu.battery.icons.active": "#e0af68",
|
"theme.bar.menus.menu.battery.icons.active": "#e0af68",
|
||||||
"theme.bar.menus.menu.battery.icons.passive": "#565f89",
|
"theme.bar.menus.menu.battery.icons.passive": "#565f89",
|
||||||
"theme.bar.menus.menu.battery.listitems.active": "#e0af68",
|
"theme.bar.menus.menu.battery.listitems.active": "#e0af68",
|
||||||
"theme.bar.menus.menu.battery.listitems.passive": "#c0caf5",
|
"theme.bar.menus.menu.battery.listitems.passive": "#c0caf5",
|
||||||
"theme.bar.menus.menu.battery.text": "#c0caf5",
|
"theme.bar.menus.menu.battery.text": "#c0caf5",
|
||||||
"theme.bar.menus.menu.battery.label.color": "#e0af68",
|
"theme.bar.menus.menu.battery.label.color": "#e0af68",
|
||||||
"theme.bar.menus.menu.battery.border.color": "#414868",
|
"theme.bar.menus.menu.battery.border.color": "#414868",
|
||||||
"theme.bar.menus.menu.battery.background.color": "#1a1b26",
|
"theme.bar.menus.menu.battery.background.color": "#1a1b26",
|
||||||
"theme.bar.menus.menu.battery.card.color": "#24283b",
|
"theme.bar.menus.menu.battery.card.color": "#24283b",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#24283b",
|
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#24283b",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.text": "#c0caf5",
|
"theme.bar.menus.menu.systray.dropdownmenu.text": "#c0caf5",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.background": "#1a1b26",
|
"theme.bar.menus.menu.systray.dropdownmenu.background": "#1a1b26",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#7dcfff",
|
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#7dcfff",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#c0caf5",
|
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#c0caf5",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.active": "#7dcfff",
|
"theme.bar.menus.menu.bluetooth.icons.active": "#7dcfff",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.passive": "#565f89",
|
"theme.bar.menus.menu.bluetooth.icons.passive": "#565f89",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.active": "#7dcfff",
|
"theme.bar.menus.menu.bluetooth.listitems.active": "#7dcfff",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.passive": "#c0caf5",
|
"theme.bar.menus.menu.bluetooth.listitems.passive": "#c0caf5",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.puck": "#565f89",
|
"theme.bar.menus.menu.bluetooth.switch.puck": "#565f89",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.disabled": "#565f89",
|
"theme.bar.menus.menu.bluetooth.switch.disabled": "#565f89",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.enabled": "#7dcfff",
|
"theme.bar.menus.menu.bluetooth.switch.enabled": "#7dcfff",
|
||||||
"theme.bar.menus.menu.bluetooth.switch_divider": "#414868",
|
"theme.bar.menus.menu.bluetooth.switch_divider": "#414868",
|
||||||
"theme.bar.menus.menu.bluetooth.status": "#565f89",
|
"theme.bar.menus.menu.bluetooth.status": "#565f89",
|
||||||
"theme.bar.menus.menu.bluetooth.text": "#c0caf5",
|
"theme.bar.menus.menu.bluetooth.text": "#c0caf5",
|
||||||
"theme.bar.menus.menu.bluetooth.label.color": "#7dcfff",
|
"theme.bar.menus.menu.bluetooth.label.color": "#7dcfff",
|
||||||
"theme.bar.menus.menu.bluetooth.border.color": "#414868",
|
"theme.bar.menus.menu.bluetooth.border.color": "#414868",
|
||||||
"theme.bar.menus.menu.bluetooth.background.color": "#1a1b26",
|
"theme.bar.menus.menu.bluetooth.background.color": "#1a1b26",
|
||||||
"theme.bar.menus.menu.bluetooth.card.color": "#24283b",
|
"theme.bar.menus.menu.bluetooth.card.color": "#24283b",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.active": "#bb9af7",
|
"theme.bar.menus.menu.network.iconbuttons.active": "#bb9af7",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.passive": "#c0caf5",
|
"theme.bar.menus.menu.network.iconbuttons.passive": "#c0caf5",
|
||||||
"theme.bar.menus.menu.network.icons.active": "#bb9af7",
|
"theme.bar.menus.menu.network.icons.active": "#bb9af7",
|
||||||
"theme.bar.menus.menu.network.icons.passive": "#565f89",
|
"theme.bar.menus.menu.network.icons.passive": "#565f89",
|
||||||
"theme.bar.menus.menu.network.listitems.active": "#bb9af7",
|
"theme.bar.menus.menu.network.listitems.active": "#bb9af7",
|
||||||
"theme.bar.menus.menu.network.listitems.passive": "#c0caf5",
|
"theme.bar.menus.menu.network.listitems.passive": "#c0caf5",
|
||||||
"theme.bar.menus.menu.network.status.color": "#565f89",
|
"theme.bar.menus.menu.network.status.color": "#565f89",
|
||||||
"theme.bar.menus.menu.network.text": "#c0caf5",
|
"theme.bar.menus.menu.network.text": "#c0caf5",
|
||||||
"theme.bar.menus.menu.network.label.color": "#bb9af7",
|
"theme.bar.menus.menu.network.label.color": "#bb9af7",
|
||||||
"theme.bar.menus.menu.network.border.color": "#414868",
|
"theme.bar.menus.menu.network.border.color": "#414868",
|
||||||
"theme.bar.menus.menu.network.background.color": "#1a1b26",
|
"theme.bar.menus.menu.network.background.color": "#1a1b26",
|
||||||
"theme.bar.menus.menu.network.card.color": "#24283b",
|
"theme.bar.menus.menu.network.card.color": "#24283b",
|
||||||
"theme.bar.menus.menu.volume.input_slider.puck": "#414868",
|
"theme.bar.menus.menu.volume.input_slider.puck": "#414868",
|
||||||
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#414868",
|
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#414868",
|
||||||
"theme.bar.menus.menu.volume.input_slider.background": "#565f89",
|
"theme.bar.menus.menu.volume.input_slider.background": "#565f89",
|
||||||
"theme.bar.menus.menu.volume.input_slider.primary": "#f7768e",
|
"theme.bar.menus.menu.volume.input_slider.primary": "#f7768e",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.puck": "#414868",
|
"theme.bar.menus.menu.volume.audio_slider.puck": "#414868",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#414868",
|
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#414868",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.background": "#565f89",
|
"theme.bar.menus.menu.volume.audio_slider.background": "#565f89",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.primary": "#f7768e",
|
"theme.bar.menus.menu.volume.audio_slider.primary": "#f7768e",
|
||||||
"theme.bar.menus.menu.volume.icons.active": "#f7768e",
|
"theme.bar.menus.menu.volume.icons.active": "#f7768e",
|
||||||
"theme.bar.menus.menu.volume.icons.passive": "#565f89",
|
"theme.bar.menus.menu.volume.icons.passive": "#565f89",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.active": "#f7768e",
|
"theme.bar.menus.menu.volume.iconbutton.active": "#f7768e",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.passive": "#c0caf5",
|
"theme.bar.menus.menu.volume.iconbutton.passive": "#c0caf5",
|
||||||
"theme.bar.menus.menu.volume.listitems.active": "#f7768e",
|
"theme.bar.menus.menu.volume.listitems.active": "#f7768e",
|
||||||
"theme.bar.menus.menu.volume.listitems.passive": "#c0caf5",
|
"theme.bar.menus.menu.volume.listitems.passive": "#c0caf5",
|
||||||
"theme.bar.menus.menu.volume.border.color": "#414868",
|
"theme.bar.menus.menu.volume.border.color": "#414868",
|
||||||
"theme.bar.menus.menu.volume.background.color": "#1a1b26",
|
"theme.bar.menus.menu.volume.background.color": "#1a1b26",
|
||||||
"theme.bar.menus.menu.media.slider.puck": "#565f89",
|
"theme.bar.menus.menu.media.slider.puck": "#565f89",
|
||||||
"theme.bar.menus.menu.media.slider.backgroundhover": "#414868",
|
"theme.bar.menus.menu.media.slider.backgroundhover": "#414868",
|
||||||
"theme.bar.menus.menu.media.slider.background": "#565f89",
|
"theme.bar.menus.menu.media.slider.background": "#565f89",
|
||||||
"theme.bar.menus.menu.media.slider.primary": "#f7768e",
|
"theme.bar.menus.menu.media.slider.primary": "#f7768e",
|
||||||
"theme.bar.menus.menu.media.buttons.text": "#1a1b26",
|
"theme.bar.menus.menu.media.buttons.text": "#1a1b26",
|
||||||
"theme.bar.menus.menu.media.buttons.background": "#bb9af7",
|
"theme.bar.menus.menu.media.buttons.background": "#bb9af7",
|
||||||
"theme.bar.menus.menu.media.buttons.enabled": "#73daca",
|
"theme.bar.menus.menu.media.buttons.enabled": "#73daca",
|
||||||
"theme.bar.menus.menu.media.buttons.inactive": "#414868",
|
"theme.bar.menus.menu.media.buttons.inactive": "#414868",
|
||||||
"theme.bar.menus.menu.media.border.color": "#414868",
|
"theme.bar.menus.menu.media.border.color": "#414868",
|
||||||
"theme.bar.menus.menu.media.background.color": "#1a1b26",
|
"theme.bar.menus.menu.media.background.color": "#1a1b26",
|
||||||
"theme.bar.menus.menu.media.album": "#f7768e",
|
"theme.bar.menus.menu.media.album": "#f7768e",
|
||||||
"theme.bar.menus.menu.media.artist": "#73daca",
|
"theme.bar.menus.menu.media.artist": "#73daca",
|
||||||
"theme.bar.menus.menu.media.song": "#bb9af7",
|
"theme.bar.menus.menu.media.song": "#bb9af7",
|
||||||
"theme.bar.menus.tooltip.text": "#c0caf5",
|
"theme.bar.menus.tooltip.text": "#c0caf5",
|
||||||
"theme.bar.menus.tooltip.background": "#1a1b26",
|
"theme.bar.menus.tooltip.background": "#1a1b26",
|
||||||
"theme.bar.menus.dropdownmenu.divider": "#24283b",
|
"theme.bar.menus.dropdownmenu.divider": "#24283b",
|
||||||
"theme.bar.menus.dropdownmenu.text": "#c0caf5",
|
"theme.bar.menus.dropdownmenu.text": "#c0caf5",
|
||||||
"theme.bar.menus.dropdownmenu.background": "#1a1b26",
|
"theme.bar.menus.dropdownmenu.background": "#1a1b26",
|
||||||
"theme.bar.menus.slider.puck": "#565f89",
|
"theme.bar.menus.slider.puck": "#565f89",
|
||||||
"theme.bar.menus.slider.backgroundhover": "#414868",
|
"theme.bar.menus.slider.backgroundhover": "#414868",
|
||||||
"theme.bar.menus.slider.background": "#565f89",
|
"theme.bar.menus.slider.background": "#565f89",
|
||||||
"theme.bar.menus.slider.primary": "#bb9af7",
|
"theme.bar.menus.slider.primary": "#bb9af7",
|
||||||
"theme.bar.menus.progressbar.background": "#414868",
|
"theme.bar.menus.progressbar.background": "#414868",
|
||||||
"theme.bar.menus.progressbar.foreground": "#bb9af7",
|
"theme.bar.menus.progressbar.foreground": "#bb9af7",
|
||||||
"theme.bar.menus.iconbuttons.active": "#bb9af7",
|
"theme.bar.menus.iconbuttons.active": "#bb9af7",
|
||||||
"theme.bar.menus.iconbuttons.passive": "#c0caf5",
|
"theme.bar.menus.iconbuttons.passive": "#c0caf5",
|
||||||
"theme.bar.menus.buttons.text": "#1a1b26",
|
"theme.bar.menus.buttons.text": "#1a1b26",
|
||||||
"theme.bar.menus.buttons.disabled": "#565f89",
|
"theme.bar.menus.buttons.disabled": "#565f89",
|
||||||
"theme.bar.menus.buttons.active": "#f7768e",
|
"theme.bar.menus.buttons.active": "#f7768e",
|
||||||
"theme.bar.menus.buttons.default": "#bb9af7",
|
"theme.bar.menus.buttons.default": "#bb9af7",
|
||||||
"theme.bar.menus.switch.puck": "#565f89",
|
"theme.bar.menus.switch.puck": "#565f89",
|
||||||
"theme.bar.menus.switch.disabled": "#565f89",
|
"theme.bar.menus.switch.disabled": "#565f89",
|
||||||
"theme.bar.menus.switch.enabled": "#bb9af7",
|
"theme.bar.menus.switch.enabled": "#bb9af7",
|
||||||
"theme.bar.menus.icons.active": "#bb9af7",
|
"theme.bar.menus.icons.active": "#bb9af7",
|
||||||
"theme.bar.menus.icons.passive": "#414868",
|
"theme.bar.menus.icons.passive": "#414868",
|
||||||
"theme.bar.menus.listitems.active": "#bb9af7",
|
"theme.bar.menus.listitems.active": "#bb9af7",
|
||||||
"theme.bar.menus.listitems.passive": "#c0caf5",
|
"theme.bar.menus.listitems.passive": "#c0caf5",
|
||||||
"theme.bar.menus.label": "#bb9af7",
|
"theme.bar.menus.label": "#bb9af7",
|
||||||
"theme.bar.menus.feinttext": "#414868",
|
"theme.bar.menus.feinttext": "#414868",
|
||||||
"theme.bar.menus.dimtext": "#414868",
|
"theme.bar.menus.dimtext": "#414868",
|
||||||
"theme.bar.menus.cards": "#24283b",
|
"theme.bar.menus.cards": "#24283b",
|
||||||
"theme.bar.buttons.notifications.total": "#bb9af7",
|
"theme.bar.buttons.notifications.total": "#bb9af7",
|
||||||
"theme.bar.buttons.notifications.icon": "#bb9af7",
|
"theme.bar.buttons.notifications.icon": "#bb9af7",
|
||||||
"theme.bar.buttons.notifications.background": "#272a3d",
|
"theme.bar.buttons.notifications.background": "#272a3d",
|
||||||
"theme.bar.buttons.clock.icon": "#f7768e",
|
"theme.bar.buttons.clock.icon": "#f7768e",
|
||||||
"theme.bar.buttons.clock.text": "#f7768e",
|
"theme.bar.buttons.clock.text": "#f7768e",
|
||||||
"theme.bar.buttons.clock.background": "#272a3d",
|
"theme.bar.buttons.clock.background": "#272a3d",
|
||||||
"theme.bar.buttons.battery.icon": "#e0af68",
|
"theme.bar.buttons.battery.icon": "#e0af68",
|
||||||
"theme.bar.buttons.battery.text": "#e0af68",
|
"theme.bar.buttons.battery.text": "#e0af68",
|
||||||
"theme.bar.buttons.battery.background": "#272a3d",
|
"theme.bar.buttons.battery.background": "#272a3d",
|
||||||
"theme.bar.buttons.systray.background": "#272a3d",
|
"theme.bar.buttons.systray.background": "#272a3d",
|
||||||
"theme.bar.buttons.bluetooth.icon": "#7dcfff",
|
"theme.bar.buttons.bluetooth.icon": "#7dcfff",
|
||||||
"theme.bar.buttons.bluetooth.text": "#7dcfff",
|
"theme.bar.buttons.bluetooth.text": "#7dcfff",
|
||||||
"theme.bar.buttons.bluetooth.background": "#272a3d",
|
"theme.bar.buttons.bluetooth.background": "#272a3d",
|
||||||
"theme.bar.buttons.network.icon": "#bb9af7",
|
"theme.bar.buttons.network.icon": "#bb9af7",
|
||||||
"theme.bar.buttons.network.text": "#bb9af7",
|
"theme.bar.buttons.network.text": "#bb9af7",
|
||||||
"theme.bar.buttons.network.background": "#272a3d",
|
"theme.bar.buttons.network.background": "#272a3d",
|
||||||
"theme.bar.buttons.volume.icon": "#f7768e",
|
"theme.bar.buttons.volume.icon": "#f7768e",
|
||||||
"theme.bar.buttons.volume.text": "#f7768e",
|
"theme.bar.buttons.volume.text": "#f7768e",
|
||||||
"theme.bar.buttons.volume.background": "#272a3d",
|
"theme.bar.buttons.volume.background": "#272a3d",
|
||||||
"theme.bar.buttons.windowtitle.icon": "#f7768e",
|
"theme.bar.buttons.windowtitle.icon": "#f7768e",
|
||||||
"theme.bar.buttons.windowtitle.text": "#f7768e",
|
"theme.bar.buttons.windowtitle.text": "#f7768e",
|
||||||
"theme.bar.buttons.windowtitle.background": "#272a3d",
|
"theme.bar.buttons.windowtitle.background": "#272a3d",
|
||||||
"theme.bar.buttons.workspaces.active": "#f7768e",
|
"theme.bar.buttons.workspaces.active": "#f7768e",
|
||||||
"theme.bar.buttons.workspaces.occupied": "#f7768e",
|
"theme.bar.buttons.workspaces.occupied": "#f7768e",
|
||||||
"theme.bar.buttons.workspaces.available": "#7dcfff",
|
"theme.bar.buttons.workspaces.available": "#7dcfff",
|
||||||
"theme.bar.buttons.workspaces.hover": "#414868",
|
"theme.bar.buttons.workspaces.hover": "#414868",
|
||||||
"theme.bar.buttons.workspaces.background": "#272a3d",
|
"theme.bar.buttons.workspaces.background": "#272a3d",
|
||||||
"theme.bar.buttons.dashboard.icon": "#e0af68",
|
"theme.bar.buttons.dashboard.icon": "#e0af68",
|
||||||
"theme.bar.buttons.dashboard.background": "#272a3d",
|
"theme.bar.buttons.dashboard.background": "#272a3d",
|
||||||
"theme.osd.label": "#bb9af7",
|
"theme.osd.label": "#bb9af7",
|
||||||
"theme.osd.icon": "#1a1b26",
|
"theme.osd.icon": "#1a1b26",
|
||||||
"theme.osd.bar_overflow_color": "#f7768e",
|
"theme.osd.bar_overflow_color": "#f7768e",
|
||||||
"theme.osd.bar_empty_color": "#414868",
|
"theme.osd.bar_empty_color": "#414868",
|
||||||
"theme.osd.bar_color": "#bb9af7",
|
"theme.osd.bar_color": "#bb9af7",
|
||||||
"theme.osd.icon_container": "#bb9af7",
|
"theme.osd.icon_container": "#bb9af7",
|
||||||
"theme.osd.bar_container": "#1a1b26",
|
"theme.osd.bar_container": "#1a1b26",
|
||||||
"theme.notification.close_button.label": "#1a1b26",
|
"theme.notification.close_button.label": "#1a1b26",
|
||||||
"theme.notification.close_button.background": "#f7768e",
|
"theme.notification.close_button.background": "#f7768e",
|
||||||
"theme.notification.labelicon": "#bb9af7",
|
"theme.notification.labelicon": "#bb9af7",
|
||||||
"theme.notification.text": "#c0caf5",
|
"theme.notification.text": "#c0caf5",
|
||||||
"theme.notification.time": "#9aa5ce",
|
"theme.notification.time": "#9aa5ce",
|
||||||
"theme.notification.border": "#565f89",
|
"theme.notification.border": "#565f89",
|
||||||
"theme.notification.label": "#bb9af7",
|
"theme.notification.label": "#bb9af7",
|
||||||
"theme.notification.actions.text": "#24283b",
|
"theme.notification.actions.text": "#24283b",
|
||||||
"theme.notification.actions.background": "#bb9af7",
|
"theme.notification.actions.background": "#bb9af7",
|
||||||
"theme.notification.background": "#1a1b26",
|
"theme.notification.background": "#1a1b26",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
|
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#c678dd",
|
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#c678dd",
|
||||||
"theme.bar.menus.menu.media.card.color": "#24283b",
|
"theme.bar.menus.menu.media.card.color": "#24283b",
|
||||||
"theme.bar.menus.check_radio_button.background": "#3b4261",
|
"theme.bar.menus.check_radio_button.background": "#3b4261",
|
||||||
"theme.bar.menus.check_radio_button.active": "#bb9af7",
|
"theme.bar.menus.check_radio_button.active": "#bb9af7",
|
||||||
"theme.bar.buttons.style": "default",
|
"theme.bar.buttons.style": "default",
|
||||||
"theme.bar.menus.menu.notifications.pager.button": "#bb9af7",
|
"theme.bar.menus.menu.notifications.pager.button": "#bb9af7",
|
||||||
"theme.bar.menus.menu.notifications.scrollbar.color": "#bb9af7",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#bb9af7",
|
||||||
"theme.bar.menus.menu.notifications.pager.label": "#565f89",
|
"theme.bar.menus.menu.notifications.pager.label": "#565f89",
|
||||||
"theme.bar.menus.menu.notifications.pager.background": "#1a1b26",
|
"theme.bar.menus.menu.notifications.pager.background": "#1a1b26",
|
||||||
"theme.bar.buttons.clock.icon_background": "#f7768e",
|
"theme.bar.buttons.clock.icon_background": "#f7768e",
|
||||||
"theme.bar.buttons.modules.ram.icon": "#e0af68",
|
"theme.bar.buttons.modules.ram.icon": "#e0af68",
|
||||||
"theme.bar.buttons.modules.storage.icon_background": "#f7768e",
|
"theme.bar.buttons.modules.storage.icon_background": "#f7768e",
|
||||||
"theme.bar.menus.popover.border": "#1a1b26",
|
"theme.bar.menus.popover.border": "#1a1b26",
|
||||||
"theme.bar.buttons.volume.icon_background": "#f7768e",
|
"theme.bar.buttons.volume.icon_background": "#f7768e",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#7dcfff",
|
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#7dcfff",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.text": "#e0af68",
|
"theme.bar.menus.menu.power.buttons.restart.text": "#e0af68",
|
||||||
"theme.bar.buttons.modules.updates.background": "#272a3d",
|
"theme.bar.buttons.modules.updates.background": "#272a3d",
|
||||||
"theme.bar.buttons.modules.storage.icon": "#f7768e",
|
"theme.bar.buttons.modules.storage.icon": "#f7768e",
|
||||||
"theme.bar.buttons.modules.netstat.background": "#272a3d",
|
"theme.bar.buttons.modules.netstat.background": "#272a3d",
|
||||||
"theme.bar.buttons.modules.weather.icon": "#bb9af7",
|
"theme.bar.buttons.modules.weather.icon": "#bb9af7",
|
||||||
"theme.bar.buttons.modules.netstat.text": "#9ece6a",
|
"theme.bar.buttons.modules.netstat.text": "#9ece6a",
|
||||||
"theme.bar.buttons.modules.storage.background": "#272a3d",
|
"theme.bar.buttons.modules.storage.background": "#272a3d",
|
||||||
"theme.bar.buttons.modules.power.icon": "#f7768e",
|
"theme.bar.buttons.modules.power.icon": "#f7768e",
|
||||||
"theme.bar.buttons.modules.storage.text": "#f7768e",
|
"theme.bar.buttons.modules.storage.text": "#f7768e",
|
||||||
"theme.bar.buttons.modules.cpu.background": "#272a3d",
|
"theme.bar.buttons.modules.cpu.background": "#272a3d",
|
||||||
"theme.bar.menus.menu.power.border.color": "#414868",
|
"theme.bar.menus.menu.power.border.color": "#414868",
|
||||||
"theme.bar.buttons.network.icon_background": "#caa6f7",
|
"theme.bar.buttons.network.icon_background": "#caa6f7",
|
||||||
"theme.bar.buttons.modules.power.icon_background": "#f7768e",
|
"theme.bar.buttons.modules.power.icon_background": "#f7768e",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon": "#1a1b26",
|
"theme.bar.menus.menu.power.buttons.logout.icon": "#1a1b26",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#e0af68",
|
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#e0af68",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon": "#1a1b26",
|
"theme.bar.menus.menu.power.buttons.restart.icon": "#1a1b26",
|
||||||
"theme.bar.buttons.modules.cpu.icon": "#f7768e",
|
"theme.bar.buttons.modules.cpu.icon": "#f7768e",
|
||||||
"theme.bar.buttons.battery.icon_background": "#e0af68",
|
"theme.bar.buttons.battery.icon_background": "#e0af68",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon_background": "#7dcfff",
|
"theme.bar.buttons.modules.kbLayout.icon_background": "#7dcfff",
|
||||||
"theme.bar.buttons.modules.weather.text": "#bb9af7",
|
"theme.bar.buttons.modules.weather.text": "#bb9af7",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#1a1b26",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#1a1b26",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.text": "#7dcfff",
|
"theme.bar.menus.menu.power.buttons.sleep.text": "#7dcfff",
|
||||||
"theme.bar.buttons.modules.weather.icon_background": "#bb9af7",
|
"theme.bar.buttons.modules.weather.icon_background": "#bb9af7",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.background": "#24283b",
|
"theme.bar.menus.menu.power.buttons.shutdown.background": "#24283b",
|
||||||
"theme.bar.buttons.media.icon_background": "#bb9af7",
|
"theme.bar.buttons.media.icon_background": "#bb9af7",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.background": "#24283b",
|
"theme.bar.menus.menu.power.buttons.logout.background": "#24283b",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon": "#7dcfff",
|
"theme.bar.buttons.modules.kbLayout.icon": "#7dcfff",
|
||||||
"theme.bar.buttons.modules.ram.icon_background": "#e0af68",
|
"theme.bar.buttons.modules.ram.icon_background": "#e0af68",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#f7768e",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#f7768e",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.text": "#f7768e",
|
"theme.bar.menus.menu.power.buttons.shutdown.text": "#f7768e",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.background": "#24283b",
|
"theme.bar.menus.menu.power.buttons.sleep.background": "#24283b",
|
||||||
"theme.bar.buttons.modules.ram.text": "#e0af68",
|
"theme.bar.buttons.modules.ram.text": "#e0af68",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.text": "#9ece6a",
|
"theme.bar.menus.menu.power.buttons.logout.text": "#9ece6a",
|
||||||
"theme.bar.buttons.modules.updates.icon_background": "#bb9af7",
|
"theme.bar.buttons.modules.updates.icon_background": "#bb9af7",
|
||||||
"theme.bar.buttons.modules.kbLayout.background": "#272a3d",
|
"theme.bar.buttons.modules.kbLayout.background": "#272a3d",
|
||||||
"theme.bar.buttons.modules.power.background": "#272a3d",
|
"theme.bar.buttons.modules.power.background": "#272a3d",
|
||||||
"theme.bar.buttons.modules.weather.background": "#272a3d",
|
"theme.bar.buttons.modules.weather.background": "#272a3d",
|
||||||
"theme.bar.buttons.icon_background": "#272a3d",
|
"theme.bar.buttons.icon_background": "#272a3d",
|
||||||
"theme.bar.menus.menu.power.background.color": "#1a1b26",
|
"theme.bar.menus.menu.power.background.color": "#1a1b26",
|
||||||
"theme.bar.buttons.modules.ram.background": "#272a3d",
|
"theme.bar.buttons.modules.ram.background": "#272a3d",
|
||||||
"theme.bar.buttons.modules.netstat.icon": "#9ece6a",
|
"theme.bar.buttons.modules.netstat.icon": "#9ece6a",
|
||||||
"theme.bar.buttons.windowtitle.icon_background": "#f7768e",
|
"theme.bar.buttons.windowtitle.icon_background": "#f7768e",
|
||||||
"theme.bar.buttons.modules.cpu.icon_background": "#f7768e",
|
"theme.bar.buttons.modules.cpu.icon_background": "#f7768e",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#9ece6a",
|
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#9ece6a",
|
||||||
"theme.bar.buttons.modules.updates.text": "#bb9af7",
|
"theme.bar.buttons.modules.updates.text": "#bb9af7",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon": "#1a1b26",
|
"theme.bar.menus.menu.power.buttons.sleep.icon": "#1a1b26",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
|
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.background": "#24283b",
|
"theme.bar.menus.menu.power.buttons.restart.background": "#24283b",
|
||||||
"theme.bar.buttons.modules.updates.icon": "#bb9af7",
|
"theme.bar.buttons.modules.updates.icon": "#bb9af7",
|
||||||
"theme.bar.buttons.modules.cpu.text": "#f7768e",
|
"theme.bar.buttons.modules.cpu.text": "#f7768e",
|
||||||
"theme.bar.buttons.modules.netstat.icon_background": "#9ece6a",
|
"theme.bar.buttons.modules.netstat.icon_background": "#9ece6a",
|
||||||
"theme.bar.buttons.modules.kbLayout.text": "#7dcfff",
|
"theme.bar.buttons.modules.kbLayout.text": "#7dcfff",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#bb9af7",
|
"theme.bar.buttons.notifications.icon_background": "#bb9af7",
|
||||||
"theme.bar.buttons.modules.power.border": "#f7768e",
|
"theme.bar.buttons.modules.power.border": "#f7768e",
|
||||||
"theme.bar.buttons.modules.weather.border": "#bb9af7",
|
"theme.bar.buttons.modules.weather.border": "#bb9af7",
|
||||||
"theme.bar.buttons.modules.updates.border": "#bb9af7",
|
"theme.bar.buttons.modules.updates.border": "#bb9af7",
|
||||||
"theme.bar.buttons.modules.kbLayout.border": "#7dcfff",
|
"theme.bar.buttons.modules.kbLayout.border": "#7dcfff",
|
||||||
"theme.bar.buttons.modules.netstat.border": "#9ece6a",
|
"theme.bar.buttons.modules.netstat.border": "#9ece6a",
|
||||||
"theme.bar.buttons.modules.storage.border": "#f7768e",
|
"theme.bar.buttons.modules.storage.border": "#f7768e",
|
||||||
"theme.bar.buttons.modules.cpu.border": "#f7768e",
|
"theme.bar.buttons.modules.cpu.border": "#f7768e",
|
||||||
"theme.bar.buttons.modules.ram.border": "#e0af68",
|
"theme.bar.buttons.modules.ram.border": "#e0af68",
|
||||||
"theme.bar.buttons.notifications.border": "#bb9af7",
|
"theme.bar.buttons.notifications.border": "#bb9af7",
|
||||||
"theme.bar.buttons.clock.border": "#f7768e",
|
"theme.bar.buttons.clock.border": "#f7768e",
|
||||||
"theme.bar.buttons.battery.border": "#e0af68",
|
"theme.bar.buttons.battery.border": "#e0af68",
|
||||||
"theme.bar.buttons.systray.border": "#414868",
|
"theme.bar.buttons.systray.border": "#414868",
|
||||||
"theme.bar.buttons.bluetooth.border": "#7dcfff",
|
"theme.bar.buttons.bluetooth.border": "#7dcfff",
|
||||||
"theme.bar.buttons.network.border": "#bb9af7",
|
"theme.bar.buttons.network.border": "#bb9af7",
|
||||||
"theme.bar.buttons.volume.border": "#f7768e",
|
"theme.bar.buttons.volume.border": "#f7768e",
|
||||||
"theme.bar.buttons.media.border": "#bb9af7",
|
"theme.bar.buttons.media.border": "#bb9af7",
|
||||||
"theme.bar.buttons.windowtitle.border": "#f7768e",
|
"theme.bar.buttons.windowtitle.border": "#f7768e",
|
||||||
"theme.bar.buttons.workspaces.border": "#f7768e",
|
"theme.bar.buttons.workspaces.border": "#f7768e",
|
||||||
"theme.bar.buttons.dashboard.border": "#e0af68",
|
"theme.bar.buttons.dashboard.border": "#e0af68",
|
||||||
"theme.bar.buttons.modules.submap.background": "#272a3d",
|
"theme.bar.buttons.modules.submap.background": "#272a3d",
|
||||||
"theme.bar.buttons.modules.submap.text": "#73daca",
|
"theme.bar.buttons.modules.submap.text": "#73daca",
|
||||||
"theme.bar.buttons.modules.submap.border": "#73daca",
|
"theme.bar.buttons.modules.submap.border": "#73daca",
|
||||||
"theme.bar.buttons.modules.submap.icon": "#73daca",
|
"theme.bar.buttons.modules.submap.icon": "#73daca",
|
||||||
"theme.bar.buttons.modules.submap.icon_background": "#272a3d",
|
"theme.bar.buttons.modules.submap.icon_background": "#272a3d",
|
||||||
"theme.bar.menus.menu.network.switch.enabled": "#bb9af7",
|
"theme.bar.menus.menu.network.switch.enabled": "#bb9af7",
|
||||||
"theme.bar.menus.menu.network.switch.disabled": "#565f89",
|
"theme.bar.menus.menu.network.switch.disabled": "#565f89",
|
||||||
"theme.bar.menus.menu.network.switch.puck": "#565f89",
|
"theme.bar.menus.menu.network.switch.puck": "#565f89",
|
||||||
"theme.bar.buttons.systray.customIcon": "#c0caf5",
|
"theme.bar.buttons.systray.customIcon": "#c0caf5",
|
||||||
"theme.bar.border.color": "#bb9af7",
|
"theme.bar.border.color": "#bb9af7",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#c0caf5",
|
"theme.bar.menus.menu.media.timestamp": "#c0caf5",
|
||||||
"theme.bar.buttons.borderColor": "#bb9af7"
|
"theme.bar.buttons.borderColor": "#bb9af7",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#e0af68",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#272a3d",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e0af68",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#e0af68",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#e0af68"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#c0caf5",
|
"theme.bar.buttons.systray.customIcon": "#c0caf5",
|
||||||
"theme.bar.border.color": "#bb9af7",
|
"theme.bar.border.color": "#bb9af7",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#c0caf5",
|
"theme.bar.menus.menu.media.timestamp": "#c0caf5",
|
||||||
"theme.bar.buttons.borderColor": "#bb9af7"
|
"theme.bar.buttons.borderColor": "#bb9af7",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e0af68",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#272a3d",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#e0af68",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#e0af68"
|
||||||
}
|
}
|
||||||
@@ -344,5 +344,10 @@
|
|||||||
"theme.bar.buttons.systray.customIcon": "#c0caf5",
|
"theme.bar.buttons.systray.customIcon": "#c0caf5",
|
||||||
"theme.bar.border.color": "#bb9af7",
|
"theme.bar.border.color": "#bb9af7",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#c0caf5",
|
"theme.bar.menus.menu.media.timestamp": "#c0caf5",
|
||||||
"theme.bar.buttons.borderColor": "#bb9af7"
|
"theme.bar.buttons.borderColor": "#bb9af7",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon": "#272a3d",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.background": "#f7768e",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f7768e",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.text": "#272a3d",
|
||||||
|
"theme.bar.buttons.modules.hyprsunset.border": "#f7768e"
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user