Implemented configurable and toggleable button borders. (#279)

* Implemented configurable and toggleable button borders.

* Improve and simplify border logic

* Fix hidden label icon borders.

* Removed button hover property from bar buttons, they dim on hover now by default.

* Rename file.

* Update catppuccin normal theme's storage module color.

* update mocha items

* update mochas

* Update themes to account for borders
This commit is contained in:
Jas Singh
2024-09-22 02:59:30 -07:00
committed by GitHub
parent b47864d8e1
commit 6905fb4eb7
58 changed files with 2315 additions and 1404 deletions

View File

@@ -32,6 +32,11 @@ export const CustomModuleSettings = (): Scrollable<GtkWidget, Attribute> =>
************************************
*/
Header('RAM'),
Option({
opt: options.theme.bar.buttons.modules.ram.enableBorder,
title: 'Button Border',
type: 'boolean',
}),
Option({
opt: options.bar.customModules.ram.label,
title: 'Show Label',
@@ -83,6 +88,11 @@ export const CustomModuleSettings = (): Scrollable<GtkWidget, Attribute> =>
************************************
*/
Header('CPU'),
Option({
opt: options.theme.bar.buttons.modules.cpu.enableBorder,
title: 'Button Border',
type: 'boolean',
}),
Option({
opt: options.bar.customModules.cpu.label,
title: 'Show Label',
@@ -138,6 +148,11 @@ export const CustomModuleSettings = (): Scrollable<GtkWidget, Attribute> =>
************************************
*/
Header('Storage'),
Option({
opt: options.theme.bar.buttons.modules.storage.enableBorder,
title: 'Button Border',
type: 'boolean',
}),
Option({
opt: options.bar.customModules.storage.icon,
title: 'Storage Icon',
@@ -195,6 +210,11 @@ export const CustomModuleSettings = (): Scrollable<GtkWidget, Attribute> =>
************************************
*/
Header('Netstat'),
Option({
opt: options.theme.bar.buttons.modules.netstat.enableBorder,
title: 'Button Border',
type: 'boolean',
}),
Option({
opt: options.bar.customModules.netstat.networkInterface,
title: 'Network Interface',
@@ -265,6 +285,11 @@ export const CustomModuleSettings = (): Scrollable<GtkWidget, Attribute> =>
************************************
*/
Header('Keyboard Layout'),
Option({
opt: options.theme.bar.buttons.modules.kbLayout.enableBorder,
title: 'Button Border',
type: 'boolean',
}),
Option({
opt: options.bar.customModules.kbLayout.icon,
title: 'kbLayout Icon',
@@ -319,6 +344,11 @@ export const CustomModuleSettings = (): Scrollable<GtkWidget, Attribute> =>
************************************
*/
Header('Updates'),
Option({
opt: options.theme.bar.buttons.modules.updates.enableBorder,
title: 'Button Border',
type: 'boolean',
}),
Option({
opt: options.bar.customModules.updates.updateCommand,
title: 'Check Updates Command',
@@ -386,6 +416,11 @@ export const CustomModuleSettings = (): Scrollable<GtkWidget, Attribute> =>
************************************
*/
Header('Weather'),
Option({
opt: options.theme.bar.buttons.modules.weather.enableBorder,
title: 'Button Border',
type: 'boolean',
}),
Option({
opt: options.bar.customModules.weather.label,
title: 'Show Label',
@@ -434,6 +469,11 @@ export const CustomModuleSettings = (): Scrollable<GtkWidget, Attribute> =>
************************************
*/
Header('Power'),
Option({
opt: options.theme.bar.buttons.modules.power.enableBorder,
title: 'Button Border',
type: 'boolean',
}),
Option({
opt: options.theme.bar.buttons.modules.power.spacing,
title: 'Spacing',

View File

@@ -29,6 +29,7 @@ export const CustomModuleTheme = (): Scrollable<GtkWidget, Attribute> => {
"Applies a background color to the icon section of the button.\nRequires 'split' button styling.",
type: 'color',
}),
Option({ opt: options.theme.bar.buttons.modules.ram.border, title: 'Border', type: 'color' }),
Header('CPU'),
Option({ opt: options.theme.bar.buttons.modules.cpu.text, title: 'Text', type: 'color' }),
@@ -45,6 +46,7 @@ export const CustomModuleTheme = (): Scrollable<GtkWidget, Attribute> => {
"Applies a background color to the icon section of the button.\nRequires 'split' button styling.",
type: 'color',
}),
Option({ opt: options.theme.bar.buttons.modules.cpu.border, title: 'Border', type: 'color' }),
Header('Storage'),
Option({ opt: options.theme.bar.buttons.modules.storage.text, title: 'Text', type: 'color' }),
@@ -61,6 +63,7 @@ export const CustomModuleTheme = (): Scrollable<GtkWidget, Attribute> => {
"Applies a background color to the icon section of the button.\nRequires 'split' button styling.",
type: 'color',
}),
Option({ opt: options.theme.bar.buttons.modules.storage.border, title: 'Border', type: 'color' }),
Header('Netstat'),
Option({ opt: options.theme.bar.buttons.modules.netstat.text, title: 'Text', type: 'color' }),
@@ -77,6 +80,7 @@ export const CustomModuleTheme = (): Scrollable<GtkWidget, Attribute> => {
"Applies a background color to the icon section of the button.\nRequires 'split' button styling.",
type: 'color',
}),
Option({ opt: options.theme.bar.buttons.modules.netstat.border, title: 'Border', type: 'color' }),
Header('Keyboard Layout'),
Option({ opt: options.theme.bar.buttons.modules.kbLayout.text, title: 'Text', type: 'color' }),
@@ -93,6 +97,7 @@ export const CustomModuleTheme = (): Scrollable<GtkWidget, Attribute> => {
"Applies a background color to the icon section of the button.\nRequires 'split' button styling.",
type: 'color',
}),
Option({ opt: options.theme.bar.buttons.modules.kbLayout.border, title: 'Border', type: 'color' }),
Header('Updates'),
Option({ opt: options.theme.bar.buttons.modules.updates.text, title: 'Text', type: 'color' }),
@@ -109,6 +114,7 @@ export const CustomModuleTheme = (): Scrollable<GtkWidget, Attribute> => {
"Applies a background color to the icon section of the button.\nRequires 'split' button styling.",
type: 'color',
}),
Option({ opt: options.theme.bar.buttons.modules.updates.border, title: 'Border', type: 'color' }),
Header('Weather'),
Option({ opt: options.theme.bar.buttons.modules.weather.icon, title: 'Icon', type: 'color' }),
@@ -125,6 +131,7 @@ export const CustomModuleTheme = (): Scrollable<GtkWidget, Attribute> => {
"Applies a background color to the icon section of the button.\nRequires 'split' button styling.",
type: 'color',
}),
Option({ opt: options.theme.bar.buttons.modules.weather.border, title: 'Border', type: 'color' }),
Header('Power'),
Option({ opt: options.theme.bar.buttons.modules.power.icon, title: 'Icon', type: 'color' }),
@@ -140,6 +147,7 @@ export const CustomModuleTheme = (): Scrollable<GtkWidget, Attribute> => {
"Applies a background color to the icon section of the button.\nRequires 'split' button styling.",
type: 'color',
}),
Option({ opt: options.theme.bar.buttons.modules.power.border, title: 'Border', type: 'color' }),
],
}),
});

View File

@@ -54,7 +54,7 @@ const BatteryLabel = (): BarBoxChild => {
wave: 'style3',
wave2: 'style3',
};
return `battery ${styleMap[style]} ${!showLabel ? 'no-label' : ''}`;
return `battery-container ${styleMap[style]} ${!showLabel ? 'no-label' : ''}`;
},
),
visible: battery.bind('available'),

View File

@@ -33,7 +33,7 @@ const Bluetooth = (): BarBoxChild => {
wave: 'style3',
wave2: 'style3',
};
return `bluetooth ${styleMap[style]} ${!showLabel ? 'no-label' : ''}`;
return `bluetooth-container ${styleMap[style]} ${!showLabel ? 'no-label' : ''}`;
},
),
children: options.bar.bluetooth.label.bind('value').as((showLabel) => {

View File

@@ -39,7 +39,7 @@ const Clock = (): BarBoxChild => {
wave2: 'style3',
};
return `bluetooth ${styleMap[btnStyle]} ${!shwLbl ? 'no-label' : ''} ${!shwIcn ? 'no-icon' : ''}`;
return `clock-container ${styleMap[btnStyle]} ${!shwLbl ? 'no-label' : ''} ${!shwIcn ? 'no-icon' : ''}`;
},
),
children: Utils.merge([showIcon.bind('value'), showTime.bind('value')], (shIcn, shTm) => {

View File

@@ -75,7 +75,7 @@ const Media = (): BarBoxChild => {
wave: 'style3',
wave2: 'style3',
};
return `media ${styleMap[style]}`;
return `media-container ${styleMap[style]}`;
},
),
child: Widget.Box({

View File

@@ -31,12 +31,12 @@ const Network = (): BarBoxChild => {
wave: 'style3',
wave2: 'style3',
};
return `network ${styleMap[style]}${!showLabel ? ' no-label' : ''}`;
return `network-container ${styleMap[style]}${!showLabel ? ' no-label' : ''}`;
},
),
children: [
Widget.Icon({
class_name: 'bar-button-icon network',
class_name: 'bar-button-icon network-icon',
icon: Utils.merge(
[network.bind('primary'), network.bind('wifi'), network.bind('wired')],
(pmry, wfi, wrd) => {
@@ -48,7 +48,6 @@ const Network = (): BarBoxChild => {
),
}),
Widget.Box({
vpack: 'center',
child: Utils.merge(
[
network.bind('primary'),
@@ -63,12 +62,12 @@ const Network = (): BarBoxChild => {
}
if (pmry === 'wired') {
return Widget.Label({
class_name: 'bar-button-label network',
class_name: 'bar-button-label network-label',
label: 'Wired'.substring(0, tSize),
});
}
return Widget.Label({
class_name: 'bar-button-label network',
class_name: 'bar-button-label network-label',
label: wfi.ssid ? `${trunc ? wfi.ssid.substring(0, tSize) : wfi.ssid}` : '--',
});
},

View File

@@ -25,7 +25,7 @@ export const Notifications = (): BarBoxChild => {
wave: 'style3',
wave2: 'style3',
};
return `notifications ${styleMap[style]} ${!showTotal ? 'no-label' : ''}`;
return `notifications-container ${styleMap[style]} ${!showTotal ? 'no-label' : ''}`;
},
),
child: Widget.Box({

View File

@@ -31,7 +31,7 @@ const SysTray = (): BarBoxChild => {
return {
component: Widget.Box({
class_name: 'systray',
class_name: 'systray-container',
children: items,
}),
isVisible: true,

View File

@@ -65,7 +65,7 @@ const Volume = (): BarBoxChild => {
wave: 'style3',
wave2: 'style3',
};
return `volume ${styleMap[style]} ${!showLabel ? 'no-label' : ''}`;
return `volume-container ${styleMap[style]} ${!showLabel ? 'no-label' : ''}`;
},
),
children: options.bar.volume.label.bind('value').as((showLabel) => {

View File

@@ -170,7 +170,7 @@ const ClientTitle = (): BarBoxChild => {
wave: 'style3',
wave2: 'style3',
};
return `windowtitle ${styleMap[style]} ${!showLabel ? 'no-label' : ''}`;
return `windowtitle-container ${styleMap[style]} ${!showLabel ? 'no-label' : ''}`;
},
),
children: Utils.merge(

View File

@@ -15,7 +15,7 @@ const Workspaces = (monitor = -1): BarBoxChild => {
return {
component: Widget.Box({
class_name: 'workspaces',
class_name: 'workspaces-box-container',
child: options.bar.workspaces.hideUnoccupied
.bind('value')
.as((hideUnoccupied) => (hideUnoccupied ? occupiedWses(monitor) : defaultWses(monitor))),

View File

@@ -162,6 +162,8 @@ const options = mkOptions(OPTIONS, {
background: opt(colors.crust),
buttons: {
style: opt<BarButtonStyles>('default'),
enableBorders: opt(false),
borderSize: opt('0.1em'),
monochrome: opt(false),
spacing: opt('0.25em'),
padding_x: opt('0.7rem'),
@@ -178,16 +180,19 @@ const options = mkOptions(OPTIONS, {
icon: opt(colors.lavender),
dashboard: {
background: opt(colors.base2),
hover: opt(colors.surface1),
enableBorder: opt(false),
border: opt(colors.yellow),
icon: opt(colors.yellow),
spacing: opt('0.5em'),
},
workspaces: {
background: opt(colors.base2),
hover: opt(colors.pink),
enableBorder: opt(false),
border: opt(colors.pink),
available: opt(colors.sky),
occupied: opt(colors.flamingo),
active: opt(colors.pink),
hover: opt(colors.pink),
numbered_active_highlight_border: opt('0.2em'),
numbered_active_highlight_padding: opt('0.2em'),
numbered_active_highlighted_text_color: opt(colors.mantle),
@@ -197,68 +202,77 @@ const options = mkOptions(OPTIONS, {
},
windowtitle: {
background: opt(colors.base2),
hover: opt(colors.surface1),
enableBorder: opt(false),
border: opt(colors.pink),
text: opt(colors.pink),
icon: opt(colors.pink),
icon_background: opt(colors.base2),
spacing: opt('0.5em'),
},
media: {
enableBorder: opt(false),
border: opt(colors.lavender),
background: opt(colors.base2),
hover: opt(colors.surface1),
text: opt(colors.lavender),
icon: opt(colors.lavender),
icon_background: opt(colors.base2),
spacing: opt('0.5em'),
},
volume: {
enableBorder: opt(false),
border: opt(colors.maroon),
background: opt(colors.base2),
hover: opt(colors.surface1),
text: opt(colors.maroon),
icon: opt(colors.maroon),
icon_background: opt(colors.base2),
spacing: opt('0.5em'),
},
network: {
enableBorder: opt(false),
border: opt(colors.mauve),
background: opt(colors.base2),
hover: opt(colors.surface1),
text: opt(colors.mauve),
icon: opt(colors.mauve),
icon_background: opt(colors.base2),
spacing: opt('0.5em'),
},
bluetooth: {
enableBorder: opt(false),
border: opt(colors.sky),
background: opt(colors.base2),
hover: opt(colors.surface1),
text: opt(colors.sky),
icon: opt(colors.sky),
icon_background: opt(colors.base2),
spacing: opt('0.5em'),
},
systray: {
enableBorder: opt(false),
border: opt(colors.lavender),
background: opt(colors.base2),
hover: opt(colors.surface1),
spacing: opt('0.5em'),
},
battery: {
enableBorder: opt(false),
border: opt(colors.yellow),
background: opt(colors.base2),
hover: opt(colors.surface1),
text: opt(colors.yellow),
icon: opt(colors.yellow),
icon_background: opt(colors.base2),
spacing: opt('0.5em'),
},
clock: {
enableBorder: opt(false),
border: opt(colors.pink),
background: opt(colors.base2),
hover: opt(colors.surface1),
text: opt(colors.pink),
icon: opt(colors.pink),
icon_background: opt(colors.base2),
spacing: opt('0.5em'),
},
notifications: {
enableBorder: opt(false),
border: opt(colors.lavender),
background: opt(colors.base2),
hover: opt(colors.surface1),
icon: opt(colors.lavender),
icon_background: opt(colors.base2),
total: opt(colors.lavender),
@@ -266,6 +280,8 @@ const options = mkOptions(OPTIONS, {
},
modules: {
ram: {
enableBorder: opt(false),
border: opt(colors.yellow),
background: opt(colors.base2),
text: opt(colors.yellow),
icon: opt(colors.yellow),
@@ -273,6 +289,8 @@ const options = mkOptions(OPTIONS, {
spacing: opt('0.45em'),
},
cpu: {
enableBorder: opt(false),
border: opt(colors.red),
background: opt(colors.base2),
text: opt(colors.red),
icon: opt(colors.red),
@@ -280,6 +298,8 @@ const options = mkOptions(OPTIONS, {
spacing: opt('0.5em'),
},
storage: {
enableBorder: opt(false),
border: opt(colors.pink),
background: opt(colors.base2),
text: opt(colors.pink),
icon: opt(colors.pink),
@@ -287,6 +307,8 @@ const options = mkOptions(OPTIONS, {
spacing: opt('0.45em'),
},
netstat: {
enableBorder: opt(false),
border: opt(colors.green),
background: opt(colors.base2),
text: opt(colors.green),
icon: opt(colors.green),
@@ -294,6 +316,8 @@ const options = mkOptions(OPTIONS, {
spacing: opt('0.45em'),
},
kbLayout: {
enableBorder: opt(false),
border: opt(colors.sky),
background: opt(colors.base2),
text: opt(colors.sky),
icon: opt(colors.sky),
@@ -301,6 +325,8 @@ const options = mkOptions(OPTIONS, {
spacing: opt('0.45em'),
},
updates: {
enableBorder: opt(false),
border: opt(colors.mauve),
background: opt(colors.base2),
text: opt(colors.mauve),
icon: opt(colors.mauve),
@@ -308,6 +334,8 @@ const options = mkOptions(OPTIONS, {
spacing: opt('0.45em'),
},
weather: {
enableBorder: opt(false),
border: opt(colors.lavender),
background: opt(colors.base2),
text: opt(colors.lavender),
icon: opt(colors.lavender),
@@ -315,6 +343,8 @@ const options = mkOptions(OPTIONS, {
spacing: opt('0.45em'),
},
power: {
enableBorder: opt(false),
border: opt(colors.red),
background: opt(colors.base2),
icon: opt(colors.red),
icon_background: opt(colors.base2),

View File

@@ -1,7 +1,7 @@
import options from 'options';
import { bash, dependencies } from 'lib/utils';
import { MatugenColors, RecursiveOptionsObject } from 'lib/types/options';
import { initializeTrackers } from './options_trackers';
import { initializeTrackers } from './optionsTrackers';
import { generateMatugenColors, replaceHexValues } from '../services/matugen/index';
const deps = ['font', 'theme', 'bar.flatButtons', 'bar.position', 'bar.battery.charging', 'bar.battery.blocks'];

View File

@@ -17,6 +17,16 @@
padding: $bar-buttons-padding_y 0em;
padding-left: $bar-buttons-padding_x;
padding-right: $bar-buttons-volume-spacing;
border-top-left-radius: if(
$bar-buttons-volume-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
border-bottom-left-radius: if(
$bar-buttons-volume-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
}
.bar-button-label.volume {
@@ -25,4 +35,25 @@
padding-left: $bar-buttons-volume-spacing;
margin-left: 0em;
}
&.no-label.volume-container {
.bar-button-icon.volume {
border-top-right-radius: if(
$bar-buttons-volume-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
border-bottom-right-radius: if(
$bar-buttons-volume-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
}
}
}
.bar_item_box_visible.volume {
border: if(
$bar-buttons-volume-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-volume-border),
0em
);
}

View File

@@ -10,7 +10,6 @@
margin-right: if($bar-floating, $bar-margin_sides, 0em);
}
.bar-panel {
$bar-opacity-ratio: $bar-opacity * 0.01;
$transparency-value: 1 - $bar-opacity-ratio;
@@ -43,148 +42,94 @@ $transparency-value-hover: 1 - $bar-button-background-hover-opacity-ratio;
}
&:hover {
background: transparentize($bar-buttons-hover, $transparency-value-hover);
opacity: 0.5;
}
&.battery {
background-color: transparentize(if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-battery-background), $transparency-value);
&:hover {
background: transparentize(if($bar-buttons-monochrome, $bar-buttons-hover, $bar-buttons-battery-hover), $transparency-value-hover);
}
background-color: transparentize(
if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-battery-background),
$transparency-value
);
}
&.bluetooth {
background-color: transparentize(if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-bluetooth-background), $transparency-value);
&:hover {
background: transparentize(if($bar-buttons-monochrome, $bar-buttons-hover, $bar-buttons-bluetooth-hover), $transparency-value-hover);
}
background-color: transparentize(
if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-bluetooth-background),
$transparency-value
);
}
&.clock {
background-color: transparentize(if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-clock-background), $transparency-value);
&:hover {
background: transparentize(if($bar-buttons-monochrome, $bar-buttons-hover, $bar-buttons-clock-hover), $transparency-value-hover);
}
background-color: transparentize(
if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-clock-background),
$transparency-value
);
}
&.media {
background-color: transparentize(if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-media-background), $transparency-value);
&:hover {
background: transparentize(if($bar-buttons-monochrome, $bar-buttons-hover, $bar-buttons-media-hover), $transparency-value-hover);
}
background-color: transparentize(
if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-media-background),
$transparency-value
);
}
&.dashboard {
background-color: transparentize(if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-dashboard-background), $transparency-value);
&:hover {
background: transparentize(if($bar-buttons-monochrome, $bar-buttons-hover, $bar-buttons-dashboard-hover), $transparency-value-hover);
}
background-color: transparentize(
if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-dashboard-background),
$transparency-value
);
}
&.network {
background-color: transparentize(if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-network-background), $transparency-value);
&:hover {
background: transparentize(if($bar-buttons-monochrome, $bar-buttons-hover, $bar-buttons-network-hover), $transparency-value-hover);
}
background-color: transparentize(
if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-network-background),
$transparency-value
);
}
&.notifications {
background-color: transparentize(if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-notifications-background), $transparency-value);
&:hover {
background: transparentize(if($bar-buttons-monochrome, $bar-buttons-hover, $bar-buttons-notifications-hover), $transparency-value-hover);
}
background-color: transparentize(
if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-notifications-background),
$transparency-value
);
}
&.systray {
background-color: transparentize(if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-systray-background), $transparency-value);
background-color: transparentize(
if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-systray-background),
$transparency-value
);
&:hover {
background: transparentize(if($bar-buttons-monochrome, $bar-buttons-hover, $bar-buttons-systray-hover), $transparency-value-hover);
opacity: 1;
}
}
&.volume {
background-color: transparentize(if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-volume-background), $transparency-value);
&:hover {
background: transparentize(if($bar-buttons-monochrome, $bar-buttons-hover, $bar-buttons-volume-hover), $transparency-value-hover);
}
background-color: transparentize(
if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-volume-background),
$transparency-value
);
}
&.windowtitle {
background-color: transparentize(if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-windowtitle-background), $transparency-value);
&:hover {
background: transparentize(if($bar-buttons-monochrome, $bar-buttons-hover, $bar-buttons-windowtitle-hover), $transparency-value-hover);
}
background-color: transparentize(
if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-windowtitle-background),
$transparency-value
);
}
&.workspaces {
background-color: transparentize(if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-workspaces-background), $transparency-value);
background-color: transparentize(
if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-workspaces-background),
$transparency-value
);
&:hover {
opacity: 1;
}
}
&.style2 {
padding: 0em;
&:hover {
.dashboard .bar-button_icon {
color: $bar-buttons-dashboard_background;
}
}
&:hover .no-label {
.battery .bar-button-icon {
background-color: transparentize(if($bar-buttons-monochrome, $bar-buttons-hover, $bar-buttons-battery-hover), $transparency-value);
color: $bar-buttons-battery-icon_background;
}
.bluetooth.bar-button-icon {
background-color: transparentize(if($bar-buttons-monochrome, $bar-buttons-hover, $bar-buttons-bluetooth-hover), $transparency-value);
color: $bar-buttons-bluetooth-icon_background;
}
.media.bar-button-icon {
background-color: transparentize(if($bar-buttons-monochrome, $bar-buttons-hover, $bar-buttons-media-hover), $transparency-value);
color: $bar-buttons-media-icon_background;
}
.network.bar-button-icon {
background-color: transparentize(if($bar-buttons-monochrome, $bar-buttons-hover, $bar-buttons-network-hover), $transparency-value);
color: $bar-buttons-network-icon_background;
}
.notifications.bar-button-icon {
background-color: transparentize(if($bar-buttons-monochrome, $bar-buttons-hover, $bar-buttons-notifications-hover), $transparency-value);
color: $bar-buttons-notifications-icon_background;
}
.volume.bar-button-icon {
background-color: transparentize(if($bar-buttons-monochrome, $bar-buttons-hover, $bar-buttons-volume-hover), $transparency-value);
color: $bar-buttons-volume-icon_background;
}
.windowtitle.bar-button-icon {
background-color: transparentize(if($bar-buttons-monochrome, $bar-buttons-hover, $bar-buttons-windowtitle-hover), $transparency-value);
color: $bar-buttons-windowtitle-icon_background;
}
.clock.bar-button-icon {
background-color: transparentize(if($bar-buttons-monochrome, $bar-buttons-hover, $bar-buttons-clock-hover), $transparency-value);
color: $bar-buttons-clock-icon_background;
}
.bar-button-icon {
opacity: 0.5;
}
}
}
}

View File

@@ -15,6 +15,16 @@
padding: $bar-buttons-padding_y 0em;
padding-left: $bar-buttons-padding_x;
padding-right: $bar-buttons-battery-spacing;
border-top-left-radius: if(
$bar-buttons-battery-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
border-bottom-left-radius: if(
$bar-buttons-battery-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
}
.bar-button-label.battery {
@@ -23,4 +33,26 @@
padding-left: $bar-buttons-battery-spacing;
margin-left: 0em;
}
&.no-label.battery-container {
.bar-button-icon.battery {
border-top-right-radius: if(
$bar-buttons-battery-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
border-bottom-right-radius: if(
$bar-buttons-battery-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
}
}
}
.bar_item_box_visible.battery {
border: if(
$bar-buttons-battery-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-battery-border),
0em
);
}

View File

@@ -27,6 +27,16 @@
padding: $bar-buttons-padding_y 0em;
padding-left: $bar-buttons-padding_x;
padding-right: $bar-buttons-bluetooth-spacing;
border-top-left-radius: if(
$bar-buttons-bluetooth-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
border-bottom-left-radius: if(
$bar-buttons-bluetooth-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
}
.bar-button-label.bluetooth {
@@ -35,4 +45,26 @@
padding-left: $bar-buttons-bluetooth-spacing;
margin-left: 0em;
}
&.no-label.bluetooth-container {
.bar-button-icon.bluetooth {
border-top-right-radius: if(
$bar-buttons-bluetooth-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
border-bottom-right-radius: if(
$bar-buttons-bluetooth-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
}
}
}
.bar_item_box_visible.bluetooth {
border: if(
$bar-buttons-bluetooth-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-bluetooth-border),
0em
);
}

View File

@@ -15,7 +15,17 @@
background: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-clock-icon_background);
padding: $bar-buttons-padding_y 0em;
padding-left: $bar-buttons-padding_x;
padding-right: $bar-buttons-media-spacing;
padding-right: $bar-buttons-clock-spacing;
border-top-left-radius: if(
$bar-buttons-clock-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
border-bottom-left-radius: if(
$bar-buttons-clock-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
}
.bar-button-label.clock {
@@ -24,4 +34,26 @@
padding-left: $bar-buttons-clock-spacing;
margin-left: 0em;
}
&.no-label.clock-container {
.bar-button-icon.clock {
border-top-right-radius: if(
$bar-buttons-clock-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
border-bottom-right-radius: if(
$bar-buttons-clock-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
}
}
}
.bar_item_box_visible.clock {
border: if(
$bar-buttons-clock-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-clock-border),
0em
);
}

View File

@@ -10,12 +10,20 @@
.style2 {
.bar-button-icon.media {
border-top-left-radius: $bar-buttons-radius;
border-bottom-left-radius: $bar-buttons-radius;
background: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-media-icon_background);
padding: $bar-buttons-padding_y 0em;
padding-left: $bar-buttons-padding_x;
padding-right: $bar-buttons-media-spacing;
border-top-left-radius: if(
$bar-buttons-media-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
border-bottom-left-radius: if(
$bar-buttons-media-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
}
.bar-button-label.media {
@@ -25,3 +33,11 @@
margin-left: 0em;
}
}
.bar_item_box_visible.media {
border: if(
$bar-buttons-media-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-media-border),
0em
);
}

View File

@@ -1,6 +1,7 @@
.bar-menu_label {
color: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-dashboard-icon);
font-size: 1.3em;
border-radius: $bar-buttons-radius;
}
.bar_item_box_visible.style2.dashboard {
@@ -9,16 +10,16 @@
.bar-menu_label {
color: if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-dashboard-icon);
}
&:hover {
background: if($bar-buttons-monochrome, $bar-buttons-background, $bar-buttons-dashboard-icon);
.bar-menu_label {
color: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-dashboard-background);
}
}
}
.style2 .bar-menu_label {
padding: $bar-buttons-padding_y $bar-buttons-padding_x;
}
.bar_item_box_visible.dashboard {
border: if(
$bar-buttons-dashboard-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-dashboard-border),
0em
);
}

View File

@@ -1,26 +1,58 @@
.bar-button-label.network {
.bar-button-label.network-label {
color: if($bar-buttons-monochrome, $bar-buttons-text, $bar-buttons-network-text);
margin-left: $bar-buttons-network-spacing;
}
.bar-button-icon.network {
.bar-button-icon.network-icon {
color: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-network-icon);
}
.style2 {
.bar-button-icon.network {
.bar-button-icon.network-icon {
border-top-left-radius: $bar-buttons-radius;
border-bottom-left-radius: $bar-buttons-radius;
background: if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-network-icon_background);
padding: $bar-buttons-padding_y 0em;
padding-left: $bar-buttons-padding_x;
padding-right: $bar-buttons-network-spacing;
border-top-left-radius: if(
$bar-buttons-network-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
border-bottom-left-radius: if(
$bar-buttons-network-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
}
.bar-button-label.network {
.bar-button-label.network-label {
padding: $bar-buttons-padding_y 0em;
padding-right: $bar-buttons-padding_x;
padding-left: $bar-buttons-network-spacing;
margin-left: 0em;
}
&.no-label.network-container {
.bar-button-icon.network-icon {
border-top-right-radius: if(
$bar-buttons-network-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
border-bottom-right-radius: if(
$bar-buttons-network-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
}
}
}
.bar_item_box_visible.network {
border: if(
$bar-buttons-network-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-network-border),
0em
);
}

View File

@@ -17,6 +17,16 @@
padding: $bar-buttons-padding_y 0em;
padding-left: $bar-buttons-padding_x;
padding-right: $bar-buttons-notifications-spacing;
border-top-left-radius: if(
$bar-buttons-notifications-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
border-bottom-left-radius: if(
$bar-buttons-notifications-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
}
.bar-button-label.notifications {
@@ -25,4 +35,27 @@
padding-left: $bar-buttons-notifications-spacing;
margin-left: 0em;
}
&.no-label.notifications-container {
.bar-button-icon.notifications {
border-top-right-radius: if(
$bar-buttons-notifications-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
border-bottom-right-radius: if(
$bar-buttons-notifications-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
}
}
}
.bar_item_box_visible.notifications {
border: if(
$bar-buttons-notifications-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-notifications-border),
0em
);
}

View File

@@ -9,3 +9,11 @@
.style2.systray {
padding: $bar-buttons-padding_y $bar-buttons-padding_x;
}
.bar_item_box_visible.systray {
border: if(
$bar-buttons-systray-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-systray-border),
0em
);
}

View File

@@ -19,6 +19,16 @@
padding: $bar-buttons-padding_y 0em;
padding-left: $bar-buttons-padding_x;
padding-right: $bar-buttons-windowtitle-spacing;
border-top-left-radius: if(
$bar-buttons-windowtitle-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
border-bottom-left-radius: if(
$bar-buttons-windowtitle-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
}
.bar-button-label.windowtitle {
@@ -26,5 +36,31 @@
padding-right: $bar-buttons-padding_x;
padding-left: $bar-buttons-windowtitle-spacing;
margin-left: 0em;
&.no-icon {
padding-left: $bar-buttons-padding_x;
}
}
&.no-label.windowtitle-container {
.bar-button-icon.windowtitle {
border-top-right-radius: if(
$bar-buttons-windowtitle-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
border-bottom-right-radius: if(
$bar-buttons-windowtitle-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
}
}
}
.bar_item_box_visible.windowtitle {
border: if(
$bar-buttons-windowtitle-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-windowtitle-border),
0em
);
}

View File

@@ -80,3 +80,11 @@
.style2.workspaces {
padding: $bar-buttons-padding_y $bar-buttons-padding_x;
}
.bar_item_box_visible.workspaces {
border: if(
$bar-buttons-workspaces-enableBorder or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $bar-buttons-workspaces-border),
0em
);
}

View File

@@ -36,10 +36,25 @@
* # Styling Function #
* #################################
*/
@mixin styleModule($class, $textColor, $iconColor, $iconBackground, $labelBackground, $spacing, $fontSize: 1em) {
@mixin styleModule(
$class,
$textColor,
$iconColor,
$iconBackground,
$labelBackground,
$spacing,
$borderEnabled,
$borderColor,
$fontSize: 1em
) {
.bar_item_box_visible {
&.#{$class} {
background: $labelBackground;
border: if(
$borderEnabled or $bar-buttons-enableBorders,
$bar-buttons-borderSize solid if($bar-buttons-monochrome, $bar-buttons-icon, $borderColor),
0em
);
&.style2 {
background: transparent;
@@ -51,7 +66,6 @@
}
}
.module-label.#{$class} {
color: if($bar-buttons-monochrome, $bar-buttons-text, $textColor);
margin-left: $spacing;
@@ -68,6 +82,16 @@
background: if($bar-buttons-monochrome, $bar-buttons-icon, $iconBackground);
padding-right: $spacing;
color: if($bar-buttons-monochrome, $bar-buttons-background, $iconColor);
border-top-left-radius: if(
$borderEnabled or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
border-bottom-left-radius: if(
$borderEnabled or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
}
.module-label.#{$class} {
@@ -77,6 +101,20 @@
border-top-left-radius: 0em;
border-bottom-left-radius: 0em;
}
&.no-label.#{$class} {
.module-icon {
border-top-right-radius: if(
$borderEnabled or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
border-bottom-right-radius: if(
$borderEnabled or $bar-buttons-enableBorders,
$bar-buttons-radius * 0.4,
$bar-buttons-radius
);
}
}
}
}
@@ -85,7 +123,8 @@
* # Ram Module Styling #
* #################################
*/
@include styleModule( //
@include styleModule(
//
// class name
'ram',
// label color
@@ -97,7 +136,12 @@
// label background
$bar-buttons-modules-ram-background,
// inner spacing
$bar-buttons-modules-ram-spacing //
$bar-buttons-modules-ram-spacing,
//
// if border enabled
$bar-buttons-modules-ram-enableBorder,
// border color
$bar-buttons-modules-ram-border
);
/*
@@ -105,7 +149,8 @@
* # Cpu Module Styling #
* #################################
*/
@include styleModule( //
@include styleModule(
//
// class name
'cpu',
// label color
@@ -118,6 +163,10 @@
$bar-buttons-modules-cpu-background,
// inner spacing
$bar-buttons-modules-cpu-spacing,
// if border enabled
$bar-buttons-modules-cpu-enableBorder,
// border color
$bar-buttons-modules-cpu-border,
// custom font size
1.05em //
);
@@ -127,7 +176,8 @@
* # Storage Module Styling #
* #################################
*/
@include styleModule( //
@include styleModule(
//
// class name
'storage',
// label color
@@ -140,6 +190,10 @@
$bar-buttons-modules-storage-background,
// inner spacing
$bar-buttons-modules-storage-spacing,
// if border enabled
$bar-buttons-modules-storage-enableBorder,
// border color
$bar-buttons-modules-storage-border,
// custom font size
1.3em //
);
@@ -149,7 +203,8 @@
* # Netstat Module Styling #
* #################################
*/
@include styleModule( //
@include styleModule(
//
// class name
'netstat',
// label color
@@ -162,6 +217,10 @@
$bar-buttons-modules-netstat-background,
// inner spacing
$bar-buttons-modules-netstat-spacing,
// if border enabled
$bar-buttons-modules-netstat-enableBorder,
// border color
$bar-buttons-modules-netstat-border,
// custom font size
1.2em //
);
@@ -171,7 +230,8 @@
* # KB Layout Module Styling #
* #################################
*/
@include styleModule( //
@include styleModule(
//
// class name
'kblayout',
// label color
@@ -184,6 +244,10 @@
$bar-buttons-modules-kbLayout-background,
// inner spacing
$bar-buttons-modules-kbLayout-spacing,
// if border enabled
$bar-buttons-modules-kbLayout-enableBorder,
// border color
$bar-buttons-modules-kbLayout-border,
// custom font size
1.2em //
);
@@ -193,7 +257,8 @@
* # Updates Module Styling #
* #################################
*/
@include styleModule( //
@include styleModule(
//
// class name
'updates',
// label color
@@ -206,6 +271,10 @@
$bar-buttons-modules-updates-background,
// inner spacing
$bar-buttons-modules-updates-spacing,
// if border enabled
$bar-buttons-modules-updates-enableBorder,
// border color
$bar-buttons-modules-updates-border,
// custom font size
1.2em //
);
@@ -215,7 +284,8 @@
* # Weather Module Styling #
* #################################
*/
@include styleModule( //
@include styleModule(
//
// class name
'weather-custom',
// label color
@@ -228,6 +298,10 @@
$bar-buttons-modules-weather-background,
// inner spacing
$bar-buttons-modules-weather-spacing,
// if border enabled
$bar-buttons-modules-weather-enableBorder,
// border color
$bar-buttons-modules-weather-border,
// custom font size
1.2em //
);
@@ -237,7 +311,8 @@
* # Power Module Styling #
* #################################
*/
@include styleModule( //
@include styleModule(
//
// class name
'powermodule',
// label color
@@ -250,6 +325,10 @@
$bar-buttons-modules-power-background,
// inner spacing
$bar-buttons-modules-power-spacing,
// if border enabled
$bar-buttons-modules-power-enableBorder,
// border color
$bar-buttons-modules-power-border,
// custom font size
1.3em //
);

View File

@@ -324,5 +324,24 @@
"theme.bar.buttons.modules.cpu.text": "#e78284",
"theme.bar.buttons.modules.netstat.icon_background": "#a6d189",
"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.weather.border": "#babbf1",
"theme.bar.buttons.modules.updates.border": "#ca9ee6",
"theme.bar.buttons.modules.kbLayout.border": "#99d1db",
"theme.bar.buttons.modules.netstat.border": "#a6d189",
"theme.bar.buttons.modules.storage.border": "#e78284",
"theme.bar.buttons.modules.cpu.border": "#e78284",
"theme.bar.buttons.modules.ram.border": "#e5c890",
"theme.bar.buttons.notifications.border": "#babbf1",
"theme.bar.buttons.clock.border": "#f4b8e4",
"theme.bar.buttons.battery.border": "#e5c890",
"theme.bar.buttons.systray.border": "#51576d",
"theme.bar.buttons.bluetooth.border": "#99d1db",
"theme.bar.buttons.network.border": "#ca9ee6",
"theme.bar.buttons.volume.border": "#ea999c",
"theme.bar.buttons.media.border": "#babbf1",
"theme.bar.buttons.windowtitle.border": "#f4b8e4",
"theme.bar.buttons.workspaces.border": "#232634",
"theme.bar.buttons.dashboard.border": "#e5c890"
}

View File

@@ -324,5 +324,24 @@
"theme.bar.buttons.modules.updates.icon": "#181825",
"theme.bar.buttons.modules.cpu.text": "#e78284",
"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.modules.power.border": "#e78284",
"theme.bar.buttons.modules.weather.border": "#babbf1",
"theme.bar.buttons.modules.updates.border": "#ca9ee6",
"theme.bar.buttons.modules.kbLayout.border": "#99d1db",
"theme.bar.buttons.modules.netstat.border": "#a6d189",
"theme.bar.buttons.modules.storage.border": "#e78284",
"theme.bar.buttons.modules.cpu.border": "#e78284",
"theme.bar.buttons.modules.ram.border": "#e5c890",
"theme.bar.buttons.notifications.border": "#babbf1",
"theme.bar.buttons.clock.border": "#f4b8e4",
"theme.bar.buttons.battery.border": "#e5c890",
"theme.bar.buttons.systray.border": "#51576d",
"theme.bar.buttons.bluetooth.border": "#99d1db",
"theme.bar.buttons.network.border": "#ca9ee6",
"theme.bar.buttons.volume.border": "#ea999c",
"theme.bar.buttons.media.border": "#babbf1",
"theme.bar.buttons.windowtitle.border": "#f4b8e4",
"theme.bar.buttons.workspaces.border": "#232634",
"theme.bar.buttons.dashboard.border": "#e5c890"
}

View File

@@ -324,5 +324,24 @@
"theme.bar.buttons.modules.cpu.text": "#d20f39",
"theme.bar.buttons.modules.netstat.icon_background": "#40a02b",
"theme.bar.buttons.modules.kbLayout.text": "#04a5e5",
"theme.bar.buttons.notifications.icon_background": "#7287fd"
"theme.bar.buttons.notifications.icon_background": "#7287fd",
"theme.bar.buttons.modules.power.border": "#d20f39",
"theme.bar.buttons.modules.weather.border": "#7287fd",
"theme.bar.buttons.modules.updates.border": "#8839ef",
"theme.bar.buttons.modules.kbLayout.border": "#04a5e5",
"theme.bar.buttons.modules.netstat.border": "#40a02b",
"theme.bar.buttons.modules.storage.border": "#d20f39",
"theme.bar.buttons.modules.cpu.border": "#d20f39",
"theme.bar.buttons.modules.ram.border": "#df8e1d",
"theme.bar.buttons.notifications.border": "#7287fd",
"theme.bar.buttons.clock.border": "#ea76cb",
"theme.bar.buttons.battery.border": "#df8e1d",
"theme.bar.buttons.systray.border": "#bcc0cc",
"theme.bar.buttons.bluetooth.border": "#04a5e5",
"theme.bar.buttons.network.border": "#8839ef",
"theme.bar.buttons.volume.border": "#e64553",
"theme.bar.buttons.media.border": "#7287fd",
"theme.bar.buttons.windowtitle.border": "#ea76cb",
"theme.bar.buttons.workspaces.border": "#dce0e8",
"theme.bar.buttons.dashboard.border": "#df8e1d"
}

View File

@@ -1,29 +1,8 @@
{
"theme.bar.menus.background": "#eff1f5",
"theme.bar.background": "#eff1f5",
"theme.bar.buttons.media.icon": "#dcdee8",
"theme.bar.buttons.media.text": "#7287fd",
"theme.bar.buttons.icon": "#7287fd",
"theme.bar.buttons.text": "#7287fd",
"theme.bar.buttons.hover": "#bcc0cc",
"theme.bar.buttons.background": "#e6e9ef",
"theme.bar.menus.text": "#4c4f69",
"theme.bar.menus.border.color": "#ccd0da",
"theme.bar.buttons.media.background": "#dcdfe8",
"theme.bar.menus.menu.volume.text": "#4c4f69",
"theme.bar.menus.menu.volume.card.color": "#dcdfe8",
"theme.bar.menus.menu.volume.label.color": "#e64553",
"theme.bar.menus.popover.text": "#7287fd",
"theme.bar.menus.popover.background": "#dce0e8",
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#d20f39",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#d20f39",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#40a02b",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#dce0e8",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#4c4f69",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#7287fd",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#ccd0da",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#dce0e8",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#eff1f5",
"theme.bar.menus.menu.notifications.scrollbar.color": "#7287fd",
"theme.bar.menus.menu.notifications.pager.label": "#7c7f93",
"theme.bar.menus.menu.notifications.pager.button": "#7287fd",
"theme.bar.menus.menu.notifications.pager.background": "#eff1f5",
"theme.bar.menus.menu.notifications.switch.puck": "#bcc0cc",
"theme.bar.menus.menu.notifications.switch.disabled": "#ccd0da",
"theme.bar.menus.menu.notifications.switch.enabled": "#7287fd",
@@ -34,6 +13,24 @@
"theme.bar.menus.menu.notifications.background": "#eff1f5",
"theme.bar.menus.menu.notifications.no_notifications_label": "#ccd0da",
"theme.bar.menus.menu.notifications.label": "#7287fd",
"theme.bar.menus.menu.power.buttons.sleep.icon": "#dce0e8",
"theme.bar.menus.menu.power.buttons.sleep.text": "#04a5e5",
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#04a5e5",
"theme.bar.menus.menu.power.buttons.sleep.background": "#dcdfe8",
"theme.bar.menus.menu.power.buttons.logout.icon": "#dce0e8",
"theme.bar.menus.menu.power.buttons.logout.text": "#40a02b",
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#40a02b",
"theme.bar.menus.menu.power.buttons.logout.background": "#dcdfe8",
"theme.bar.menus.menu.power.buttons.restart.icon": "#dce0e8",
"theme.bar.menus.menu.power.buttons.restart.text": "#fe640b",
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#fe640b",
"theme.bar.menus.menu.power.buttons.restart.background": "#dcdfe8",
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#dce0e8",
"theme.bar.menus.menu.power.buttons.shutdown.text": "#d20f39",
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#d20f39",
"theme.bar.menus.menu.power.buttons.shutdown.background": "#dcdfe8",
"theme.bar.menus.menu.power.border.color": "#ccd0da",
"theme.bar.menus.menu.power.background.color": "#eff1f5",
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#ea76cb",
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#ea76cb",
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#ea76cb",
@@ -67,9 +64,18 @@
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#40a02b",
"theme.bar.menus.menu.dashboard.shortcuts.text": "#dce0e8",
"theme.bar.menus.menu.dashboard.shortcuts.background": "#7287fd",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#dce0e8",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#d20f39",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#40a02b",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#4c4f69",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#7287fd",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#ccd0da",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#dce0e8",
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#eff1f5",
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#04a5e5",
"theme.bar.menus.menu.dashboard.powermenu.logout": "#40a02b",
"theme.bar.menus.menu.dashboard.powermenu.restart": "#fe640b",
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#d20f39",
"theme.bar.menus.menu.dashboard.profile.name": "#ea76cb",
"theme.bar.menus.menu.dashboard.border.color": "#ccd0da",
"theme.bar.menus.menu.dashboard.background.color": "#eff1f5",
@@ -156,8 +162,11 @@
"theme.bar.menus.menu.volume.iconbutton.passive": "#4c4f69",
"theme.bar.menus.menu.volume.listitems.active": "#e64553",
"theme.bar.menus.menu.volume.listitems.passive": "#4c4f69",
"theme.bar.menus.menu.volume.text": "#4c4f69",
"theme.bar.menus.menu.volume.label.color": "#e64553",
"theme.bar.menus.menu.volume.border.color": "#ccd0da",
"theme.bar.menus.menu.volume.background.color": "#e6e9ef",
"theme.bar.menus.menu.volume.card.color": "#dcdfe8",
"theme.bar.menus.menu.media.slider.puck": "#9ca0b0",
"theme.bar.menus.menu.media.slider.backgroundhover": "#bcc0cc",
"theme.bar.menus.menu.media.slider.background": "#acb0be",
@@ -167,6 +176,7 @@
"theme.bar.menus.menu.media.buttons.enabled": "#179299",
"theme.bar.menus.menu.media.buttons.inactive": "#acb0be",
"theme.bar.menus.menu.media.border.color": "#ccd0da",
"theme.bar.menus.menu.media.card.color": "#dcdfe8",
"theme.bar.menus.menu.media.background.color": "#eff1f5",
"theme.bar.menus.menu.media.album": "#ea76cb",
"theme.bar.menus.menu.media.artist": "#179299",
@@ -188,6 +198,8 @@
"theme.bar.menus.buttons.disabled": "#acb0be",
"theme.bar.menus.buttons.active": "#ea76cb",
"theme.bar.menus.buttons.default": "#7287fd",
"theme.bar.menus.check_radio_button.active": "#7186fd",
"theme.bar.menus.check_radio_button.background": "#dcdfe8",
"theme.bar.menus.switch.puck": "#bcc0cc",
"theme.bar.menus.switch.disabled": "#ccd0da",
"theme.bar.menus.switch.enabled": "#7287fd",
@@ -195,50 +207,115 @@
"theme.bar.menus.icons.passive": "#acb0be",
"theme.bar.menus.listitems.active": "#7287fd",
"theme.bar.menus.listitems.passive": "#4c4f69",
"theme.bar.menus.popover.border": "#dce0e8",
"theme.bar.menus.popover.background": "#dce0e8",
"theme.bar.menus.popover.text": "#7287fd",
"theme.bar.menus.label": "#7287fd",
"theme.bar.menus.feinttext": "#ccd0da",
"theme.bar.menus.dimtext": "#acb0be",
"theme.bar.menus.text": "#4c4f69",
"theme.bar.menus.border.color": "#ccd0da",
"theme.bar.menus.cards": "#dce0e8",
"theme.bar.menus.background": "#eff1f5",
"theme.bar.buttons.modules.power.icon_background": "#d20f39",
"theme.bar.buttons.modules.power.icon": "#181825",
"theme.bar.buttons.modules.power.background": "#dcdfe8",
"theme.bar.buttons.modules.power.border": "#d20f39",
"theme.bar.buttons.modules.weather.icon_background": "#7287fd",
"theme.bar.buttons.modules.weather.icon": "#dcdfe8",
"theme.bar.buttons.modules.weather.text": "#7287fd",
"theme.bar.buttons.modules.weather.background": "#dcdfe8",
"theme.bar.buttons.modules.weather.border": "#7287fd",
"theme.bar.buttons.modules.updates.icon_background": "#8839ef",
"theme.bar.buttons.modules.updates.icon": "#181825",
"theme.bar.buttons.modules.updates.text": "#8839ef",
"theme.bar.buttons.modules.updates.background": "#dcdfe8",
"theme.bar.buttons.modules.updates.border": "#8839ef",
"theme.bar.buttons.modules.kbLayout.icon_background": "#04a5e5",
"theme.bar.buttons.modules.kbLayout.icon": "#181825",
"theme.bar.buttons.modules.kbLayout.text": "#04a5e5",
"theme.bar.buttons.modules.kbLayout.background": "#dcdfe8",
"theme.bar.buttons.modules.kbLayout.border": "#04a5e5",
"theme.bar.buttons.modules.netstat.icon_background": "#40a02b",
"theme.bar.buttons.modules.netstat.icon": "#181825",
"theme.bar.buttons.modules.netstat.text": "#40a02b",
"theme.bar.buttons.modules.netstat.background": "#dcdfe8",
"theme.bar.buttons.modules.netstat.border": "#40a02b",
"theme.bar.buttons.modules.storage.icon_background": "#d20f39",
"theme.bar.buttons.modules.storage.icon": "#181825",
"theme.bar.buttons.modules.storage.text": "#d20f39",
"theme.bar.buttons.modules.storage.background": "#dcdfe8",
"theme.bar.buttons.modules.storage.border": "#d20f39",
"theme.bar.buttons.modules.cpu.icon_background": "#d20f39",
"theme.bar.buttons.modules.cpu.icon": "#181825",
"theme.bar.buttons.modules.cpu.text": "#d20f39",
"theme.bar.buttons.modules.cpu.background": "#dcdfe8",
"theme.bar.buttons.modules.cpu.border": "#d20f39",
"theme.bar.buttons.modules.ram.icon_background": "#df8e1d",
"theme.bar.buttons.modules.ram.icon": "#181825",
"theme.bar.buttons.modules.ram.text": "#df8e1d",
"theme.bar.buttons.modules.ram.background": "#dcdfe8",
"theme.bar.buttons.modules.ram.border": "#df8e1d",
"theme.bar.buttons.notifications.total": "#7287fd",
"theme.bar.buttons.notifications.icon_background": "#7287fd",
"theme.bar.buttons.notifications.icon": "#dcdee8",
"theme.bar.buttons.notifications.hover": "#bcc0cc",
"theme.bar.buttons.notifications.background": "#dcdfe8",
"theme.bar.buttons.notifications.border": "#7287fd",
"theme.bar.buttons.clock.icon_background": "#ea76cb",
"theme.bar.buttons.clock.icon": "#dcdee8",
"theme.bar.buttons.clock.text": "#ea76cb",
"theme.bar.buttons.clock.hover": "#bcc0cc",
"theme.bar.buttons.clock.background": "#dcdfe8",
"theme.bar.buttons.clock.border": "#ea76cb",
"theme.bar.buttons.battery.icon_background": "#df8e1d",
"theme.bar.buttons.battery.icon": "#dcdee8",
"theme.bar.buttons.battery.text": "#df8e1d",
"theme.bar.buttons.battery.hover": "#bcc0cc",
"theme.bar.buttons.battery.background": "#dcdfe8",
"theme.bar.buttons.systray.hover": "#bcc0cc",
"theme.bar.buttons.battery.border": "#df8e1d",
"theme.bar.buttons.systray.background": "#dcdfe8",
"theme.bar.buttons.systray.border": "#bcc0cc",
"theme.bar.buttons.bluetooth.icon_background": "#04a5e5",
"theme.bar.buttons.bluetooth.icon": "#dcdee8",
"theme.bar.buttons.bluetooth.text": "#04a5e5",
"theme.bar.buttons.bluetooth.hover": "#bcc0cc",
"theme.bar.buttons.bluetooth.background": "#dcdfe8",
"theme.bar.buttons.bluetooth.border": "#04a5e5",
"theme.bar.buttons.network.icon_background": "#8839ef",
"theme.bar.buttons.network.icon": "#dcdee8",
"theme.bar.buttons.network.text": "#8839ef",
"theme.bar.buttons.network.hover": "#bcc0cc",
"theme.bar.buttons.network.background": "#dcdfe8",
"theme.bar.buttons.network.border": "#8839ef",
"theme.bar.buttons.volume.icon_background": "#e64553",
"theme.bar.buttons.volume.icon": "#dcdee8",
"theme.bar.buttons.volume.text": "#e64553",
"theme.bar.buttons.volume.hover": "#bcc0cc",
"theme.bar.buttons.volume.background": "#dcdfe8",
"theme.bar.buttons.media.hover": "#bcc0cc",
"theme.bar.buttons.volume.border": "#e64553",
"theme.bar.buttons.media.icon_background": "#7287fd",
"theme.bar.buttons.media.icon": "#dcdee8",
"theme.bar.buttons.media.text": "#7287fd",
"theme.bar.buttons.media.background": "#dcdfe8",
"theme.bar.buttons.media.border": "#7287fd",
"theme.bar.buttons.windowtitle.icon_background": "#ea76cb",
"theme.bar.buttons.windowtitle.icon": "#dcdee8",
"theme.bar.buttons.windowtitle.text": "#ea76cb",
"theme.bar.buttons.windowtitle.hover": "#bcc0cc",
"theme.bar.buttons.windowtitle.border": "#ea76cb",
"theme.bar.buttons.windowtitle.background": "#dcdfe8",
"theme.bar.buttons.workspaces.numbered_active_text_color": "#dce0e8",
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#f5c2e7",
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
"theme.bar.buttons.workspaces.hover": "#bcc0cc",
"theme.bar.buttons.workspaces.active": "#ea76cb",
"theme.bar.buttons.workspaces.occupied": "#dd7878",
"theme.bar.buttons.workspaces.available": "#04a5e5",
"theme.bar.buttons.workspaces.hover": "#bcc0cc",
"theme.bar.buttons.workspaces.border": "#dce0e8",
"theme.bar.buttons.workspaces.background": "#dcdfe8",
"theme.bar.buttons.dashboard.icon": "#dcdee8",
"theme.bar.buttons.dashboard.hover": "#bcc0cc",
"theme.bar.buttons.dashboard.border": "#df8e1d",
"theme.bar.buttons.dashboard.background": "#df8e1d",
"theme.bar.buttons.icon": "#7287fd",
"theme.bar.buttons.text": "#7287fd",
"theme.bar.buttons.hover": "#bcc0cc",
"theme.bar.buttons.icon_background": "#242438",
"theme.bar.buttons.background": "#e6e9ef",
"theme.bar.buttons.style": "split",
"theme.bar.background": "#eff1f5",
"theme.osd.label": "#7287fd",
"theme.osd.icon": "#ccd0da",
"theme.osd.bar_overflow_color": "#d20f39",
@@ -255,74 +332,5 @@
"theme.notification.label": "#7287fd",
"theme.notification.actions.text": "#dce0e8",
"theme.notification.actions.background": "#7287fd",
"theme.notification.background": "#ccd0da",
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#f5c2e7",
"theme.bar.menus.menu.media.card.color": "#dcdfe8",
"theme.bar.menus.check_radio_button.background": "#dcdfe8",
"theme.bar.menus.check_radio_button.active": "#7186fd",
"theme.bar.buttons.style": "split",
"theme.bar.buttons.icon_background": "#242438",
"theme.bar.buttons.volume.icon_background": "#e64553",
"theme.bar.buttons.network.icon_background": "#8839ef",
"theme.bar.buttons.bluetooth.icon_background": "#04a5e5",
"theme.bar.buttons.windowtitle.icon_background": "#ea76cb",
"theme.bar.buttons.media.icon_background": "#7287fd",
"theme.bar.buttons.notifications.icon_background": "#7287fd",
"theme.bar.buttons.battery.icon_background": "#df8e1d",
"theme.bar.buttons.clock.icon_background": "#ea76cb",
"theme.bar.menus.menu.notifications.pager.button": "#7287fd",
"theme.bar.menus.menu.notifications.scrollbar.color": "#7287fd",
"theme.bar.menus.menu.notifications.pager.label": "#7c7f93",
"theme.bar.menus.menu.notifications.pager.background": "#eff1f5",
"theme.bar.buttons.modules.ram.icon": "#181825",
"theme.bar.buttons.modules.storage.icon_background": "#d20f39",
"theme.bar.menus.popover.border": "#dce0e8",
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#04a5e5",
"theme.bar.menus.menu.power.buttons.restart.text": "#fe640b",
"theme.bar.buttons.modules.updates.background": "#dcdfe8",
"theme.bar.buttons.modules.storage.icon": "#181825",
"theme.bar.buttons.modules.netstat.background": "#dcdfe8",
"theme.bar.buttons.modules.weather.icon": "#dcdfe8",
"theme.bar.buttons.modules.netstat.text": "#40a02b",
"theme.bar.buttons.modules.storage.background": "#dcdfe8",
"theme.bar.buttons.modules.power.icon": "#181825",
"theme.bar.buttons.modules.storage.text": "#d20f39",
"theme.bar.buttons.modules.cpu.background": "#dcdfe8",
"theme.bar.menus.menu.power.border.color": "#ccd0da",
"theme.bar.buttons.modules.power.icon_background": "#d20f39",
"theme.bar.menus.menu.power.buttons.logout.icon": "#dce0e8",
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#fe640b",
"theme.bar.menus.menu.power.buttons.restart.icon": "#dce0e8",
"theme.bar.buttons.modules.cpu.icon": "#181825",
"theme.bar.buttons.modules.kbLayout.icon_background": "#04a5e5",
"theme.bar.buttons.modules.weather.text": "#7287fd",
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#dce0e8",
"theme.bar.menus.menu.power.buttons.sleep.text": "#04a5e5",
"theme.bar.buttons.modules.weather.icon_background": "#7287fd",
"theme.bar.menus.menu.power.buttons.shutdown.background": "#dcdfe8",
"theme.bar.menus.menu.power.buttons.logout.background": "#dcdfe8",
"theme.bar.buttons.modules.kbLayout.icon": "#181825",
"theme.bar.buttons.modules.ram.icon_background": "#df8e1d",
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#d20f39",
"theme.bar.menus.menu.power.buttons.shutdown.text": "#d20f39",
"theme.bar.menus.menu.power.buttons.sleep.background": "#dcdfe8",
"theme.bar.buttons.modules.ram.text": "#df8e1d",
"theme.bar.menus.menu.power.buttons.logout.text": "#40a02b",
"theme.bar.buttons.modules.updates.icon_background": "#8839ef",
"theme.bar.buttons.modules.kbLayout.background": "#dcdfe8",
"theme.bar.buttons.modules.power.background": "#dcdfe8",
"theme.bar.buttons.modules.weather.background": "#dcdfe8",
"theme.bar.menus.menu.power.background.color": "#eff1f5",
"theme.bar.buttons.modules.ram.background": "#dcdfe8",
"theme.bar.buttons.modules.netstat.icon": "#181825",
"theme.bar.buttons.modules.cpu.icon_background": "#d20f39",
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#40a02b",
"theme.bar.buttons.modules.updates.text": "#8839ef",
"theme.bar.menus.menu.power.buttons.sleep.icon": "#dce0e8",
"theme.bar.menus.menu.power.buttons.restart.background": "#dcdfe8",
"theme.bar.buttons.modules.updates.icon": "#181825",
"theme.bar.buttons.modules.cpu.text": "#d20f39",
"theme.bar.buttons.modules.netstat.icon_background": "#40a02b",
"theme.bar.buttons.modules.kbLayout.text": "#04a5e5"
"theme.notification.background": "#ccd0da"
}

View File

@@ -324,5 +324,24 @@
"theme.bar.buttons.modules.cpu.text": "#ed8796",
"theme.bar.buttons.modules.netstat.icon_background": "#a6da95",
"theme.bar.buttons.modules.kbLayout.text": "#91d7e3",
"theme.bar.buttons.notifications.icon_background": "#b7bdf8"
"theme.bar.buttons.notifications.icon_background": "#b7bdf8",
"theme.bar.buttons.modules.power.border": "#ed8796",
"theme.bar.buttons.modules.weather.border": "#b7bdf8",
"theme.bar.buttons.modules.updates.border": "#c6a0f6",
"theme.bar.buttons.modules.kbLayout.border": "#91d7e3",
"theme.bar.buttons.modules.netstat.border": "#a6da95",
"theme.bar.buttons.modules.storage.border": "#ed8796",
"theme.bar.buttons.modules.cpu.border": "#ed8796",
"theme.bar.buttons.modules.ram.border": "#eed49f",
"theme.bar.buttons.notifications.border": "#b7bdf8",
"theme.bar.buttons.clock.border": "#f5bde6",
"theme.bar.buttons.battery.border": "#eed49f",
"theme.bar.buttons.systray.border": "#494d64",
"theme.bar.buttons.bluetooth.border": "#91d7e3",
"theme.bar.buttons.network.border": "#c6a0f6",
"theme.bar.buttons.volume.border": "#ee99a0",
"theme.bar.buttons.media.border": "#b7bdf8",
"theme.bar.buttons.windowtitle.border": "#f5bde6",
"theme.bar.buttons.workspaces.border": "#181926",
"theme.bar.buttons.dashboard.border": "#eed49f"
}

View File

@@ -324,5 +324,24 @@
"theme.bar.buttons.modules.updates.icon": "#181825",
"theme.bar.buttons.modules.cpu.text": "#ed8796",
"theme.bar.buttons.modules.netstat.icon_background": "#a6da95",
"theme.bar.buttons.modules.kbLayout.text": "#91d7e3"
"theme.bar.buttons.modules.kbLayout.text": "#91d7e3",
"theme.bar.buttons.modules.power.border": "#ed8796",
"theme.bar.buttons.modules.weather.border": "#b7bdf8",
"theme.bar.buttons.modules.updates.border": "#c6a0f6",
"theme.bar.buttons.modules.kbLayout.border": "#91d7e3",
"theme.bar.buttons.modules.netstat.border": "#a6da95",
"theme.bar.buttons.modules.storage.border": "#ed8796",
"theme.bar.buttons.modules.cpu.border": "#ed8796",
"theme.bar.buttons.modules.ram.border": "#eed49f",
"theme.bar.buttons.notifications.border": "#b7bdf8",
"theme.bar.buttons.clock.border": "#f5bde6",
"theme.bar.buttons.battery.border": "#eed49f",
"theme.bar.buttons.systray.border": "#494d64",
"theme.bar.buttons.bluetooth.border": "#91d7e3",
"theme.bar.buttons.network.border": "#c6a0f6",
"theme.bar.buttons.volume.border": "#ee99a0",
"theme.bar.buttons.media.border": "#b7bdf8",
"theme.bar.buttons.windowtitle.border": "#f5bde6",
"theme.bar.buttons.workspaces.border": "#181926",
"theme.bar.buttons.dashboard.border": "#eed49f"
}

View File

@@ -220,85 +220,94 @@
"theme.bar.buttons.modules.power.icon_background": "#f38ba8",
"theme.bar.buttons.modules.power.icon": "#f38ba8",
"theme.bar.buttons.modules.power.background": "#242438",
"theme.bar.buttons.modules.power.border": "#f38ba8",
"theme.bar.buttons.modules.weather.icon_background": "#b4befe",
"theme.bar.buttons.modules.weather.icon": "#b4befe",
"theme.bar.buttons.modules.weather.text": "#b4befe",
"theme.bar.buttons.modules.weather.background": "#242438",
"theme.bar.buttons.modules.weather.border": "#b4befe",
"theme.bar.buttons.modules.updates.icon_background": "#cba6f7",
"theme.bar.buttons.modules.updates.icon": "#cba6f7",
"theme.bar.buttons.modules.updates.text": "#cba6f7",
"theme.bar.buttons.modules.updates.background": "#242438",
"theme.bar.buttons.modules.updates.border": "#cba6f7",
"theme.bar.buttons.modules.kbLayout.icon_background": "#89dceb",
"theme.bar.buttons.modules.kbLayout.icon": "#89dceb",
"theme.bar.buttons.modules.kbLayout.text": "#89dceb",
"theme.bar.buttons.modules.kbLayout.background": "#242438",
"theme.bar.buttons.modules.kbLayout.border": "#89dceb",
"theme.bar.buttons.modules.netstat.icon_background": "#a6e3a1",
"theme.bar.buttons.modules.netstat.icon": "#a6e3a1",
"theme.bar.buttons.modules.netstat.text": "#a6e3a1",
"theme.bar.buttons.modules.netstat.background": "#242438",
"theme.bar.buttons.modules.storage.icon_background": "#f38ba8",
"theme.bar.buttons.modules.storage.icon": "#f38ba8",
"theme.bar.buttons.modules.storage.text": "#f38ba8",
"theme.bar.buttons.modules.netstat.border": "#a6e3a1",
"theme.bar.buttons.modules.storage.icon_background": "#f5c2e7",
"theme.bar.buttons.modules.storage.icon": "#f5c2e7",
"theme.bar.buttons.modules.storage.text": "#f5c2e7",
"theme.bar.buttons.modules.storage.background": "#242438",
"theme.bar.buttons.modules.storage.border": "#f5c2e7",
"theme.bar.buttons.modules.cpu.icon_background": "#f38ba8",
"theme.bar.buttons.modules.cpu.icon": "#f38ba8",
"theme.bar.buttons.modules.cpu.text": "#f38ba8",
"theme.bar.buttons.modules.cpu.background": "#242438",
"theme.bar.buttons.modules.cpu.border": "#f38ba8",
"theme.bar.buttons.modules.ram.icon_background": "#f9e2af",
"theme.bar.buttons.modules.ram.icon": "#f9e2af",
"theme.bar.buttons.modules.ram.text": "#f9e2af",
"theme.bar.buttons.modules.ram.background": "#242438",
"theme.bar.buttons.modules.ram.border": "#f9e2af",
"theme.bar.buttons.notifications.total": "#b4befe",
"theme.bar.buttons.notifications.icon_background": "#b4befe",
"theme.bar.buttons.notifications.icon": "#b4befe",
"theme.bar.buttons.notifications.hover": "#45475a",
"theme.bar.buttons.notifications.background": "#242438",
"theme.bar.buttons.notifications.border": "#b4befe",
"theme.bar.buttons.clock.icon_background": "#f5c2e7",
"theme.bar.buttons.clock.icon": "#f5c2e7",
"theme.bar.buttons.clock.text": "#f5c2e7",
"theme.bar.buttons.clock.hover": "#45475a",
"theme.bar.buttons.clock.background": "#242438",
"theme.bar.buttons.clock.border": "#f5c2e7",
"theme.bar.buttons.battery.icon_background": "#f9e2af",
"theme.bar.buttons.battery.icon": "#f9e2af",
"theme.bar.buttons.battery.text": "#f9e2af",
"theme.bar.buttons.battery.hover": "#45475a",
"theme.bar.buttons.battery.background": "#242438",
"theme.bar.buttons.systray.hover": "#45475a",
"theme.bar.buttons.battery.border": "#f9e2af",
"theme.bar.buttons.systray.background": "#242438",
"theme.bar.buttons.systray.border": "#b4befe",
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
"theme.bar.buttons.bluetooth.icon": "#89dceb",
"theme.bar.buttons.bluetooth.text": "#89dceb",
"theme.bar.buttons.bluetooth.hover": "#45475a",
"theme.bar.buttons.bluetooth.background": "#242438",
"theme.bar.buttons.bluetooth.border": "#89dceb",
"theme.bar.buttons.network.icon_background": "#caa6f7",
"theme.bar.buttons.network.icon": "#cba6f7",
"theme.bar.buttons.network.text": "#cba6f7",
"theme.bar.buttons.network.hover": "#45475a",
"theme.bar.buttons.network.background": "#242438",
"theme.bar.buttons.network.border": "#cba6f7",
"theme.bar.buttons.volume.icon_background": "#eba0ac",
"theme.bar.buttons.volume.icon": "#eba0ac",
"theme.bar.buttons.volume.text": "#eba0ac",
"theme.bar.buttons.volume.hover": "#45475a",
"theme.bar.buttons.volume.background": "#242438",
"theme.bar.buttons.volume.border": "#eba0ac",
"theme.bar.buttons.media.icon_background": "#b4befe",
"theme.bar.buttons.media.icon": "#b4befe",
"theme.bar.buttons.media.text": "#b4befe",
"theme.bar.buttons.media.hover": "#45475a",
"theme.bar.buttons.media.background": "#242438",
"theme.bar.buttons.media.border": "#b4befe",
"theme.bar.buttons.windowtitle.icon_background": "#f5c2e7",
"theme.bar.buttons.windowtitle.icon": "#f5c2e7",
"theme.bar.buttons.windowtitle.text": "#f5c2e7",
"theme.bar.buttons.windowtitle.hover": "#45475a",
"theme.bar.buttons.windowtitle.border": "#f5c2e7",
"theme.bar.buttons.windowtitle.background": "#242438",
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#f5c2e7",
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
"theme.bar.buttons.workspaces.hover": "#f5c2e7",
"theme.bar.buttons.workspaces.active": "#f5c2e7",
"theme.bar.buttons.workspaces.occupied": "#f2cdcd",
"theme.bar.buttons.workspaces.available": "#89dceb",
"theme.bar.buttons.workspaces.hover": "#f5c2e7",
"theme.bar.buttons.workspaces.border": "#f5c2e7",
"theme.bar.buttons.workspaces.background": "#242438",
"theme.bar.buttons.dashboard.icon": "#f9e2af",
"theme.bar.buttons.dashboard.hover": "#45475a",
"theme.bar.buttons.dashboard.border": "#f9e2af",
"theme.bar.buttons.dashboard.background": "#242438",
"theme.bar.buttons.icon": "#b4befe",
"theme.bar.buttons.text": "#b4befe",

View File

@@ -220,85 +220,94 @@
"theme.bar.buttons.modules.power.icon_background": "#f38ba8",
"theme.bar.buttons.modules.power.icon": "#181825",
"theme.bar.buttons.modules.power.background": "#242438",
"theme.bar.buttons.modules.power.border": "#f38ba8",
"theme.bar.buttons.modules.weather.icon_background": "#b4befe",
"theme.bar.buttons.modules.weather.icon": "#242438",
"theme.bar.buttons.modules.weather.text": "#b4befe",
"theme.bar.buttons.modules.weather.background": "#242438",
"theme.bar.buttons.modules.weather.border": "#b4befe",
"theme.bar.buttons.modules.updates.icon_background": "#cba6f7",
"theme.bar.buttons.modules.updates.icon": "#181825",
"theme.bar.buttons.modules.updates.text": "#cba6f7",
"theme.bar.buttons.modules.updates.background": "#242438",
"theme.bar.buttons.modules.updates.border": "#cba6f7",
"theme.bar.buttons.modules.kbLayout.icon_background": "#89dceb",
"theme.bar.buttons.modules.kbLayout.icon": "#181825",
"theme.bar.buttons.modules.kbLayout.text": "#89dceb",
"theme.bar.buttons.modules.kbLayout.background": "#242438",
"theme.bar.buttons.modules.kbLayout.border": "#89dceb",
"theme.bar.buttons.modules.netstat.icon_background": "#a6e3a1",
"theme.bar.buttons.modules.netstat.icon": "#181825",
"theme.bar.buttons.modules.netstat.text": "#a6e3a1",
"theme.bar.buttons.modules.netstat.background": "#242438",
"theme.bar.buttons.modules.storage.icon_background": "#f38ba8",
"theme.bar.buttons.modules.netstat.border": "#a6e3a1",
"theme.bar.buttons.modules.storage.icon_background": "#f5c2e7",
"theme.bar.buttons.modules.storage.icon": "#181825",
"theme.bar.buttons.modules.storage.text": "#f38ba8",
"theme.bar.buttons.modules.storage.text": "#f5c2e7",
"theme.bar.buttons.modules.storage.background": "#242438",
"theme.bar.buttons.modules.storage.border": "#f5c2e7",
"theme.bar.buttons.modules.cpu.icon_background": "#f38ba8",
"theme.bar.buttons.modules.cpu.icon": "#181825",
"theme.bar.buttons.modules.cpu.text": "#f38ba8",
"theme.bar.buttons.modules.cpu.background": "#242438",
"theme.bar.buttons.modules.cpu.border": "#f38ba8",
"theme.bar.buttons.modules.ram.icon_background": "#f9e2af",
"theme.bar.buttons.modules.ram.icon": "#181825",
"theme.bar.buttons.modules.ram.text": "#f9e2af",
"theme.bar.buttons.modules.ram.background": "#242438",
"theme.bar.buttons.modules.ram.border": "#f9e2af",
"theme.bar.buttons.notifications.total": "#b4befe",
"theme.bar.buttons.notifications.icon_background": "#b4befe",
"theme.bar.buttons.notifications.icon": "#1e1e2e",
"theme.bar.buttons.notifications.hover": "#45475a",
"theme.bar.buttons.notifications.background": "#242438",
"theme.bar.buttons.notifications.border": "#b4befe",
"theme.bar.buttons.clock.icon_background": "#f5c2e7",
"theme.bar.buttons.clock.icon": "#232338",
"theme.bar.buttons.clock.text": "#f5c2e7",
"theme.bar.buttons.clock.hover": "#45475a",
"theme.bar.buttons.clock.background": "#242438",
"theme.bar.buttons.clock.border": "#f5c2e7",
"theme.bar.buttons.battery.icon_background": "#f9e2af",
"theme.bar.buttons.battery.icon": "#242438",
"theme.bar.buttons.battery.text": "#f9e2af",
"theme.bar.buttons.battery.hover": "#45475a",
"theme.bar.buttons.battery.background": "#242438",
"theme.bar.buttons.systray.hover": "#45475a",
"theme.bar.buttons.battery.border": "#f9e2af",
"theme.bar.buttons.systray.background": "#242438",
"theme.bar.buttons.systray.border": "#b4befe",
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
"theme.bar.buttons.bluetooth.icon": "#1e1e2e",
"theme.bar.buttons.bluetooth.text": "#89dceb",
"theme.bar.buttons.bluetooth.hover": "#45475a",
"theme.bar.buttons.bluetooth.background": "#242438",
"theme.bar.buttons.bluetooth.border": "#89dceb",
"theme.bar.buttons.network.icon_background": "#caa6f7",
"theme.bar.buttons.network.icon": "#242438",
"theme.bar.buttons.network.text": "#cba6f7",
"theme.bar.buttons.network.hover": "#45475a",
"theme.bar.buttons.network.background": "#242438",
"theme.bar.buttons.network.border": "#cba6f7",
"theme.bar.buttons.volume.icon_background": "#eba0ac",
"theme.bar.buttons.volume.icon": "#242438",
"theme.bar.buttons.volume.text": "#eba0ac",
"theme.bar.buttons.volume.hover": "#45475a",
"theme.bar.buttons.volume.background": "#242438",
"theme.bar.buttons.volume.border": "#eba0ac",
"theme.bar.buttons.media.icon_background": "#b4befe",
"theme.bar.buttons.media.icon": "#1e1e2e",
"theme.bar.buttons.media.text": "#b4befe",
"theme.bar.buttons.media.hover": "#45475a",
"theme.bar.buttons.media.background": "#242438",
"theme.bar.buttons.media.border": "#b4befe",
"theme.bar.buttons.windowtitle.icon_background": "#f5c2e7",
"theme.bar.buttons.windowtitle.icon": "#1e1e2e",
"theme.bar.buttons.windowtitle.text": "#f5c2e7",
"theme.bar.buttons.windowtitle.hover": "#45475a",
"theme.bar.buttons.windowtitle.border": "#f5c2e7",
"theme.bar.buttons.windowtitle.background": "#242438",
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#f5c2e7",
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
"theme.bar.buttons.workspaces.hover": "#f5c2e7",
"theme.bar.buttons.workspaces.active": "#f5c2e7",
"theme.bar.buttons.workspaces.occupied": "#f2cdcd",
"theme.bar.buttons.workspaces.available": "#89dceb",
"theme.bar.buttons.workspaces.hover": "#f5c2e7",
"theme.bar.buttons.workspaces.border": "#f5c2e7",
"theme.bar.buttons.workspaces.background": "#242438",
"theme.bar.buttons.dashboard.icon": "#1e1e2e",
"theme.bar.buttons.dashboard.hover": "#45475a",
"theme.bar.buttons.dashboard.border": "#f9e2af",
"theme.bar.buttons.dashboard.background": "#f9e2af",
"theme.bar.buttons.icon": "#b4befe",
"theme.bar.buttons.text": "#b4befe",

View File

@@ -323,5 +323,24 @@
"theme.notification.label": "#5bafff",
"theme.notification.actions.text": "#0a0a0a",
"theme.notification.actions.background": "#5bafff",
"theme.notification.background": "#0a0a0a"
"theme.notification.background": "#0a0a0a",
"theme.bar.buttons.modules.power.border": "#FF4500",
"theme.bar.buttons.modules.weather.border": "#FFD700",
"theme.bar.buttons.modules.updates.border": "#FFD700",
"theme.bar.buttons.modules.kbLayout.border": "#00FFFF",
"theme.bar.buttons.modules.netstat.border": "#32CD32",
"theme.bar.buttons.modules.storage.border": "#FF4500",
"theme.bar.buttons.modules.cpu.border": "#FF4500",
"theme.bar.buttons.modules.ram.border": "#FFD700",
"theme.bar.buttons.notifications.border": "#f7d04b",
"theme.bar.buttons.clock.border": "#5bafff",
"theme.bar.buttons.battery.border": "#f7d04b",
"theme.bar.buttons.systray.border": "#303030",
"theme.bar.buttons.bluetooth.border": "#5bafff",
"theme.bar.buttons.network.border": "#e23fe2",
"theme.bar.buttons.volume.border": "#ff3f3f",
"theme.bar.buttons.media.border": "#FFD700",
"theme.bar.buttons.windowtitle.border": "#5bafff",
"theme.bar.buttons.workspaces.border": "#e23ee2",
"theme.bar.buttons.dashboard.border": "#f7d04b"
}

View File

@@ -323,5 +323,24 @@
"theme.notification.label": "#5bafff",
"theme.notification.actions.text": "#0a0a0a",
"theme.notification.actions.background": "#5bafff",
"theme.notification.background": "#0a0a0a"
"theme.notification.background": "#0a0a0a",
"theme.bar.buttons.modules.power.border": "#FF4500",
"theme.bar.buttons.modules.weather.border": "#FFD700",
"theme.bar.buttons.modules.updates.border": "#FFD700",
"theme.bar.buttons.modules.kbLayout.border": "#00FFFF",
"theme.bar.buttons.modules.netstat.border": "#32CD32",
"theme.bar.buttons.modules.storage.border": "#FF4500",
"theme.bar.buttons.modules.cpu.border": "#FF4500",
"theme.bar.buttons.modules.ram.border": "#FFD700",
"theme.bar.buttons.notifications.border": "#f7d04b",
"theme.bar.buttons.clock.border": "#5bafff",
"theme.bar.buttons.battery.border": "#f7d04b",
"theme.bar.buttons.systray.border": "#303030",
"theme.bar.buttons.bluetooth.border": "#5bafff",
"theme.bar.buttons.network.border": "#e23fe2",
"theme.bar.buttons.volume.border": "#ff3f3f",
"theme.bar.buttons.media.border": "#FFD700",
"theme.bar.buttons.windowtitle.border": "#5bafff",
"theme.bar.buttons.workspaces.border": "#e23ee2",
"theme.bar.buttons.dashboard.border": "#f7d04b"
}

View File

@@ -220,85 +220,94 @@
"theme.bar.buttons.modules.power.icon_background": "#bd93f9",
"theme.bar.buttons.modules.power.icon": "#ff5454",
"theme.bar.buttons.modules.power.background": "#44475a",
"theme.bar.buttons.modules.power.border": "#bd93f9",
"theme.bar.buttons.modules.weather.icon_background": "#ffb86c",
"theme.bar.buttons.modules.weather.icon": "#ffb86c",
"theme.bar.buttons.modules.weather.text": "#ffb86c",
"theme.bar.buttons.modules.weather.background": "#44475a",
"theme.bar.buttons.modules.weather.border": "#ffb86c",
"theme.bar.buttons.modules.updates.icon_background": "#bd93f9",
"theme.bar.buttons.modules.updates.icon": "#bd93f9",
"theme.bar.buttons.modules.updates.text": "#bd93f9",
"theme.bar.buttons.modules.updates.background": "#44475a",
"theme.bar.buttons.modules.updates.border": "#bd93f9",
"theme.bar.buttons.modules.kbLayout.icon_background": "#8be9fd",
"theme.bar.buttons.modules.kbLayout.icon": "#8be9fd",
"theme.bar.buttons.modules.kbLayout.text": "#8be9fd",
"theme.bar.buttons.modules.kbLayout.background": "#44475a",
"theme.bar.buttons.modules.kbLayout.border": "#8be9fd",
"theme.bar.buttons.modules.netstat.icon_background": "#50fa7b",
"theme.bar.buttons.modules.netstat.icon": "#50fa7b",
"theme.bar.buttons.modules.netstat.text": "#50fa7b",
"theme.bar.buttons.modules.netstat.background": "#44475a",
"theme.bar.buttons.modules.netstat.border": "#50fa7b",
"theme.bar.buttons.modules.storage.icon_background": "#bd93f9",
"theme.bar.buttons.modules.storage.icon": "#bd93f9",
"theme.bar.buttons.modules.storage.text": "#bd93f9",
"theme.bar.buttons.modules.storage.background": "#44475a",
"theme.bar.buttons.modules.storage.border": "#bd93f9",
"theme.bar.buttons.modules.cpu.icon_background": "#ff79c6",
"theme.bar.buttons.modules.cpu.icon": "#ff79c6",
"theme.bar.buttons.modules.cpu.text": "#ff79c6",
"theme.bar.buttons.modules.cpu.background": "#44475a",
"theme.bar.buttons.modules.cpu.border": "#ff79c6",
"theme.bar.buttons.modules.ram.icon_background": "#f1fa8c",
"theme.bar.buttons.modules.ram.icon": "#f1fa8c",
"theme.bar.buttons.modules.ram.text": "#f1fa8c",
"theme.bar.buttons.modules.ram.background": "#44475a",
"theme.bar.buttons.modules.ram.border": "#f1fa8c",
"theme.bar.buttons.notifications.total": "#bd93f9",
"theme.bar.buttons.notifications.icon_background": "#bd93f9",
"theme.bar.buttons.notifications.icon": "#bd93f9",
"theme.bar.buttons.notifications.hover": "#6272a4",
"theme.bar.buttons.notifications.background": "#44475a",
"theme.bar.buttons.notifications.border": "#bd93f9",
"theme.bar.buttons.clock.icon_background": "#ff79c6",
"theme.bar.buttons.clock.icon": "#ff79c6",
"theme.bar.buttons.clock.text": "#ff79c6",
"theme.bar.buttons.clock.hover": "#6272a4",
"theme.bar.buttons.clock.background": "#44475a",
"theme.bar.buttons.clock.border": "#ff79c6",
"theme.bar.buttons.battery.icon_background": "#f1fa8c",
"theme.bar.buttons.battery.icon": "#f1fa8c",
"theme.bar.buttons.battery.text": "#f1fa8c",
"theme.bar.buttons.battery.hover": "#6272a4",
"theme.bar.buttons.battery.background": "#44475a",
"theme.bar.buttons.systray.hover": "#6272a4",
"theme.bar.buttons.battery.border": "#f1fa8c",
"theme.bar.buttons.systray.background": "#44475a",
"theme.bar.buttons.systray.border": "#6272a4",
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
"theme.bar.buttons.bluetooth.icon": "#8be9fd",
"theme.bar.buttons.bluetooth.text": "#8be9fd",
"theme.bar.buttons.bluetooth.hover": "#6272a4",
"theme.bar.buttons.bluetooth.background": "#44475a",
"theme.bar.buttons.bluetooth.border": "#8be9fd",
"theme.bar.buttons.network.icon_background": "#caa6f7",
"theme.bar.buttons.network.icon": "#bd93f9",
"theme.bar.buttons.network.text": "#bd93f9",
"theme.bar.buttons.network.hover": "#6272a4",
"theme.bar.buttons.network.background": "#44475a",
"theme.bar.buttons.network.border": "#bd93f9",
"theme.bar.buttons.volume.icon_background": "#ffb86c",
"theme.bar.buttons.volume.icon": "#ffb86c",
"theme.bar.buttons.volume.text": "#ffb86c",
"theme.bar.buttons.volume.hover": "#6272a4",
"theme.bar.buttons.volume.background": "#44475a",
"theme.bar.buttons.volume.border": "#ffb86c",
"theme.bar.buttons.media.icon_background": "#bd93f9",
"theme.bar.buttons.media.icon": "#bd93f9",
"theme.bar.buttons.media.text": "#bd93f9",
"theme.bar.buttons.media.hover": "#6272a4",
"theme.bar.buttons.media.background": "#44475a",
"theme.bar.buttons.media.border": "#bd93f9",
"theme.bar.buttons.windowtitle.icon_background": "#ff79c6",
"theme.bar.buttons.windowtitle.icon": "#f1fa8c",
"theme.bar.buttons.windowtitle.text": "#f1fa8c",
"theme.bar.buttons.windowtitle.hover": "#6272a4",
"theme.bar.buttons.windowtitle.border": "#f1fa8c",
"theme.bar.buttons.windowtitle.background": "#44475a",
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#e23ee2",
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#21252b",
"theme.bar.buttons.workspaces.hover": "#44475a",
"theme.bar.buttons.workspaces.active": "#ff79c6",
"theme.bar.buttons.workspaces.occupied": "#ffb86c",
"theme.bar.buttons.workspaces.available": "#8be9fd",
"theme.bar.buttons.workspaces.hover": "#44475a",
"theme.bar.buttons.workspaces.border": "#44475a",
"theme.bar.buttons.workspaces.background": "#44475a",
"theme.bar.buttons.dashboard.icon": "#8be8fd",
"theme.bar.buttons.dashboard.hover": "#6272a4",
"theme.bar.buttons.dashboard.border": "#8be8fd",
"theme.bar.buttons.dashboard.background": "#44475a",
"theme.bar.buttons.icon": "#bd93f9",
"theme.bar.buttons.text": "#bd93f9",

View File

@@ -220,85 +220,94 @@
"theme.bar.buttons.modules.power.icon_background": "#ff5454",
"theme.bar.buttons.modules.power.icon": "#282936",
"theme.bar.buttons.modules.power.background": "#44475a",
"theme.bar.buttons.modules.power.border": "#bd93f9",
"theme.bar.buttons.modules.weather.icon_background": "#ffb86c",
"theme.bar.buttons.modules.weather.icon": "#282936",
"theme.bar.buttons.modules.weather.text": "#ffb86c",
"theme.bar.buttons.modules.weather.background": "#44475a",
"theme.bar.buttons.modules.weather.border": "#ffb86c",
"theme.bar.buttons.modules.updates.icon_background": "#bd93f9",
"theme.bar.buttons.modules.updates.icon": "#282936",
"theme.bar.buttons.modules.updates.text": "#bd93f9",
"theme.bar.buttons.modules.updates.background": "#44475a",
"theme.bar.buttons.modules.updates.border": "#bd93f9",
"theme.bar.buttons.modules.kbLayout.icon_background": "#8be9fd",
"theme.bar.buttons.modules.kbLayout.icon": "#282936",
"theme.bar.buttons.modules.kbLayout.text": "#8be9fd",
"theme.bar.buttons.modules.kbLayout.background": "#44475a",
"theme.bar.buttons.modules.kbLayout.border": "#8be9fd",
"theme.bar.buttons.modules.netstat.icon_background": "#50fa7b",
"theme.bar.buttons.modules.netstat.icon": "#282936",
"theme.bar.buttons.modules.netstat.text": "#50fa7b",
"theme.bar.buttons.modules.netstat.background": "#44475a",
"theme.bar.buttons.modules.netstat.border": "#50fa7b",
"theme.bar.buttons.modules.storage.icon_background": "#bd93f9",
"theme.bar.buttons.modules.storage.icon": "#282936",
"theme.bar.buttons.modules.storage.text": "#bd93f9",
"theme.bar.buttons.modules.storage.background": "#44475a",
"theme.bar.buttons.modules.storage.border": "#bd93f9",
"theme.bar.buttons.modules.cpu.icon_background": "#ff79c6",
"theme.bar.buttons.modules.cpu.icon": "#282936",
"theme.bar.buttons.modules.cpu.text": "#ff79c6",
"theme.bar.buttons.modules.cpu.background": "#44475a",
"theme.bar.buttons.modules.cpu.border": "#ff79c6",
"theme.bar.buttons.modules.ram.icon_background": "#f1fa8c",
"theme.bar.buttons.modules.ram.icon": "#282936",
"theme.bar.buttons.modules.ram.text": "#f1fa8c",
"theme.bar.buttons.modules.ram.background": "#44475a",
"theme.bar.buttons.modules.ram.border": "#f1fa8c",
"theme.bar.buttons.notifications.total": "#bd93f9",
"theme.bar.buttons.notifications.icon_background": "#bd93f9",
"theme.bar.buttons.notifications.icon": "#44475a",
"theme.bar.buttons.notifications.hover": "#6272a4",
"theme.bar.buttons.notifications.background": "#44475a",
"theme.bar.buttons.notifications.border": "#bd93f9",
"theme.bar.buttons.clock.icon_background": "#ff79c6",
"theme.bar.buttons.clock.icon": "#44475a",
"theme.bar.buttons.clock.text": "#ff79c6",
"theme.bar.buttons.clock.hover": "#6272a4",
"theme.bar.buttons.clock.background": "#44475a",
"theme.bar.buttons.clock.border": "#ff79c6",
"theme.bar.buttons.battery.icon_background": "#f1fa8c",
"theme.bar.buttons.battery.icon": "#44475a",
"theme.bar.buttons.battery.text": "#f1fa8c",
"theme.bar.buttons.battery.hover": "#6272a4",
"theme.bar.buttons.battery.background": "#44475a",
"theme.bar.buttons.systray.hover": "#6272a4",
"theme.bar.buttons.battery.border": "#f1fa8c",
"theme.bar.buttons.systray.background": "#44475a",
"theme.bar.buttons.systray.border": "#6272a4",
"theme.bar.buttons.bluetooth.icon_background": "#8be9fd",
"theme.bar.buttons.bluetooth.icon": "#44475a",
"theme.bar.buttons.bluetooth.text": "#8be9fd",
"theme.bar.buttons.bluetooth.hover": "#6272a4",
"theme.bar.buttons.bluetooth.background": "#44475a",
"theme.bar.buttons.bluetooth.border": "#8be9fd",
"theme.bar.buttons.network.icon_background": "#bd93f9",
"theme.bar.buttons.network.icon": "#44475a",
"theme.bar.buttons.network.text": "#bd93f9",
"theme.bar.buttons.network.hover": "#6272a4",
"theme.bar.buttons.network.background": "#44475a",
"theme.bar.buttons.network.border": "#bd93f9",
"theme.bar.buttons.volume.icon_background": "#ffb86c",
"theme.bar.buttons.volume.icon": "#44475a",
"theme.bar.buttons.volume.text": "#ffb86c",
"theme.bar.buttons.volume.hover": "#6272a4",
"theme.bar.buttons.volume.background": "#44475a",
"theme.bar.buttons.volume.border": "#ffb86c",
"theme.bar.buttons.media.icon_background": "#bd93f9",
"theme.bar.buttons.media.icon": "#44475a",
"theme.bar.buttons.media.text": "#bd93f9",
"theme.bar.buttons.media.hover": "#6272a4",
"theme.bar.buttons.media.background": "#44475a",
"theme.bar.buttons.media.border": "#bd93f9",
"theme.bar.buttons.windowtitle.icon_background": "#f1fa8c",
"theme.bar.buttons.windowtitle.icon": "#44475a",
"theme.bar.buttons.windowtitle.text": "#f1fa8c",
"theme.bar.buttons.windowtitle.hover": "#6272a4",
"theme.bar.buttons.windowtitle.border": "#f1fa8c",
"theme.bar.buttons.windowtitle.background": "#44475a",
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#ff79c6",
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#ff79c6",
"theme.bar.buttons.workspaces.hover": "#ff79c6",
"theme.bar.buttons.workspaces.active": "#ff79c6",
"theme.bar.buttons.workspaces.occupied": "#ffb86c",
"theme.bar.buttons.workspaces.available": "#8be9fd",
"theme.bar.buttons.workspaces.hover": "#ff79c6",
"theme.bar.buttons.workspaces.border": "#44475a",
"theme.bar.buttons.workspaces.background": "#44475a",
"theme.bar.buttons.dashboard.icon": "#44475a",
"theme.bar.buttons.dashboard.hover": "#6272a4",
"theme.bar.buttons.dashboard.border": "#8be8fd",
"theme.bar.buttons.dashboard.background": "#8be8fd",
"theme.bar.buttons.icon": "#bd93f9",
"theme.bar.buttons.text": "#bd93f9",

View File

@@ -324,5 +324,24 @@
"theme.bar.buttons.modules.cpu.text": "#e67e80",
"theme.bar.buttons.modules.netstat.icon_background": "#a7c080",
"theme.bar.buttons.modules.kbLayout.text": "#83c092",
"theme.bar.buttons.notifications.icon_background": "#a7c080"
"theme.bar.buttons.notifications.icon_background": "#a7c080",
"theme.bar.buttons.modules.power.border": "#e67e80",
"theme.bar.buttons.modules.weather.border": "#a7c080",
"theme.bar.buttons.modules.updates.border": "#83c092",
"theme.bar.buttons.modules.kbLayout.border": "#83c092",
"theme.bar.buttons.modules.netstat.border": "#a7c080",
"theme.bar.buttons.modules.storage.border": "#e67e80",
"theme.bar.buttons.modules.cpu.border": "#e67e80",
"theme.bar.buttons.modules.ram.border": "#dbbc7f",
"theme.bar.buttons.notifications.border": "#83c092",
"theme.bar.buttons.clock.border": "#dbbc7f",
"theme.bar.buttons.battery.border": "#e69875",
"theme.bar.buttons.systray.border": "#454b53",
"theme.bar.buttons.bluetooth.border": "#a7c080",
"theme.bar.buttons.network.border": "#e69875",
"theme.bar.buttons.volume.border": "#dbbc7f",
"theme.bar.buttons.media.border": "#a7c080",
"theme.bar.buttons.windowtitle.border": "#dbbc7f",
"theme.bar.buttons.workspaces.border": "#2b3339",
"theme.bar.buttons.dashboard.border": "#e69875"
}

View File

@@ -324,5 +324,24 @@
"theme.bar.buttons.modules.updates.icon": "#21252b",
"theme.bar.buttons.modules.cpu.text": "#e67e80",
"theme.bar.buttons.modules.netstat.icon_background": "#a7c080",
"theme.bar.buttons.modules.kbLayout.text": "#83c092"
"theme.bar.buttons.modules.kbLayout.text": "#83c092",
"theme.bar.buttons.modules.power.border": "#e67e80",
"theme.bar.buttons.modules.weather.border": "#a7c080",
"theme.bar.buttons.modules.updates.border": "#83c092",
"theme.bar.buttons.modules.kbLayout.border": "#83c092",
"theme.bar.buttons.modules.netstat.border": "#a7c080",
"theme.bar.buttons.modules.storage.border": "#e67e80",
"theme.bar.buttons.modules.cpu.border": "#e67e80",
"theme.bar.buttons.modules.ram.border": "#dbbc7f",
"theme.bar.buttons.notifications.border": "#83c092",
"theme.bar.buttons.clock.border": "#dbbc7f",
"theme.bar.buttons.battery.border": "#e69875",
"theme.bar.buttons.systray.border": "#454b53",
"theme.bar.buttons.bluetooth.border": "#a7c080",
"theme.bar.buttons.network.border": "#e69875",
"theme.bar.buttons.volume.border": "#dbbc7f",
"theme.bar.buttons.media.border": "#a7c080",
"theme.bar.buttons.windowtitle.border": "#dbbc7f",
"theme.bar.buttons.workspaces.border": "#2b3339",
"theme.bar.buttons.dashboard.border": "#e69875"
}

View File

@@ -323,5 +323,24 @@
"theme.notification.label": "#83a598",
"theme.notification.actions.text": "#32302f",
"theme.notification.actions.background": "#83a598",
"theme.notification.background": "#32302f"
"theme.notification.background": "#32302f",
"theme.bar.buttons.modules.power.border": "#282828",
"theme.bar.buttons.modules.weather.border": "#fe8017",
"theme.bar.buttons.modules.updates.border": "#b16286",
"theme.bar.buttons.modules.kbLayout.border": "#83a598",
"theme.bar.buttons.modules.netstat.border": "#b8bb26",
"theme.bar.buttons.modules.storage.border": "#83a598",
"theme.bar.buttons.modules.cpu.border": "#d3869b",
"theme.bar.buttons.modules.ram.border": "#fabd2f",
"theme.bar.buttons.notifications.border": "#83a598",
"theme.bar.buttons.clock.border": "#d3869b",
"theme.bar.buttons.battery.border": "#fabd2f",
"theme.bar.buttons.systray.border": "#504945",
"theme.bar.buttons.bluetooth.border": "#83a598",
"theme.bar.buttons.network.border": "#b16286",
"theme.bar.buttons.volume.border": "#fe8018",
"theme.bar.buttons.media.border": "#83a598",
"theme.bar.buttons.windowtitle.border": "#d3869b",
"theme.bar.buttons.workspaces.border": "#ffffff",
"theme.bar.buttons.dashboard.border": "#fabd2f"
}

View File

@@ -323,5 +323,24 @@
"theme.notification.label": "#83a598",
"theme.notification.actions.text": "#32302f",
"theme.notification.actions.background": "#83a598",
"theme.notification.background": "#32302f"
"theme.notification.background": "#32302f",
"theme.bar.buttons.modules.power.border": "#282828",
"theme.bar.buttons.modules.weather.border": "#fe8017",
"theme.bar.buttons.modules.updates.border": "#b16286",
"theme.bar.buttons.modules.kbLayout.border": "#83a598",
"theme.bar.buttons.modules.netstat.border": "#b8bb26",
"theme.bar.buttons.modules.storage.border": "#83a598",
"theme.bar.buttons.modules.cpu.border": "#d3869b",
"theme.bar.buttons.modules.ram.border": "#fabd2f",
"theme.bar.buttons.notifications.border": "#83a598",
"theme.bar.buttons.clock.border": "#d3869b",
"theme.bar.buttons.battery.border": "#fabd2f",
"theme.bar.buttons.systray.border": "#504945",
"theme.bar.buttons.bluetooth.border": "#83a598",
"theme.bar.buttons.network.border": "#b16286",
"theme.bar.buttons.volume.border": "#fe8018",
"theme.bar.buttons.media.border": "#83a598",
"theme.bar.buttons.windowtitle.border": "#d3869b",
"theme.bar.buttons.workspaces.border": "#ffffff",
"theme.bar.buttons.dashboard.border": "#fabd2f"
}

View File

@@ -324,5 +324,24 @@
"theme.bar.buttons.modules.cpu.text": "#ffffff",
"theme.bar.buttons.modules.netstat.icon_background": "#ffffff",
"theme.bar.buttons.modules.kbLayout.text": "#ffffff",
"theme.bar.buttons.notifications.icon_background": "#FFFFFF"
"theme.bar.buttons.notifications.icon_background": "#FFFFFF",
"theme.bar.buttons.modules.power.border": "#ffffff",
"theme.bar.buttons.modules.weather.border": "#FFFFFF",
"theme.bar.buttons.modules.updates.border": "#FFFFFF",
"theme.bar.buttons.modules.kbLayout.border": "#ffffff",
"theme.bar.buttons.modules.netstat.border": "#ffffff",
"theme.bar.buttons.modules.storage.border": "#ffffff",
"theme.bar.buttons.modules.cpu.border": "#ffffff",
"theme.bar.buttons.modules.ram.border": "#ffffff",
"theme.bar.buttons.notifications.border": "#FFFFFF",
"theme.bar.buttons.clock.border": "#FFFFFF",
"theme.bar.buttons.battery.border": "#FFFFFF",
"theme.bar.buttons.systray.border": "#444444",
"theme.bar.buttons.bluetooth.border": "#FFFFFF",
"theme.bar.buttons.network.border": "#FFFFFF",
"theme.bar.buttons.volume.border": "#FFFFFF",
"theme.bar.buttons.media.border": "#FFFFFF",
"theme.bar.buttons.windowtitle.border": "#FFFFFF",
"theme.bar.buttons.workspaces.border": "#FFFFFF",
"theme.bar.buttons.dashboard.border": "#FFFFFF"
}

View File

@@ -324,5 +324,24 @@
"theme.bar.buttons.modules.updates.icon": "#21252b",
"theme.bar.buttons.modules.cpu.text": "#ffffff",
"theme.bar.buttons.modules.netstat.icon_background": "#ffffff",
"theme.bar.buttons.modules.kbLayout.text": "#ffffff"
"theme.bar.buttons.modules.kbLayout.text": "#ffffff",
"theme.bar.buttons.modules.power.border": "#ffffff",
"theme.bar.buttons.modules.weather.border": "#FFFFFF",
"theme.bar.buttons.modules.updates.border": "#FFFFFF",
"theme.bar.buttons.modules.kbLayout.border": "#ffffff",
"theme.bar.buttons.modules.netstat.border": "#ffffff",
"theme.bar.buttons.modules.storage.border": "#ffffff",
"theme.bar.buttons.modules.cpu.border": "#ffffff",
"theme.bar.buttons.modules.ram.border": "#ffffff",
"theme.bar.buttons.notifications.border": "#FFFFFF",
"theme.bar.buttons.clock.border": "#FFFFFF",
"theme.bar.buttons.battery.border": "#FFFFFF",
"theme.bar.buttons.systray.border": "#444444",
"theme.bar.buttons.bluetooth.border": "#FFFFFF",
"theme.bar.buttons.network.border": "#FFFFFF",
"theme.bar.buttons.volume.border": "#FFFFFF",
"theme.bar.buttons.media.border": "#FFFFFF",
"theme.bar.buttons.windowtitle.border": "#FFFFFF",
"theme.bar.buttons.workspaces.border": "#FFFFFF",
"theme.bar.buttons.dashboard.border": "#FFFFFF"
}

View File

@@ -324,5 +324,24 @@
"theme.bar.buttons.modules.cpu.text": "#8fbcbb",
"theme.bar.buttons.modules.netstat.icon_background": "#8fbcbb",
"theme.bar.buttons.modules.kbLayout.text": "#88c0d0",
"theme.bar.buttons.notifications.icon_background": "#88c0d0"
"theme.bar.buttons.notifications.icon_background": "#88c0d0",
"theme.bar.buttons.modules.power.border": "#8fbcbb",
"theme.bar.buttons.modules.weather.border": "#88c0d0",
"theme.bar.buttons.modules.updates.border": "#88c0d0",
"theme.bar.buttons.modules.kbLayout.border": "#88c0d0",
"theme.bar.buttons.modules.netstat.border": "#8fbcbb",
"theme.bar.buttons.modules.storage.border": "#8fbcbb",
"theme.bar.buttons.modules.cpu.border": "#8fbcbb",
"theme.bar.buttons.modules.ram.border": "#81a1c1",
"theme.bar.buttons.notifications.border": "#88c0d0",
"theme.bar.buttons.clock.border": "#8fbcbb",
"theme.bar.buttons.battery.border": "#81a1c1",
"theme.bar.buttons.systray.border": "#434c53",
"theme.bar.buttons.bluetooth.border": "#88c0d0",
"theme.bar.buttons.network.border": "#88c0d0",
"theme.bar.buttons.volume.border": "#81a1c1",
"theme.bar.buttons.media.border": "#88c0d0",
"theme.bar.buttons.windowtitle.border": "#8fbcbb",
"theme.bar.buttons.workspaces.border": "#2e3440",
"theme.bar.buttons.dashboard.border": "#81a1c1"
}

View File

@@ -324,5 +324,24 @@
"theme.bar.buttons.modules.updates.icon": "#21252b",
"theme.bar.buttons.modules.cpu.text": "#8fbcbb",
"theme.bar.buttons.modules.netstat.icon_background": "#8fbcbb",
"theme.bar.buttons.modules.kbLayout.text": "#88c0d0"
"theme.bar.buttons.modules.kbLayout.text": "#88c0d0",
"theme.bar.buttons.modules.power.border": "#8fbcbb",
"theme.bar.buttons.modules.weather.border": "#88c0d0",
"theme.bar.buttons.modules.updates.border": "#88c0d0",
"theme.bar.buttons.modules.kbLayout.border": "#88c0d0",
"theme.bar.buttons.modules.netstat.border": "#8fbcbb",
"theme.bar.buttons.modules.storage.border": "#8fbcbb",
"theme.bar.buttons.modules.cpu.border": "#8fbcbb",
"theme.bar.buttons.modules.ram.border": "#81a1c1",
"theme.bar.buttons.notifications.border": "#88c0d0",
"theme.bar.buttons.clock.border": "#8fbcbb",
"theme.bar.buttons.battery.border": "#81a1c1",
"theme.bar.buttons.systray.border": "#434c53",
"theme.bar.buttons.bluetooth.border": "#88c0d0",
"theme.bar.buttons.network.border": "#88c0d0",
"theme.bar.buttons.volume.border": "#81a1c1",
"theme.bar.buttons.media.border": "#88c0d0",
"theme.bar.buttons.windowtitle.border": "#8fbcbb",
"theme.bar.buttons.workspaces.border": "#2e3440",
"theme.bar.buttons.dashboard.border": "#81a1c1"
}

View File

@@ -324,5 +324,24 @@
"theme.bar.buttons.modules.cpu.text": "#e06c75",
"theme.bar.buttons.modules.netstat.icon_background": "#98c379",
"theme.bar.buttons.modules.kbLayout.text": "#56b6c2",
"theme.bar.buttons.notifications.icon_background": "#61afef"
"theme.bar.buttons.notifications.icon_background": "#61afef",
"theme.bar.buttons.modules.power.border": "#e06c75",
"theme.bar.buttons.modules.weather.border": "#61afef",
"theme.bar.buttons.modules.updates.border": "#c678dd",
"theme.bar.buttons.modules.kbLayout.border": "#56b6c2",
"theme.bar.buttons.modules.netstat.border": "#98c379",
"theme.bar.buttons.modules.storage.border": "#e06c75",
"theme.bar.buttons.modules.cpu.border": "#e06c75",
"theme.bar.buttons.modules.ram.border": "#e5c07b",
"theme.bar.buttons.notifications.border": "#61afef",
"theme.bar.buttons.clock.border": "#98c379",
"theme.bar.buttons.battery.border": "#e5c07b",
"theme.bar.buttons.systray.border": "#4b5263",
"theme.bar.buttons.bluetooth.border": "#61afef",
"theme.bar.buttons.network.border": "#c678dd",
"theme.bar.buttons.volume.border": "#e06c75",
"theme.bar.buttons.media.border": "#61afef",
"theme.bar.buttons.windowtitle.border": "#98c379",
"theme.bar.buttons.workspaces.border": "#21252b",
"theme.bar.buttons.dashboard.border": "#e5c07b"
}

View File

@@ -324,5 +324,24 @@
"theme.bar.buttons.modules.updates.icon": "#21252b",
"theme.bar.buttons.modules.cpu.text": "#e06c75",
"theme.bar.buttons.modules.netstat.icon_background": "#98c379",
"theme.bar.buttons.modules.kbLayout.text": "#56b6c2"
"theme.bar.buttons.modules.kbLayout.text": "#56b6c2",
"theme.bar.buttons.modules.power.border": "#e06c75",
"theme.bar.buttons.modules.weather.border": "#61afef",
"theme.bar.buttons.modules.updates.border": "#c678dd",
"theme.bar.buttons.modules.kbLayout.border": "#56b6c2",
"theme.bar.buttons.modules.netstat.border": "#98c379",
"theme.bar.buttons.modules.storage.border": "#e06c75",
"theme.bar.buttons.modules.cpu.border": "#e06c75",
"theme.bar.buttons.modules.ram.border": "#e5c07b",
"theme.bar.buttons.notifications.border": "#61afef",
"theme.bar.buttons.clock.border": "#98c379",
"theme.bar.buttons.battery.border": "#e5c07b",
"theme.bar.buttons.systray.border": "#4b5263",
"theme.bar.buttons.bluetooth.border": "#61afef",
"theme.bar.buttons.network.border": "#c678dd",
"theme.bar.buttons.volume.border": "#e06c75",
"theme.bar.buttons.media.border": "#61afef",
"theme.bar.buttons.windowtitle.border": "#98c379",
"theme.bar.buttons.workspaces.border": "#21252b",
"theme.bar.buttons.dashboard.border": "#e5c07b"
}

View File

@@ -324,5 +324,24 @@
"theme.bar.buttons.modules.cpu.text": "#eb6f92",
"theme.bar.buttons.modules.netstat.icon_background": "#9ccfd8",
"theme.bar.buttons.modules.kbLayout.text": "#9ccfd8",
"theme.bar.buttons.notifications.icon_background": "#c4a7e7"
"theme.bar.buttons.notifications.icon_background": "#c4a7e7",
"theme.bar.buttons.modules.power.border": "#eb6f92",
"theme.bar.buttons.modules.weather.border": "#c4a7e7",
"theme.bar.buttons.modules.updates.border": "#30738f",
"theme.bar.buttons.modules.kbLayout.border": "#9ccfd8",
"theme.bar.buttons.modules.netstat.border": "#9ccfd8",
"theme.bar.buttons.modules.storage.border": "#eb6f92",
"theme.bar.buttons.modules.cpu.border": "#eb6f92",
"theme.bar.buttons.modules.ram.border": "#f6c177",
"theme.bar.buttons.notifications.border": "#c4a7e7",
"theme.bar.buttons.clock.border": "#c4a7e7",
"theme.bar.buttons.battery.border": "#f6c177",
"theme.bar.buttons.systray.border": "#26233a",
"theme.bar.buttons.bluetooth.border": "#9ccfd8",
"theme.bar.buttons.network.border": "#c4a7e7",
"theme.bar.buttons.volume.border": "#eb6f92",
"theme.bar.buttons.media.border": "#c4a7e7",
"theme.bar.buttons.windowtitle.border": "#c4a7e7",
"theme.bar.buttons.workspaces.border": "#1f1d2e",
"theme.bar.buttons.dashboard.border": "#f6c177"
}

View File

@@ -325,5 +325,25 @@
"theme.bar.menus.menu.power.buttons.restart.background": "#2a283e",
"theme.bar.buttons.modules.cpu.text": "#eb6f92",
"theme.bar.buttons.modules.kbLayout.text": "#9ccfd8",
"theme.bar.buttons.notifications.icon_background": "#c4a7e7"
"theme.bar.buttons.notifications.icon_background": "#c4a7e7",
"theme.bar.buttons.modules.power.border": "#eb6f92",
"theme.bar.buttons.modules.weather.border": "#c4a7e7",
"theme.bar.buttons.modules.updates.border": "#30738f",
"theme.bar.buttons.modules.kbLayout.border": "#9ccfd8",
"theme.bar.buttons.modules.netstat.border": "#9ccfd8",
"theme.bar.buttons.modules.storage.border": "#eb6f92",
"theme.bar.buttons.modules.cpu.border": "#eb6f92",
"theme.bar.buttons.modules.ram.border": "#f6c177",
"theme.bar.buttons.notifications.border": "#c4a7e7",
"theme.bar.buttons.clock.border": "#c4a7e7",
"theme.bar.buttons.battery.border": "#f6c177",
"theme.bar.buttons.systray.border": "#26233a",
"theme.bar.buttons.bluetooth.border": "#9ccfd8",
"theme.bar.buttons.network.border": "#c4a7e7",
"theme.bar.buttons.volume.border": "#eb6f92",
"theme.bar.buttons.media.border": "#c4a7e7",
"theme.bar.buttons.windowtitle.border": "#c4a7e7",
"theme.bar.buttons.workspaces.border": "#1f1d2e",
"theme.bar.buttons.dashboard.border": "#f6c177"
}

View File

@@ -324,5 +324,25 @@
"theme.bar.buttons.modules.updates.icon": "#181825",
"theme.bar.buttons.modules.cpu.text": "#eb6f92",
"theme.bar.buttons.modules.netstat.icon_background": "#9ccfd8",
"theme.bar.buttons.modules.kbLayout.text": "#9ccfd8"
"theme.bar.buttons.modules.kbLayout.text": "#9ccfd8",
"theme.bar.buttons.modules.power.border": "#eb6f92",
"theme.bar.buttons.modules.weather.border": "#c4a7e7",
"theme.bar.buttons.modules.updates.border": "#30738f",
"theme.bar.buttons.modules.kbLayout.border": "#9ccfd8",
"theme.bar.buttons.modules.netstat.border": "#9ccfd8",
"theme.bar.buttons.modules.storage.border": "#eb6f92",
"theme.bar.buttons.modules.cpu.border": "#eb6f92",
"theme.bar.buttons.modules.ram.border": "#f6c177",
"theme.bar.buttons.notifications.border": "#c4a7e7",
"theme.bar.buttons.clock.border": "#c4a7e7",
"theme.bar.buttons.battery.border": "#f6c177",
"theme.bar.buttons.systray.border": "#26233a",
"theme.bar.buttons.bluetooth.border": "#9ccfd8",
"theme.bar.buttons.network.border": "#c4a7e7",
"theme.bar.buttons.volume.border": "#eb6f92",
"theme.bar.buttons.media.border": "#c4a7e7",
"theme.bar.buttons.windowtitle.border": "#c4a7e7",
"theme.bar.buttons.workspaces.border": "#1f1d2e",
"theme.bar.buttons.dashboard.border": "#f6c177"
}

View File

@@ -324,5 +324,24 @@
"theme.bar.buttons.modules.updates.icon": "#181825",
"theme.bar.buttons.modules.cpu.text": "#eb6f92",
"theme.bar.buttons.modules.netstat.icon_background": "#9ccfd8",
"theme.bar.buttons.modules.kbLayout.text": "#9ccfd8"
"theme.bar.buttons.modules.kbLayout.text": "#9ccfd8",
"theme.bar.buttons.modules.power.border": "#eb6f92",
"theme.bar.buttons.modules.weather.border": "#c4a7e7",
"theme.bar.buttons.modules.updates.border": "#30738f",
"theme.bar.buttons.modules.kbLayout.border": "#9ccfd8",
"theme.bar.buttons.modules.netstat.border": "#9ccfd8",
"theme.bar.buttons.modules.storage.border": "#eb6f92",
"theme.bar.buttons.modules.cpu.border": "#eb6f92",
"theme.bar.buttons.modules.ram.border": "#f6c177",
"theme.bar.buttons.notifications.border": "#c4a7e7",
"theme.bar.buttons.clock.border": "#c4a7e7",
"theme.bar.buttons.battery.border": "#f6c177",
"theme.bar.buttons.systray.border": "#26233a",
"theme.bar.buttons.bluetooth.border": "#9ccfd8",
"theme.bar.buttons.network.border": "#c4a7e7",
"theme.bar.buttons.volume.border": "#eb6f92",
"theme.bar.buttons.media.border": "#c4a7e7",
"theme.bar.buttons.windowtitle.border": "#c4a7e7",
"theme.bar.buttons.workspaces.border": "#1f1d2e",
"theme.bar.buttons.dashboard.border": "#f6c177"
}

View File

@@ -324,5 +324,24 @@
"theme.bar.buttons.modules.cpu.text": "#f7768e",
"theme.bar.buttons.modules.netstat.icon_background": "#9ece6a",
"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.weather.border": "#bb9af7",
"theme.bar.buttons.modules.updates.border": "#bb9af7",
"theme.bar.buttons.modules.kbLayout.border": "#7dcfff",
"theme.bar.buttons.modules.netstat.border": "#9ece6a",
"theme.bar.buttons.modules.storage.border": "#f7768e",
"theme.bar.buttons.modules.cpu.border": "#f7768e",
"theme.bar.buttons.modules.ram.border": "#e0af68",
"theme.bar.buttons.notifications.border": "#bb9af7",
"theme.bar.buttons.clock.border": "#f7768e",
"theme.bar.buttons.battery.border": "#e0af68",
"theme.bar.buttons.systray.border": "#414868",
"theme.bar.buttons.bluetooth.border": "#7dcfff",
"theme.bar.buttons.network.border": "#bb9af7",
"theme.bar.buttons.volume.border": "#f7768e",
"theme.bar.buttons.media.border": "#bb9af7",
"theme.bar.buttons.windowtitle.border": "#f7768e",
"theme.bar.buttons.workspaces.border": "#f7768e",
"theme.bar.buttons.dashboard.border": "#e0af68"
}

View File

@@ -324,5 +324,24 @@
"theme.bar.buttons.modules.updates.icon": "#181825",
"theme.bar.buttons.modules.cpu.text": "#f7768e",
"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.modules.power.border": "#f7768e",
"theme.bar.buttons.modules.weather.border": "#bb9af7",
"theme.bar.buttons.modules.updates.border": "#bb9af7",
"theme.bar.buttons.modules.kbLayout.border": "#7dcfff",
"theme.bar.buttons.modules.netstat.border": "#9ece6a",
"theme.bar.buttons.modules.storage.border": "#f7768e",
"theme.bar.buttons.modules.cpu.border": "#f7768e",
"theme.bar.buttons.modules.ram.border": "#e0af68",
"theme.bar.buttons.notifications.border": "#bb9af7",
"theme.bar.buttons.clock.border": "#f7768e",
"theme.bar.buttons.battery.border": "#e0af68",
"theme.bar.buttons.systray.border": "#414868",
"theme.bar.buttons.bluetooth.border": "#7dcfff",
"theme.bar.buttons.network.border": "#bb9af7",
"theme.bar.buttons.volume.border": "#f7768e",
"theme.bar.buttons.media.border": "#bb9af7",
"theme.bar.buttons.windowtitle.border": "#f7768e",
"theme.bar.buttons.workspaces.border": "#f7768e",
"theme.bar.buttons.dashboard.border": "#e0af68"
}

View File

@@ -40,7 +40,18 @@ export const BarSettings = (): Scrollable<Gtk.Widget, Gtk.Widget> => {
type: 'enum',
enums: ['top', 'bottom'],
}),
Option({
opt: options.theme.bar.buttons.enableBorders,
title: 'Enable Button Borders',
subtitle: 'Enables button borders for all buttons in the bar.',
type: 'boolean',
}),
Option({
opt: options.theme.bar.buttons.borderSize,
title: 'Button Border Size',
subtitle: 'Button border for the individual modules must be enabled first',
type: 'string',
}),
/*
******************************
* SPACING *
@@ -142,6 +153,11 @@ export const BarSettings = (): Scrollable<Gtk.Widget, Gtk.Widget> => {
title: 'Dashboard Menu Icon',
type: 'string',
}),
Option({
opt: options.theme.bar.buttons.dashboard.enableBorder,
title: 'Button Border',
type: 'boolean',
}),
Option({
opt: options.bar.launcher.rightClick,
title: 'Right Click',
@@ -169,6 +185,11 @@ export const BarSettings = (): Scrollable<Gtk.Widget, Gtk.Widget> => {
******************************
*/
Header('Workspaces'),
Option({
opt: options.theme.bar.buttons.workspaces.enableBorder,
title: 'Button Border',
type: 'boolean',
}),
Option({
opt: options.theme.bar.buttons.workspaces.fontSize,
title: 'Indicator Size',
@@ -283,6 +304,11 @@ export const BarSettings = (): Scrollable<Gtk.Widget, Gtk.Widget> => {
******************************
*/
Header('Window Titles'),
Option({
opt: options.theme.bar.buttons.windowtitle.enableBorder,
title: 'Button Border',
type: 'boolean',
}),
Option({
opt: options.bar.windowtitle.custom_title,
title: 'Use Custom Title',
@@ -363,6 +389,11 @@ export const BarSettings = (): Scrollable<Gtk.Widget, Gtk.Widget> => {
******************************
*/
Header('Volume'),
Option({
opt: options.theme.bar.buttons.volume.enableBorder,
title: 'Button Border',
type: 'boolean',
}),
Option({
opt: options.bar.volume.label,
title: 'Show Volume Percentage',
@@ -401,6 +432,11 @@ export const BarSettings = (): Scrollable<Gtk.Widget, Gtk.Widget> => {
******************************
*/
Header('Network'),
Option({
opt: options.theme.bar.buttons.network.enableBorder,
title: 'Button Border',
type: 'boolean',
}),
Option({
opt: options.bar.network.label,
title: 'Show Network Name',
@@ -450,6 +486,11 @@ export const BarSettings = (): Scrollable<Gtk.Widget, Gtk.Widget> => {
******************************
*/
Header('Bluetooth'),
Option({
opt: options.theme.bar.buttons.bluetooth.enableBorder,
title: 'Button Border',
type: 'boolean',
}),
Option({
opt: options.bar.bluetooth.label,
title: 'Show Bluetooth Label',
@@ -488,6 +529,11 @@ export const BarSettings = (): Scrollable<Gtk.Widget, Gtk.Widget> => {
******************************
*/
Header('Battery'),
Option({
opt: options.theme.bar.buttons.battery.enableBorder,
title: 'Button Border',
type: 'boolean',
}),
Option({
opt: options.bar.battery.label,
title: 'Show Battery Percentage',
@@ -526,6 +572,11 @@ export const BarSettings = (): Scrollable<Gtk.Widget, Gtk.Widget> => {
******************************
*/
Header('System Tray'),
Option({
opt: options.theme.bar.buttons.systray.enableBorder,
title: 'Button Border',
type: 'boolean',
}),
Option({
opt: options.bar.systray.ignore,
title: 'Ignore List',
@@ -542,6 +593,11 @@ export const BarSettings = (): Scrollable<Gtk.Widget, Gtk.Widget> => {
******************************
*/
Header('Clock'),
Option({
opt: options.theme.bar.buttons.clock.enableBorder,
title: 'Button Border',
type: 'boolean',
}),
Option({
opt: options.bar.clock.format,
title: 'Clock Format',
@@ -595,6 +651,11 @@ export const BarSettings = (): Scrollable<Gtk.Widget, Gtk.Widget> => {
******************************
*/
Header('Media'),
Option({
opt: options.theme.bar.buttons.media.enableBorder,
title: 'Button Border',
type: 'boolean',
}),
Option({
opt: options.theme.bar.buttons.media.spacing,
title: 'Inner Spacing',
@@ -647,6 +708,11 @@ export const BarSettings = (): Scrollable<Gtk.Widget, Gtk.Widget> => {
******************************
*/
Header('Notifications'),
Option({
opt: options.theme.bar.buttons.notifications.enableBorder,
title: 'Button Border',
type: 'boolean',
}),
Option({
opt: options.bar.notifications.show_total,
title: 'Show Total # of notifications',

View File

@@ -74,8 +74,8 @@ export const BarTheme = (): Scrollable<Child, Attribute> => {
Header('Dashboard Button'),
Option({ opt: options.theme.bar.buttons.dashboard.background, title: 'Background', type: 'color' }),
Option({ opt: options.theme.bar.buttons.dashboard.hover, title: 'Hover', type: 'color' }),
Option({ opt: options.theme.bar.buttons.dashboard.icon, title: 'Icon', type: 'color' }),
Option({ opt: options.theme.bar.buttons.dashboard.border, title: 'Border', type: 'color' }),
Header('Workspaces'),
Option({ opt: options.theme.bar.buttons.workspaces.background, title: 'Background', type: 'color' }),
@@ -109,10 +109,10 @@ export const BarTheme = (): Scrollable<Child, Attribute> => {
title: 'Workspace Underline Color',
type: 'color',
}),
Option({ opt: options.theme.bar.buttons.workspaces.border, title: 'Border', type: 'color' }),
Header('Window Title'),
Option({ opt: options.theme.bar.buttons.windowtitle.background, title: 'Background', type: 'color' }),
Option({ opt: options.theme.bar.buttons.windowtitle.hover, title: 'Hover', type: 'color' }),
Option({ opt: options.theme.bar.buttons.windowtitle.text, title: 'Text', type: 'color' }),
Option({ opt: options.theme.bar.buttons.windowtitle.icon, title: 'Icon', type: 'color' }),
Option({
@@ -122,10 +122,10 @@ export const BarTheme = (): Scrollable<Child, Attribute> => {
"Applies a background color to the icon section of the button.\nRequires 'split' button styling.",
type: 'color',
}),
Option({ opt: options.theme.bar.buttons.windowtitle.border, title: 'Border', type: 'color' }),
Header('Media'),
Option({ opt: options.theme.bar.buttons.media.background, title: 'Background', type: 'color' }),
Option({ opt: options.theme.bar.buttons.media.hover, title: 'Hover', type: 'color' }),
Option({ opt: options.theme.bar.buttons.media.text, title: 'Text', type: 'color' }),
Option({ opt: options.theme.bar.buttons.media.icon, title: 'Icon', type: 'color' }),
Option({
@@ -135,10 +135,10 @@ export const BarTheme = (): Scrollable<Child, Attribute> => {
"Applies a background color to the icon section of the button.\nRequires 'split' button styling.",
type: 'color',
}),
Option({ opt: options.theme.bar.buttons.media.border, title: 'Border', type: 'color' }),
Header('Volume'),
Option({ opt: options.theme.bar.buttons.volume.background, title: 'Background', type: 'color' }),
Option({ opt: options.theme.bar.buttons.volume.hover, title: 'Hover', type: 'color' }),
Option({ opt: options.theme.bar.buttons.volume.text, title: 'Text', type: 'color' }),
Option({ opt: options.theme.bar.buttons.volume.icon, title: 'Icon', type: 'color' }),
Option({
@@ -148,10 +148,10 @@ export const BarTheme = (): Scrollable<Child, Attribute> => {
"Applies a background color to the icon section of the button.\nRequires 'split' button styling.",
type: 'color',
}),
Option({ opt: options.theme.bar.buttons.volume.border, title: 'Border', type: 'color' }),
Header('Network'),
Option({ opt: options.theme.bar.buttons.network.background, title: 'Background', type: 'color' }),
Option({ opt: options.theme.bar.buttons.network.hover, title: 'Hover', type: 'color' }),
Option({ opt: options.theme.bar.buttons.network.text, title: 'Text', type: 'color' }),
Option({ opt: options.theme.bar.buttons.network.icon, title: 'Icon', type: 'color' }),
Option({
@@ -161,10 +161,10 @@ export const BarTheme = (): Scrollable<Child, Attribute> => {
"Applies a background color to the icon section of the button.\nRequires 'split' button styling.",
type: 'color',
}),
Option({ opt: options.theme.bar.buttons.network.border, title: 'Border', type: 'color' }),
Header('Bluetooth'),
Option({ opt: options.theme.bar.buttons.bluetooth.background, title: 'Background', type: 'color' }),
Option({ opt: options.theme.bar.buttons.bluetooth.hover, title: 'Hover', type: 'color' }),
Option({ opt: options.theme.bar.buttons.bluetooth.text, title: 'Text', type: 'color' }),
Option({ opt: options.theme.bar.buttons.bluetooth.icon, title: 'Icon', type: 'color' }),
Option({
@@ -174,14 +174,13 @@ export const BarTheme = (): Scrollable<Child, Attribute> => {
"Applies a background color to the icon section of the button.\nRequires 'split' button styling.",
type: 'color',
}),
Option({ opt: options.theme.bar.buttons.bluetooth.border, title: 'Border', type: 'color' }),
Header('System Tray'),
Option({ opt: options.theme.bar.buttons.systray.background, title: 'Background', type: 'color' }),
Option({ opt: options.theme.bar.buttons.systray.hover, title: 'Hover', type: 'color' }),
Header('Battery'),
Option({ opt: options.theme.bar.buttons.battery.background, title: 'Background', type: 'color' }),
Option({ opt: options.theme.bar.buttons.battery.hover, title: 'Hover', type: 'color' }),
Option({ opt: options.theme.bar.buttons.battery.text, title: 'Text', type: 'color' }),
Option({ opt: options.theme.bar.buttons.battery.icon, title: 'Icon', type: 'color' }),
Option({
@@ -191,10 +190,10 @@ export const BarTheme = (): Scrollable<Child, Attribute> => {
"Applies a background color to the icon section of the button.\nRequires 'split' button styling.",
type: 'color',
}),
Option({ opt: options.theme.bar.buttons.battery.border, title: 'Border', type: 'color' }),
Header('Clock'),
Option({ opt: options.theme.bar.buttons.clock.background, title: 'Background', type: 'color' }),
Option({ opt: options.theme.bar.buttons.clock.hover, title: 'Hover', type: 'color' }),
Option({ opt: options.theme.bar.buttons.clock.text, title: 'Text', type: 'color' }),
Option({ opt: options.theme.bar.buttons.clock.icon, title: 'Icon', type: 'color' }),
Option({
@@ -204,10 +203,10 @@ export const BarTheme = (): Scrollable<Child, Attribute> => {
"Applies a background color to the icon section of the button.\nRequires 'split' button styling.",
type: 'color',
}),
Option({ opt: options.theme.bar.buttons.clock.border, title: 'Border', type: 'color' }),
Header('Notifications'),
Option({ opt: options.theme.bar.buttons.notifications.background, title: 'Background', type: 'color' }),
Option({ opt: options.theme.bar.buttons.notifications.hover, title: 'Hover', type: 'color' }),
Option({
opt: options.theme.bar.buttons.notifications.total,
title: 'Notification Count',
@@ -221,6 +220,7 @@ export const BarTheme = (): Scrollable<Child, Attribute> => {
"Applies a background color to the icon section of the button.\nRequires 'split' button styling.",
type: 'color',
}),
Option({ opt: options.theme.bar.buttons.notifications.border, title: 'Border', type: 'color' }),
],
}),
});