Added and updated themes for hypridle module. (#522)
* Update idle icon size * Theming updates for hypridle
This commit is contained in:
@@ -388,10 +388,10 @@ const options = mkOptions(OPTIONS, {
|
|||||||
},
|
},
|
||||||
hypridle: {
|
hypridle: {
|
||||||
enableBorder: opt(false),
|
enableBorder: opt(false),
|
||||||
border: opt(colors.peach),
|
border: opt(colors.pink),
|
||||||
background: opt(colors.base2),
|
background: opt(colors.base2),
|
||||||
text: opt(colors.peach),
|
text: opt(colors.pink),
|
||||||
icon: opt(colors.peach),
|
icon: opt(colors.pink),
|
||||||
icon_background: opt(colors.base2),
|
icon_background: opt(colors.base2),
|
||||||
spacing: opt('0.45em'),
|
spacing: opt('0.45em'),
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -398,7 +398,11 @@ const main = () => {
|
|||||||
// Define special key mappings
|
// Define special key mappings
|
||||||
// Format: "target_key": "source_key"
|
// Format: "target_key": "source_key"
|
||||||
const specialKeyMappings = {
|
const specialKeyMappings = {
|
||||||
'theme.bar.menus.menu.network.switch.enabled': 'theme.bar.menus.menu.network.iconbuttons.active',
|
'theme.bar.buttons.modules.hypridle.icon': 'theme.bar.buttons.modules.storage.icon',
|
||||||
|
'theme.bar.buttons.modules.hypridle.background': 'theme.bar.buttons.modules.storage.background',
|
||||||
|
'theme.bar.buttons.modules.hypridle.icon_background': 'theme.bar.buttons.modules.storage.icon_background',
|
||||||
|
'theme.bar.buttons.modules.hypridle.text': 'theme.bar.buttons.modules.storage.text',
|
||||||
|
'theme.bar.buttons.modules.hypridle.border': 'theme.bar.buttons.modules.storage.border',
|
||||||
// Add more special mappings here if needed
|
// Add more special mappings here if needed
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -422,10 +422,9 @@
|
|||||||
1.3em //
|
1.3em //
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* #################################
|
* #################################
|
||||||
* # Hypridle Styling #
|
* # Hypridle Styling #
|
||||||
* #################################
|
* #################################
|
||||||
*/
|
*/
|
||||||
@include styleModule(
|
@include styleModule(
|
||||||
@@ -447,5 +446,5 @@
|
|||||||
// border color
|
// border color
|
||||||
$bar-buttons-modules-hypridle-border,
|
$bar-buttons-modules-hypridle-border,
|
||||||
// custom font size
|
// custom font size
|
||||||
1em //
|
1.075em //
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,354 +1,358 @@
|
|||||||
{
|
{
|
||||||
"theme.bar.menus.background": "#232634",
|
"theme.bar.menus.background": "#232634",
|
||||||
"theme.bar.background": "#232634",
|
"theme.bar.background": "#232634",
|
||||||
"theme.bar.buttons.media.icon": "#babbf1",
|
"theme.bar.buttons.media.icon": "#babbf1",
|
||||||
"theme.bar.buttons.media.text": "#babbf1",
|
"theme.bar.buttons.media.text": "#babbf1",
|
||||||
"theme.bar.buttons.icon": "#babbf1",
|
"theme.bar.buttons.icon": "#babbf1",
|
||||||
"theme.bar.buttons.text": "#babbf1",
|
"theme.bar.buttons.text": "#babbf1",
|
||||||
"theme.bar.buttons.hover": "#51576d",
|
"theme.bar.buttons.hover": "#51576d",
|
||||||
"theme.bar.buttons.background": "#303446",
|
"theme.bar.buttons.background": "#303446",
|
||||||
"theme.bar.menus.text": "#c6d0f5",
|
"theme.bar.menus.text": "#c6d0f5",
|
||||||
"theme.bar.menus.border.color": "#414559",
|
"theme.bar.menus.border.color": "#414559",
|
||||||
"theme.bar.buttons.media.background": "#303446",
|
"theme.bar.buttons.media.background": "#303446",
|
||||||
"theme.bar.menus.menu.volume.text": "#c6d0f5",
|
"theme.bar.menus.menu.volume.text": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.volume.card.color": "#292c3c",
|
"theme.bar.menus.menu.volume.card.color": "#292c3c",
|
||||||
"theme.bar.menus.menu.volume.label.color": "#ea999c",
|
"theme.bar.menus.menu.volume.label.color": "#ea999c",
|
||||||
"theme.bar.menus.popover.text": "#babbf1",
|
"theme.bar.menus.popover.text": "#babbf1",
|
||||||
"theme.bar.menus.popover.background": "#232634",
|
"theme.bar.menus.popover.background": "#232634",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#e78284",
|
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#e78284",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#e78284",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#e78284",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#a6d189",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#a6d189",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#232634",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#232634",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#c6d0f5",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#babbf1",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#babbf1",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#414559",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#414559",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#232634",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#232634",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#292c3c",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#292c3c",
|
||||||
"theme.bar.menus.menu.notifications.switch.puck": "#51576d",
|
"theme.bar.menus.menu.notifications.switch.puck": "#51576d",
|
||||||
"theme.bar.menus.menu.notifications.switch.disabled": "#414559",
|
"theme.bar.menus.menu.notifications.switch.disabled": "#414559",
|
||||||
"theme.bar.menus.menu.notifications.switch.enabled": "#babbf1",
|
"theme.bar.menus.menu.notifications.switch.enabled": "#babbf1",
|
||||||
"theme.bar.menus.menu.notifications.clear": "#e78284",
|
"theme.bar.menus.menu.notifications.clear": "#e78284",
|
||||||
"theme.bar.menus.menu.notifications.switch_divider": "#51576d",
|
"theme.bar.menus.menu.notifications.switch_divider": "#51576d",
|
||||||
"theme.bar.menus.menu.notifications.border": "#414559",
|
"theme.bar.menus.menu.notifications.border": "#414559",
|
||||||
"theme.bar.menus.menu.notifications.card": "#292c3c",
|
"theme.bar.menus.menu.notifications.card": "#292c3c",
|
||||||
"theme.bar.menus.menu.notifications.background": "#232634",
|
"theme.bar.menus.menu.notifications.background": "#232634",
|
||||||
"theme.bar.menus.menu.notifications.no_notifications_label": "#414559",
|
"theme.bar.menus.menu.notifications.no_notifications_label": "#414559",
|
||||||
"theme.bar.menus.menu.notifications.label": "#babbf1",
|
"theme.bar.menus.menu.notifications.label": "#babbf1",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#f4b8e4",
|
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#f4b8e4",
|
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#f4b8e4",
|
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#a6d189",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#a6d189",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#a6d189",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#a6d189",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#a6d189",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#a6d189",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#e5c890",
|
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#e5c890",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#e5c890",
|
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#e5c890",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#e5c890",
|
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#e5c890",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#ea999c",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#ea999c",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#ea999c",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#ea999c",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#ea999c",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#ea999c",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#51576d",
|
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#51576d",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#babbf1",
|
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#babbf1",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#ca9ee6",
|
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#ca9ee6",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#81c8be",
|
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#81c8be",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#ea999c",
|
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#ea999c",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#e5c890",
|
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#e5c890",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#f4b8e4",
|
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.text": "#232634",
|
"theme.bar.menus.menu.dashboard.controls.input.text": "#232634",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.background": "#f4b8e4",
|
"theme.bar.menus.menu.dashboard.controls.input.background": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.text": "#232634",
|
"theme.bar.menus.menu.dashboard.controls.volume.text": "#232634",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.background": "#ea999c",
|
"theme.bar.menus.menu.dashboard.controls.volume.background": "#ea999c",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#232634",
|
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#232634",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#e5c890",
|
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#e5c890",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#232634",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#232634",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#99d1db",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#99d1db",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#232634",
|
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#232634",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#ca9ee6",
|
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#ca9ee6",
|
||||||
"theme.bar.menus.menu.dashboard.controls.disabled": "#626880",
|
"theme.bar.menus.menu.dashboard.controls.disabled": "#626880",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#a6d189",
|
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#a6d189",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.text": "#232634",
|
"theme.bar.menus.menu.dashboard.shortcuts.text": "#232634",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.background": "#babbf1",
|
"theme.bar.menus.menu.dashboard.shortcuts.background": "#babbf1",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#99d1db",
|
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#99d1db",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.logout": "#a6d189",
|
"theme.bar.menus.menu.dashboard.powermenu.logout": "#a6d189",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.restart": "#ef9f76",
|
"theme.bar.menus.menu.dashboard.powermenu.restart": "#ef9f76",
|
||||||
"theme.bar.menus.menu.dashboard.profile.name": "#f4b8e4",
|
"theme.bar.menus.menu.dashboard.profile.name": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.dashboard.border.color": "#414559",
|
"theme.bar.menus.menu.dashboard.border.color": "#414559",
|
||||||
"theme.bar.menus.menu.dashboard.background.color": "#232634",
|
"theme.bar.menus.menu.dashboard.background.color": "#232634",
|
||||||
"theme.bar.menus.menu.dashboard.card.color": "#292c3c",
|
"theme.bar.menus.menu.dashboard.card.color": "#292c3c",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#f4b8e4",
|
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.icon": "#f4b8e4",
|
"theme.bar.menus.menu.clock.weather.hourly.icon": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.time": "#f4b8e4",
|
"theme.bar.menus.menu.clock.weather.hourly.time": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#99d1db",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#99d1db",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#8caaee",
|
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#8caaee",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#babbf1",
|
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#babbf1",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#ef9f76",
|
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#ef9f76",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#e78284",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#e78284",
|
||||||
"theme.bar.menus.menu.clock.weather.stats": "#f4b8e4",
|
"theme.bar.menus.menu.clock.weather.stats": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.clock.weather.status": "#81c8be",
|
"theme.bar.menus.menu.clock.weather.status": "#81c8be",
|
||||||
"theme.bar.menus.menu.clock.weather.temperature": "#c6d0f5",
|
"theme.bar.menus.menu.clock.weather.temperature": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.clock.weather.icon": "#f4b8e4",
|
"theme.bar.menus.menu.clock.weather.icon": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.clock.calendar.contextdays": "#626880",
|
"theme.bar.menus.menu.clock.calendar.contextdays": "#626880",
|
||||||
"theme.bar.menus.menu.clock.calendar.days": "#c6d0f5",
|
"theme.bar.menus.menu.clock.calendar.days": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.clock.calendar.currentday": "#f4b8e4",
|
"theme.bar.menus.menu.clock.calendar.currentday": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.clock.calendar.paginator": "#f4b8e4",
|
"theme.bar.menus.menu.clock.calendar.paginator": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.clock.calendar.weekdays": "#f4b8e4",
|
"theme.bar.menus.menu.clock.calendar.weekdays": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.clock.calendar.yearmonth": "#81c8be",
|
"theme.bar.menus.menu.clock.calendar.yearmonth": "#81c8be",
|
||||||
"theme.bar.menus.menu.clock.time.timeperiod": "#81c8be",
|
"theme.bar.menus.menu.clock.time.timeperiod": "#81c8be",
|
||||||
"theme.bar.menus.menu.clock.time.time": "#f4b8e4",
|
"theme.bar.menus.menu.clock.time.time": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.clock.text": "#c6d0f5",
|
"theme.bar.menus.menu.clock.text": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.clock.border.color": "#414559",
|
"theme.bar.menus.menu.clock.border.color": "#414559",
|
||||||
"theme.bar.menus.menu.clock.background.color": "#232634",
|
"theme.bar.menus.menu.clock.background.color": "#232634",
|
||||||
"theme.bar.menus.menu.clock.card.color": "#292c3c",
|
"theme.bar.menus.menu.clock.card.color": "#292c3c",
|
||||||
"theme.bar.menus.menu.battery.slider.puck": "#737994",
|
"theme.bar.menus.menu.battery.slider.puck": "#737994",
|
||||||
"theme.bar.menus.menu.battery.slider.backgroundhover": "#51576d",
|
"theme.bar.menus.menu.battery.slider.backgroundhover": "#51576d",
|
||||||
"theme.bar.menus.menu.battery.slider.background": "#626880",
|
"theme.bar.menus.menu.battery.slider.background": "#626880",
|
||||||
"theme.bar.menus.menu.battery.slider.primary": "#e5c890",
|
"theme.bar.menus.menu.battery.slider.primary": "#e5c890",
|
||||||
"theme.bar.menus.menu.battery.icons.active": "#e5c890",
|
"theme.bar.menus.menu.battery.icons.active": "#e5c890",
|
||||||
"theme.bar.menus.menu.battery.icons.passive": "#949cbb",
|
"theme.bar.menus.menu.battery.icons.passive": "#949cbb",
|
||||||
"theme.bar.menus.menu.battery.listitems.active": "#e5c890",
|
"theme.bar.menus.menu.battery.listitems.active": "#e5c890",
|
||||||
"theme.bar.menus.menu.battery.listitems.passive": "#c6d0f5",
|
"theme.bar.menus.menu.battery.listitems.passive": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.battery.text": "#c6d0f5",
|
"theme.bar.menus.menu.battery.text": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.battery.label.color": "#e5c890",
|
"theme.bar.menus.menu.battery.label.color": "#e5c890",
|
||||||
"theme.bar.menus.menu.battery.border.color": "#414559",
|
"theme.bar.menus.menu.battery.border.color": "#414559",
|
||||||
"theme.bar.menus.menu.battery.background.color": "#232634",
|
"theme.bar.menus.menu.battery.background.color": "#232634",
|
||||||
"theme.bar.menus.menu.battery.card.color": "#292c3c",
|
"theme.bar.menus.menu.battery.card.color": "#292c3c",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#292c3c",
|
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#292c3c",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.text": "#c6d0f5",
|
"theme.bar.menus.menu.systray.dropdownmenu.text": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.background": "#232634",
|
"theme.bar.menus.menu.systray.dropdownmenu.background": "#232634",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#99d1db",
|
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#99d1db",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#c6d0f5",
|
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.active": "#99d1db",
|
"theme.bar.menus.menu.bluetooth.icons.active": "#99d1db",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.passive": "#949cbb",
|
"theme.bar.menus.menu.bluetooth.icons.passive": "#949cbb",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.active": "#99d1db",
|
"theme.bar.menus.menu.bluetooth.listitems.active": "#99d1db",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.passive": "#c6d0f5",
|
"theme.bar.menus.menu.bluetooth.listitems.passive": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.puck": "#51576d",
|
"theme.bar.menus.menu.bluetooth.switch.puck": "#51576d",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.disabled": "#414559",
|
"theme.bar.menus.menu.bluetooth.switch.disabled": "#414559",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.enabled": "#99d1db",
|
"theme.bar.menus.menu.bluetooth.switch.enabled": "#99d1db",
|
||||||
"theme.bar.menus.menu.bluetooth.switch_divider": "#51576d",
|
"theme.bar.menus.menu.bluetooth.switch_divider": "#51576d",
|
||||||
"theme.bar.menus.menu.bluetooth.status": "#737994",
|
"theme.bar.menus.menu.bluetooth.status": "#737994",
|
||||||
"theme.bar.menus.menu.bluetooth.text": "#c6d0f5",
|
"theme.bar.menus.menu.bluetooth.text": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.bluetooth.label.color": "#99d1db",
|
"theme.bar.menus.menu.bluetooth.label.color": "#99d1db",
|
||||||
"theme.bar.menus.menu.bluetooth.border.color": "#414559",
|
"theme.bar.menus.menu.bluetooth.border.color": "#414559",
|
||||||
"theme.bar.menus.menu.bluetooth.background.color": "#232634",
|
"theme.bar.menus.menu.bluetooth.background.color": "#232634",
|
||||||
"theme.bar.menus.menu.bluetooth.card.color": "#292c3c",
|
"theme.bar.menus.menu.bluetooth.card.color": "#292c3c",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.active": "#ca9ee6",
|
"theme.bar.menus.menu.network.iconbuttons.active": "#ca9ee6",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.passive": "#c6d0f5",
|
"theme.bar.menus.menu.network.iconbuttons.passive": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.network.icons.active": "#ca9ee6",
|
"theme.bar.menus.menu.network.icons.active": "#ca9ee6",
|
||||||
"theme.bar.menus.menu.network.icons.passive": "#949cbb",
|
"theme.bar.menus.menu.network.icons.passive": "#949cbb",
|
||||||
"theme.bar.menus.menu.network.listitems.active": "#ca9ee6",
|
"theme.bar.menus.menu.network.listitems.active": "#ca9ee6",
|
||||||
"theme.bar.menus.menu.network.listitems.passive": "#c6d0f5",
|
"theme.bar.menus.menu.network.listitems.passive": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.network.status.color": "#737994",
|
"theme.bar.menus.menu.network.status.color": "#737994",
|
||||||
"theme.bar.menus.menu.network.text": "#c6d0f5",
|
"theme.bar.menus.menu.network.text": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.network.label.color": "#ca9ee6",
|
"theme.bar.menus.menu.network.label.color": "#ca9ee6",
|
||||||
"theme.bar.menus.menu.network.border.color": "#414559",
|
"theme.bar.menus.menu.network.border.color": "#414559",
|
||||||
"theme.bar.menus.menu.network.background.color": "#232634",
|
"theme.bar.menus.menu.network.background.color": "#232634",
|
||||||
"theme.bar.menus.menu.network.card.color": "#292c3c",
|
"theme.bar.menus.menu.network.card.color": "#292c3c",
|
||||||
"theme.bar.menus.menu.volume.input_slider.puck": "#626880",
|
"theme.bar.menus.menu.volume.input_slider.puck": "#626880",
|
||||||
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#51576d",
|
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#51576d",
|
||||||
"theme.bar.menus.menu.volume.input_slider.background": "#626880",
|
"theme.bar.menus.menu.volume.input_slider.background": "#626880",
|
||||||
"theme.bar.menus.menu.volume.input_slider.primary": "#ea999c",
|
"theme.bar.menus.menu.volume.input_slider.primary": "#ea999c",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.puck": "#626880",
|
"theme.bar.menus.menu.volume.audio_slider.puck": "#626880",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#51576d",
|
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#51576d",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.background": "#626880",
|
"theme.bar.menus.menu.volume.audio_slider.background": "#626880",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.primary": "#ea999c",
|
"theme.bar.menus.menu.volume.audio_slider.primary": "#ea999c",
|
||||||
"theme.bar.menus.menu.volume.icons.active": "#ea999c",
|
"theme.bar.menus.menu.volume.icons.active": "#ea999c",
|
||||||
"theme.bar.menus.menu.volume.icons.passive": "#949cbb",
|
"theme.bar.menus.menu.volume.icons.passive": "#949cbb",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.active": "#ea999c",
|
"theme.bar.menus.menu.volume.iconbutton.active": "#ea999c",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.passive": "#c6d0f5",
|
"theme.bar.menus.menu.volume.iconbutton.passive": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.volume.listitems.active": "#ea999c",
|
"theme.bar.menus.menu.volume.listitems.active": "#ea999c",
|
||||||
"theme.bar.menus.menu.volume.listitems.passive": "#c6d0f5",
|
"theme.bar.menus.menu.volume.listitems.passive": "#c6d0f5",
|
||||||
"theme.bar.menus.menu.volume.border.color": "#414559",
|
"theme.bar.menus.menu.volume.border.color": "#414559",
|
||||||
"theme.bar.menus.menu.volume.background.color": "#232634",
|
"theme.bar.menus.menu.volume.background.color": "#232634",
|
||||||
"theme.bar.menus.menu.media.slider.puck": "#737994",
|
"theme.bar.menus.menu.media.slider.puck": "#737994",
|
||||||
"theme.bar.menus.menu.media.slider.backgroundhover": "#51576d",
|
"theme.bar.menus.menu.media.slider.backgroundhover": "#51576d",
|
||||||
"theme.bar.menus.menu.media.slider.background": "#626880",
|
"theme.bar.menus.menu.media.slider.background": "#626880",
|
||||||
"theme.bar.menus.menu.media.slider.primary": "#f4b8e4",
|
"theme.bar.menus.menu.media.slider.primary": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.media.buttons.text": "#232634",
|
"theme.bar.menus.menu.media.buttons.text": "#232634",
|
||||||
"theme.bar.menus.menu.media.buttons.background": "#babbf1",
|
"theme.bar.menus.menu.media.buttons.background": "#babbf1",
|
||||||
"theme.bar.menus.menu.media.buttons.enabled": "#81c8be",
|
"theme.bar.menus.menu.media.buttons.enabled": "#81c8be",
|
||||||
"theme.bar.menus.menu.media.buttons.inactive": "#626880",
|
"theme.bar.menus.menu.media.buttons.inactive": "#626880",
|
||||||
"theme.bar.menus.menu.media.border.color": "#414559",
|
"theme.bar.menus.menu.media.border.color": "#414559",
|
||||||
"theme.bar.menus.menu.media.background.color": "#232634",
|
"theme.bar.menus.menu.media.background.color": "#232634",
|
||||||
"theme.bar.menus.menu.media.album": "#f4b8e4",
|
"theme.bar.menus.menu.media.album": "#f4b8e4",
|
||||||
"theme.bar.menus.menu.media.artist": "#81c8be",
|
"theme.bar.menus.menu.media.artist": "#81c8be",
|
||||||
"theme.bar.menus.menu.media.song": "#babbf1",
|
"theme.bar.menus.menu.media.song": "#babbf1",
|
||||||
"theme.bar.menus.tooltip.text": "#c6d0f5",
|
"theme.bar.menus.tooltip.text": "#c6d0f5",
|
||||||
"theme.bar.menus.tooltip.background": "#232634",
|
"theme.bar.menus.tooltip.background": "#232634",
|
||||||
"theme.bar.menus.dropdownmenu.divider": "#292c3c",
|
"theme.bar.menus.dropdownmenu.divider": "#292c3c",
|
||||||
"theme.bar.menus.dropdownmenu.text": "#c6d0f5",
|
"theme.bar.menus.dropdownmenu.text": "#c6d0f5",
|
||||||
"theme.bar.menus.dropdownmenu.background": "#232634",
|
"theme.bar.menus.dropdownmenu.background": "#232634",
|
||||||
"theme.bar.menus.slider.puck": "#737994",
|
"theme.bar.menus.slider.puck": "#737994",
|
||||||
"theme.bar.menus.slider.backgroundhover": "#51576d",
|
"theme.bar.menus.slider.backgroundhover": "#51576d",
|
||||||
"theme.bar.menus.slider.background": "#626880",
|
"theme.bar.menus.slider.background": "#626880",
|
||||||
"theme.bar.menus.slider.primary": "#babbf1",
|
"theme.bar.menus.slider.primary": "#babbf1",
|
||||||
"theme.bar.menus.progressbar.background": "#51576d",
|
"theme.bar.menus.progressbar.background": "#51576d",
|
||||||
"theme.bar.menus.progressbar.foreground": "#babbf1",
|
"theme.bar.menus.progressbar.foreground": "#babbf1",
|
||||||
"theme.bar.menus.iconbuttons.active": "#babbf1",
|
"theme.bar.menus.iconbuttons.active": "#babbf1",
|
||||||
"theme.bar.menus.iconbuttons.passive": "#c6d0f5",
|
"theme.bar.menus.iconbuttons.passive": "#c6d0f5",
|
||||||
"theme.bar.menus.buttons.text": "#232634",
|
"theme.bar.menus.buttons.text": "#232634",
|
||||||
"theme.bar.menus.buttons.disabled": "#626880",
|
"theme.bar.menus.buttons.disabled": "#626880",
|
||||||
"theme.bar.menus.buttons.active": "#f4b8e4",
|
"theme.bar.menus.buttons.active": "#f4b8e4",
|
||||||
"theme.bar.menus.buttons.default": "#babbf1",
|
"theme.bar.menus.buttons.default": "#babbf1",
|
||||||
"theme.bar.menus.switch.puck": "#51576d",
|
"theme.bar.menus.switch.puck": "#51576d",
|
||||||
"theme.bar.menus.switch.disabled": "#414559",
|
"theme.bar.menus.switch.disabled": "#414559",
|
||||||
"theme.bar.menus.switch.enabled": "#babbf1",
|
"theme.bar.menus.switch.enabled": "#babbf1",
|
||||||
"theme.bar.menus.icons.active": "#babbf1",
|
"theme.bar.menus.icons.active": "#babbf1",
|
||||||
"theme.bar.menus.icons.passive": "#626880",
|
"theme.bar.menus.icons.passive": "#626880",
|
||||||
"theme.bar.menus.listitems.active": "#babbf1",
|
"theme.bar.menus.listitems.active": "#babbf1",
|
||||||
"theme.bar.menus.listitems.passive": "#c6d0f5",
|
"theme.bar.menus.listitems.passive": "#c6d0f5",
|
||||||
"theme.bar.menus.label": "#babbf1",
|
"theme.bar.menus.label": "#babbf1",
|
||||||
"theme.bar.menus.feinttext": "#414559",
|
"theme.bar.menus.feinttext": "#414559",
|
||||||
"theme.bar.menus.dimtext": "#626880",
|
"theme.bar.menus.dimtext": "#626880",
|
||||||
"theme.bar.menus.cards": "#292c3c",
|
"theme.bar.menus.cards": "#292c3c",
|
||||||
"theme.bar.buttons.notifications.total": "#babbf1",
|
"theme.bar.buttons.notifications.total": "#babbf1",
|
||||||
"theme.bar.buttons.notifications.icon": "#babbf1",
|
"theme.bar.buttons.notifications.icon": "#babbf1",
|
||||||
"theme.bar.buttons.notifications.background": "#303446",
|
"theme.bar.buttons.notifications.background": "#303446",
|
||||||
"theme.bar.buttons.clock.icon": "#f4b8e4",
|
"theme.bar.buttons.clock.icon": "#f4b8e4",
|
||||||
"theme.bar.buttons.clock.text": "#f4b8e4",
|
"theme.bar.buttons.clock.text": "#f4b8e4",
|
||||||
"theme.bar.buttons.clock.background": "#303446",
|
"theme.bar.buttons.clock.background": "#303446",
|
||||||
"theme.bar.buttons.battery.icon": "#e5c890",
|
"theme.bar.buttons.battery.icon": "#e5c890",
|
||||||
"theme.bar.buttons.battery.text": "#e5c890",
|
"theme.bar.buttons.battery.text": "#e5c890",
|
||||||
"theme.bar.buttons.battery.background": "#303446",
|
"theme.bar.buttons.battery.background": "#303446",
|
||||||
"theme.bar.buttons.systray.background": "#303446",
|
"theme.bar.buttons.systray.background": "#303446",
|
||||||
"theme.bar.buttons.bluetooth.icon": "#99d1db",
|
"theme.bar.buttons.bluetooth.icon": "#99d1db",
|
||||||
"theme.bar.buttons.bluetooth.text": "#99d1db",
|
"theme.bar.buttons.bluetooth.text": "#99d1db",
|
||||||
"theme.bar.buttons.bluetooth.background": "#303446",
|
"theme.bar.buttons.bluetooth.background": "#303446",
|
||||||
"theme.bar.buttons.network.icon": "#ca9ee6",
|
"theme.bar.buttons.network.icon": "#ca9ee6",
|
||||||
"theme.bar.buttons.network.text": "#ca9ee6",
|
"theme.bar.buttons.network.text": "#ca9ee6",
|
||||||
"theme.bar.buttons.network.background": "#303446",
|
"theme.bar.buttons.network.background": "#303446",
|
||||||
"theme.bar.buttons.volume.icon": "#ea999c",
|
"theme.bar.buttons.volume.icon": "#ea999c",
|
||||||
"theme.bar.buttons.volume.text": "#ea999c",
|
"theme.bar.buttons.volume.text": "#ea999c",
|
||||||
"theme.bar.buttons.volume.background": "#303446",
|
"theme.bar.buttons.volume.background": "#303446",
|
||||||
"theme.bar.buttons.windowtitle.icon": "#f4b8e4",
|
"theme.bar.buttons.windowtitle.icon": "#f4b8e4",
|
||||||
"theme.bar.buttons.windowtitle.text": "#f4b8e4",
|
"theme.bar.buttons.windowtitle.text": "#f4b8e4",
|
||||||
"theme.bar.buttons.windowtitle.background": "#303446",
|
"theme.bar.buttons.windowtitle.background": "#303446",
|
||||||
"theme.bar.buttons.workspaces.active": "#f4b8e4",
|
"theme.bar.buttons.workspaces.active": "#f4b8e4",
|
||||||
"theme.bar.buttons.workspaces.occupied": "#eebebe",
|
"theme.bar.buttons.workspaces.occupied": "#eebebe",
|
||||||
"theme.bar.buttons.workspaces.available": "#99d1db",
|
"theme.bar.buttons.workspaces.available": "#99d1db",
|
||||||
"theme.bar.buttons.workspaces.hover": "#51576d",
|
"theme.bar.buttons.workspaces.hover": "#51576d",
|
||||||
"theme.bar.buttons.workspaces.background": "#303446",
|
"theme.bar.buttons.workspaces.background": "#303446",
|
||||||
"theme.bar.buttons.dashboard.icon": "#e5c890",
|
"theme.bar.buttons.dashboard.icon": "#e5c890",
|
||||||
"theme.bar.buttons.dashboard.background": "#303446",
|
"theme.bar.buttons.dashboard.background": "#303446",
|
||||||
"theme.osd.label": "#babbf1",
|
"theme.osd.label": "#babbf1",
|
||||||
"theme.osd.icon": "#232634",
|
"theme.osd.icon": "#232634",
|
||||||
"theme.osd.bar_overflow_color": "#e78284",
|
"theme.osd.bar_overflow_color": "#e78284",
|
||||||
"theme.osd.bar_empty_color": "#414559",
|
"theme.osd.bar_empty_color": "#414559",
|
||||||
"theme.osd.bar_color": "#babbf1",
|
"theme.osd.bar_color": "#babbf1",
|
||||||
"theme.osd.icon_container": "#babbf1",
|
"theme.osd.icon_container": "#babbf1",
|
||||||
"theme.osd.bar_container": "#232634",
|
"theme.osd.bar_container": "#232634",
|
||||||
"theme.notification.close_button.label": "#232634",
|
"theme.notification.close_button.label": "#232634",
|
||||||
"theme.notification.close_button.background": "#e78284",
|
"theme.notification.close_button.background": "#e78284",
|
||||||
"theme.notification.labelicon": "#babbf1",
|
"theme.notification.labelicon": "#babbf1",
|
||||||
"theme.notification.text": "#c6d0f5",
|
"theme.notification.text": "#c6d0f5",
|
||||||
"theme.notification.time": "#838ba7",
|
"theme.notification.time": "#838ba7",
|
||||||
"theme.notification.border": "#414559",
|
"theme.notification.border": "#414559",
|
||||||
"theme.notification.label": "#babbf1",
|
"theme.notification.label": "#babbf1",
|
||||||
"theme.notification.actions.text": "#232634",
|
"theme.notification.actions.text": "#232634",
|
||||||
"theme.notification.actions.background": "#babbf1",
|
"theme.notification.actions.background": "#babbf1",
|
||||||
"theme.notification.background": "#232634",
|
"theme.notification.background": "#232634",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
|
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#c678dd",
|
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#c678dd",
|
||||||
"theme.bar.menus.menu.media.card.color": "#292c3c",
|
"theme.bar.menus.menu.media.card.color": "#292c3c",
|
||||||
"theme.bar.menus.check_radio_button.background": "#232534",
|
"theme.bar.menus.check_radio_button.background": "#232534",
|
||||||
"theme.bar.menus.check_radio_button.active": "#b9baf1",
|
"theme.bar.menus.check_radio_button.active": "#b9baf1",
|
||||||
"theme.bar.buttons.style": "default",
|
"theme.bar.buttons.style": "default",
|
||||||
"theme.bar.menus.menu.notifications.pager.button": "#babbf1",
|
"theme.bar.menus.menu.notifications.pager.button": "#babbf1",
|
||||||
"theme.bar.menus.menu.notifications.scrollbar.color": "#babbf1",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#babbf1",
|
||||||
"theme.bar.menus.menu.notifications.pager.label": "#949cbb",
|
"theme.bar.menus.menu.notifications.pager.label": "#949cbb",
|
||||||
"theme.bar.menus.menu.notifications.pager.background": "#232634",
|
"theme.bar.menus.menu.notifications.pager.background": "#232634",
|
||||||
"theme.bar.buttons.clock.icon_background": "#f4b8e4",
|
"theme.bar.buttons.clock.icon_background": "#f4b8e4",
|
||||||
"theme.bar.buttons.modules.ram.icon": "#e5c890",
|
"theme.bar.buttons.modules.ram.icon": "#e5c890",
|
||||||
"theme.bar.buttons.modules.storage.icon_background": "#e78284",
|
"theme.bar.buttons.modules.storage.icon_background": "#e78284",
|
||||||
"theme.bar.menus.popover.border": "#232634",
|
"theme.bar.menus.popover.border": "#232634",
|
||||||
"theme.bar.buttons.volume.icon_background": "#ea999c",
|
"theme.bar.buttons.volume.icon_background": "#ea999c",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#99d1db",
|
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#99d1db",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.text": "#ef9f76",
|
"theme.bar.menus.menu.power.buttons.restart.text": "#ef9f76",
|
||||||
"theme.bar.buttons.modules.updates.background": "#303446",
|
"theme.bar.buttons.modules.updates.background": "#303446",
|
||||||
"theme.bar.buttons.modules.storage.icon": "#e78284",
|
"theme.bar.buttons.modules.storage.icon": "#e78284",
|
||||||
"theme.bar.buttons.modules.netstat.background": "#303446",
|
"theme.bar.buttons.modules.netstat.background": "#303446",
|
||||||
"theme.bar.buttons.modules.weather.icon": "#babbf1",
|
"theme.bar.buttons.modules.weather.icon": "#babbf1",
|
||||||
"theme.bar.buttons.modules.netstat.text": "#a6d189",
|
"theme.bar.buttons.modules.netstat.text": "#a6d189",
|
||||||
"theme.bar.buttons.modules.storage.background": "#303446",
|
"theme.bar.buttons.modules.storage.background": "#303446",
|
||||||
"theme.bar.buttons.modules.power.icon": "#e78284",
|
"theme.bar.buttons.modules.power.icon": "#e78284",
|
||||||
"theme.bar.buttons.modules.storage.text": "#e78284",
|
"theme.bar.buttons.modules.storage.text": "#e78284",
|
||||||
"theme.bar.buttons.modules.cpu.background": "#303446",
|
"theme.bar.buttons.modules.cpu.background": "#303446",
|
||||||
"theme.bar.menus.menu.power.border.color": "#414559",
|
"theme.bar.menus.menu.power.border.color": "#414559",
|
||||||
"theme.bar.buttons.network.icon_background": "#caa6f7",
|
"theme.bar.buttons.network.icon_background": "#caa6f7",
|
||||||
"theme.bar.buttons.modules.power.icon_background": "#e78284",
|
"theme.bar.buttons.modules.power.icon_background": "#e78284",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon": "#232634",
|
"theme.bar.menus.menu.power.buttons.logout.icon": "#232634",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#ef9f76",
|
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#ef9f76",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon": "#232634",
|
"theme.bar.menus.menu.power.buttons.restart.icon": "#232634",
|
||||||
"theme.bar.buttons.modules.cpu.icon": "#e78284",
|
"theme.bar.buttons.modules.cpu.icon": "#e78284",
|
||||||
"theme.bar.buttons.battery.icon_background": "#e5c890",
|
"theme.bar.buttons.battery.icon_background": "#e5c890",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon_background": "#99d1db",
|
"theme.bar.buttons.modules.kbLayout.icon_background": "#99d1db",
|
||||||
"theme.bar.buttons.modules.weather.text": "#babbf1",
|
"theme.bar.buttons.modules.weather.text": "#babbf1",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#232634",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#232634",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.text": "#99d1db",
|
"theme.bar.menus.menu.power.buttons.sleep.text": "#99d1db",
|
||||||
"theme.bar.buttons.modules.weather.icon_background": "#babbf1",
|
"theme.bar.buttons.modules.weather.icon_background": "#babbf1",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.background": "#292c3c",
|
"theme.bar.menus.menu.power.buttons.shutdown.background": "#292c3c",
|
||||||
"theme.bar.buttons.media.icon_background": "#babbf1",
|
"theme.bar.buttons.media.icon_background": "#babbf1",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.background": "#292c3c",
|
"theme.bar.menus.menu.power.buttons.logout.background": "#292c3c",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon": "#99d1db",
|
"theme.bar.buttons.modules.kbLayout.icon": "#99d1db",
|
||||||
"theme.bar.buttons.modules.ram.icon_background": "#e5c890",
|
"theme.bar.buttons.modules.ram.icon_background": "#e5c890",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#e78284",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#e78284",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.text": "#e78284",
|
"theme.bar.menus.menu.power.buttons.shutdown.text": "#e78284",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.background": "#292c3c",
|
"theme.bar.menus.menu.power.buttons.sleep.background": "#292c3c",
|
||||||
"theme.bar.buttons.modules.ram.text": "#e5c890",
|
"theme.bar.buttons.modules.ram.text": "#e5c890",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.text": "#a6d189",
|
"theme.bar.menus.menu.power.buttons.logout.text": "#a6d189",
|
||||||
"theme.bar.buttons.modules.updates.icon_background": "#ca9ee6",
|
"theme.bar.buttons.modules.updates.icon_background": "#ca9ee6",
|
||||||
"theme.bar.buttons.modules.kbLayout.background": "#303446",
|
"theme.bar.buttons.modules.kbLayout.background": "#303446",
|
||||||
"theme.bar.buttons.modules.power.background": "#303446",
|
"theme.bar.buttons.modules.power.background": "#303446",
|
||||||
"theme.bar.buttons.modules.weather.background": "#303446",
|
"theme.bar.buttons.modules.weather.background": "#303446",
|
||||||
"theme.bar.buttons.icon_background": "#303446",
|
"theme.bar.buttons.icon_background": "#303446",
|
||||||
"theme.bar.menus.menu.power.background.color": "#232634",
|
"theme.bar.menus.menu.power.background.color": "#232634",
|
||||||
"theme.bar.buttons.modules.ram.background": "#303446",
|
"theme.bar.buttons.modules.ram.background": "#303446",
|
||||||
"theme.bar.buttons.modules.netstat.icon": "#a6d189",
|
"theme.bar.buttons.modules.netstat.icon": "#a6d189",
|
||||||
"theme.bar.buttons.windowtitle.icon_background": "#f4b8e4",
|
"theme.bar.buttons.windowtitle.icon_background": "#f4b8e4",
|
||||||
"theme.bar.buttons.modules.cpu.icon_background": "#e78284",
|
"theme.bar.buttons.modules.cpu.icon_background": "#e78284",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#a6d189",
|
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#a6d189",
|
||||||
"theme.bar.buttons.modules.updates.text": "#ca9ee6",
|
"theme.bar.buttons.modules.updates.text": "#ca9ee6",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon": "#232634",
|
"theme.bar.menus.menu.power.buttons.sleep.icon": "#232634",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
|
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.background": "#292c3c",
|
"theme.bar.menus.menu.power.buttons.restart.background": "#292c3c",
|
||||||
"theme.bar.buttons.modules.updates.icon": "#ca9ee6",
|
"theme.bar.buttons.modules.updates.icon": "#ca9ee6",
|
||||||
"theme.bar.buttons.modules.cpu.text": "#e78284",
|
"theme.bar.buttons.modules.cpu.text": "#e78284",
|
||||||
"theme.bar.buttons.modules.netstat.icon_background": "#a6d189",
|
"theme.bar.buttons.modules.netstat.icon_background": "#a6d189",
|
||||||
"theme.bar.buttons.modules.kbLayout.text": "#99d1db",
|
"theme.bar.buttons.modules.kbLayout.text": "#99d1db",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#babbf1",
|
"theme.bar.buttons.notifications.icon_background": "#babbf1",
|
||||||
"theme.bar.buttons.modules.power.border": "#e78284",
|
"theme.bar.buttons.modules.power.border": "#e78284",
|
||||||
"theme.bar.buttons.modules.weather.border": "#babbf1",
|
"theme.bar.buttons.modules.weather.border": "#babbf1",
|
||||||
"theme.bar.buttons.modules.updates.border": "#ca9ee6",
|
"theme.bar.buttons.modules.updates.border": "#ca9ee6",
|
||||||
"theme.bar.buttons.modules.kbLayout.border": "#99d1db",
|
"theme.bar.buttons.modules.kbLayout.border": "#99d1db",
|
||||||
"theme.bar.buttons.modules.netstat.border": "#a6d189",
|
"theme.bar.buttons.modules.netstat.border": "#a6d189",
|
||||||
"theme.bar.buttons.modules.storage.border": "#e78284",
|
"theme.bar.buttons.modules.storage.border": "#e78284",
|
||||||
"theme.bar.buttons.modules.cpu.border": "#e78284",
|
"theme.bar.buttons.modules.cpu.border": "#e78284",
|
||||||
"theme.bar.buttons.modules.ram.border": "#e5c890",
|
"theme.bar.buttons.modules.ram.border": "#e5c890",
|
||||||
"theme.bar.buttons.notifications.border": "#babbf1",
|
"theme.bar.buttons.notifications.border": "#babbf1",
|
||||||
"theme.bar.buttons.clock.border": "#f4b8e4",
|
"theme.bar.buttons.clock.border": "#f4b8e4",
|
||||||
"theme.bar.buttons.battery.border": "#e5c890",
|
"theme.bar.buttons.battery.border": "#e5c890",
|
||||||
"theme.bar.buttons.systray.border": "#51576d",
|
"theme.bar.buttons.systray.border": "#51576d",
|
||||||
"theme.bar.buttons.bluetooth.border": "#99d1db",
|
"theme.bar.buttons.bluetooth.border": "#99d1db",
|
||||||
"theme.bar.buttons.network.border": "#ca9ee6",
|
"theme.bar.buttons.network.border": "#ca9ee6",
|
||||||
"theme.bar.buttons.volume.border": "#ea999c",
|
"theme.bar.buttons.volume.border": "#ea999c",
|
||||||
"theme.bar.buttons.media.border": "#babbf1",
|
"theme.bar.buttons.media.border": "#babbf1",
|
||||||
"theme.bar.buttons.windowtitle.border": "#f4b8e4",
|
"theme.bar.buttons.windowtitle.border": "#f4b8e4",
|
||||||
"theme.bar.buttons.workspaces.border": "#232634",
|
"theme.bar.buttons.workspaces.border": "#232634",
|
||||||
"theme.bar.buttons.dashboard.border": "#e5c890",
|
"theme.bar.buttons.dashboard.border": "#e5c890",
|
||||||
"theme.bar.buttons.modules.submap.background": "#303446",
|
"theme.bar.buttons.modules.submap.background": "#303446",
|
||||||
"theme.bar.buttons.modules.submap.text": "#81c8be",
|
"theme.bar.buttons.modules.submap.text": "#81c8be",
|
||||||
"theme.bar.buttons.modules.submap.border": "#81c8be",
|
"theme.bar.buttons.modules.submap.border": "#81c8be",
|
||||||
"theme.bar.buttons.modules.submap.icon": "#81c8be",
|
"theme.bar.buttons.modules.submap.icon": "#81c8be",
|
||||||
"theme.bar.buttons.modules.submap.icon_background": "#303446",
|
"theme.bar.buttons.modules.submap.icon_background": "#303446",
|
||||||
"theme.bar.menus.menu.network.switch.enabled": "#ca9ee6",
|
"theme.bar.menus.menu.network.switch.enabled": "#ca9ee6",
|
||||||
"theme.bar.menus.menu.network.switch.disabled": "#414559",
|
"theme.bar.menus.menu.network.switch.disabled": "#414559",
|
||||||
"theme.bar.menus.menu.network.switch.puck": "#51576d",
|
"theme.bar.menus.menu.network.switch.puck": "#51576d",
|
||||||
"theme.bar.buttons.systray.customIcon": "#c6d0f5",
|
"theme.bar.buttons.systray.customIcon": "#c6d0f5",
|
||||||
"theme.bar.border.color": "#babbf1",
|
"theme.bar.border.color": "#babbf1",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#c6d0f5",
|
"theme.bar.menus.menu.media.timestamp": "#c6d0f5",
|
||||||
"theme.bar.buttons.borderColor": "#babbf1",
|
"theme.bar.buttons.borderColor": "#babbf1",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#e5c890",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#e5c890",
|
||||||
"theme.bar.buttons.modules.hyprsunset.background": "#303446",
|
"theme.bar.buttons.modules.hyprsunset.background": "#303446",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e5c890",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e5c890",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#e5c890",
|
"theme.bar.buttons.modules.hyprsunset.text": "#e5c890",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#e5c890"
|
"theme.bar.buttons.modules.hyprsunset.border": "#e5c890",
|
||||||
}
|
"theme.bar.buttons.modules.hypridle.icon": "#e78284",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#303446",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#e78284",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#e78284",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#e78284"
|
||||||
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#303446",
|
"theme.bar.buttons.modules.hyprsunset.background": "#303446",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#e5c890",
|
"theme.bar.buttons.modules.hyprsunset.text": "#e5c890",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#e5c890"
|
"theme.bar.buttons.modules.hyprsunset.border": "#e5c890",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#181825",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#303446",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#e78284",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#e78284",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#e78284"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#e78284",
|
"theme.bar.buttons.modules.hyprsunset.background": "#e78284",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e78284",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e78284",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#303446",
|
"theme.bar.buttons.modules.hyprsunset.text": "#303446",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#e78284"
|
"theme.bar.buttons.modules.hyprsunset.border": "#e78284",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#303446",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#e78284",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#e78284",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#303446",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#e78284"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#dcdfe8",
|
"theme.bar.buttons.modules.hyprsunset.background": "#dcdfe8",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#df8e1d",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#df8e1d",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#df8e1d",
|
"theme.bar.buttons.modules.hyprsunset.text": "#df8e1d",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#df8e1d"
|
"theme.bar.buttons.modules.hyprsunset.border": "#df8e1d",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#d20f39",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#dcdfe8",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#d20f39",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#d20f39",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#d20f39"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#dcdfe8",
|
"theme.bar.buttons.modules.hyprsunset.background": "#dcdfe8",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#df8e1d",
|
"theme.bar.buttons.modules.hyprsunset.text": "#df8e1d",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#df8e1d"
|
"theme.bar.buttons.modules.hyprsunset.border": "#df8e1d",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#181825",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#dcdfe8",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#d20f39",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#d20f39",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#d20f39"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#d20f39",
|
"theme.bar.buttons.modules.hyprsunset.background": "#d20f39",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#d20f39",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#d20f39",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#dcdfe8",
|
"theme.bar.buttons.modules.hyprsunset.text": "#dcdfe8",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#d20f39"
|
"theme.bar.buttons.modules.hyprsunset.border": "#d20f39",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#dcdfe8",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#d20f39",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#d20f39",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#dcdfe8",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#d20f39"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#24273a",
|
"theme.bar.buttons.modules.hyprsunset.background": "#24273a",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#eed49f",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#eed49f",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#eed49f",
|
"theme.bar.buttons.modules.hyprsunset.text": "#eed49f",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#eed49f"
|
"theme.bar.buttons.modules.hyprsunset.border": "#eed49f",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#ed8796",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#24273a",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#ed8796",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#ed8796",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#ed8796"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#24273a",
|
"theme.bar.buttons.modules.hyprsunset.background": "#24273a",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#eed49f",
|
"theme.bar.buttons.modules.hyprsunset.text": "#eed49f",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#eed49f"
|
"theme.bar.buttons.modules.hyprsunset.border": "#eed49f",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#181825",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#24273a",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#ed8796",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#ed8796",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#ed8796"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#ed8796",
|
"theme.bar.buttons.modules.hyprsunset.background": "#ed8796",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#ed8796",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#ed8796",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#24273a",
|
"theme.bar.buttons.modules.hyprsunset.text": "#24273a",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#ed8796"
|
"theme.bar.buttons.modules.hyprsunset.border": "#ed8796",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#24273a",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#ed8796",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#ed8796",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#24273a",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#ed8796"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#242438",
|
"theme.bar.buttons.modules.hyprsunset.background": "#242438",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#242438",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#242438",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#fab387",
|
"theme.bar.buttons.modules.hyprsunset.text": "#fab387",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#fab387"
|
"theme.bar.buttons.modules.hyprsunset.border": "#f5c2e7",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#f5c2e7",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#242438",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#f5c2e7",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#f5c2e7",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#f5c2e7"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#242438",
|
"theme.bar.buttons.modules.hyprsunset.background": "#242438",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#242438",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#242438",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#fab387",
|
"theme.bar.buttons.modules.hyprsunset.text": "#fab387",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#fab387"
|
"theme.bar.buttons.modules.hyprsunset.border": "#fab387",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#242438",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#242438",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#f5c2e7",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#f5c2e7",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#f5c2e7"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#fab387",
|
"theme.bar.buttons.modules.hyprsunset.background": "#fab387",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#fab387",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#fab387",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#242438",
|
"theme.bar.buttons.modules.hyprsunset.text": "#242438",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#fab387"
|
"theme.bar.buttons.modules.hyprsunset.border": "#fab387",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#242438",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#f5c2e7",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#f5c2e7",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#242438",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#f5c2e7"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#121212",
|
"theme.bar.buttons.modules.hyprsunset.background": "#121212",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#FFD700",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#FFD700",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#FFD700",
|
"theme.bar.buttons.modules.hyprsunset.text": "#FFD700",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#FFD700"
|
"theme.bar.buttons.modules.hyprsunset.border": "#FFD700",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#FF4500",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#121212",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#FF4500",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#FF4500",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#FF4500"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#121212",
|
"theme.bar.buttons.modules.hyprsunset.background": "#121212",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#121212",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#121212",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#FFD700",
|
"theme.bar.buttons.modules.hyprsunset.text": "#FFD700",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#FFD700"
|
"theme.bar.buttons.modules.hyprsunset.border": "#FFD700",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#121212",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#121212",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#FF4500",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#FF4500",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#FF4500"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#FF4500",
|
"theme.bar.buttons.modules.hyprsunset.background": "#FF4500",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#FF4500",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#FF4500",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#121212",
|
"theme.bar.buttons.modules.hyprsunset.text": "#121212",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#FF4500"
|
"theme.bar.buttons.modules.hyprsunset.border": "#FF4500",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#121212",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#FF4500",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#FF4500",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#121212",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#FF4500"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#44475a",
|
"theme.bar.buttons.modules.hyprsunset.background": "#44475a",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f1fa8c",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f1fa8c",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#f1fa8c",
|
"theme.bar.buttons.modules.hyprsunset.text": "#f1fa8c",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#f1fa8c"
|
"theme.bar.buttons.modules.hyprsunset.border": "#f1fa8c",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#bd93f9",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#44475a",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#bd93f9",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#bd93f9",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#bd93f9"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#44475a",
|
"theme.bar.buttons.modules.hyprsunset.background": "#44475a",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#282936",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#282936",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#f1fa8c",
|
"theme.bar.buttons.modules.hyprsunset.text": "#f1fa8c",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#f1fa8c"
|
"theme.bar.buttons.modules.hyprsunset.border": "#f1fa8c",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#282936",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#44475a",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#bd93f9",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#bd93f9",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#bd93f9"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#ff79c6",
|
"theme.bar.buttons.modules.hyprsunset.background": "#ff79c6",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#ff79c6",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#ff79c6",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#44475a",
|
"theme.bar.buttons.modules.hyprsunset.text": "#44475a",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#ff79c6"
|
"theme.bar.buttons.modules.hyprsunset.border": "#ff79c6",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#44475a",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#bd93f9",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#bd93f9",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#44475a",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#bd93f9"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#323d43",
|
"theme.bar.buttons.modules.hyprsunset.background": "#323d43",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#dbbc7f",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#dbbc7f",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#dbbc7f",
|
"theme.bar.buttons.modules.hyprsunset.text": "#dbbc7f",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#dbbc7f"
|
"theme.bar.buttons.modules.hyprsunset.border": "#dbbc7f",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#e67e80",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#323d43",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#e67e80",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#e67e80",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#e67e80"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#323d43",
|
"theme.bar.buttons.modules.hyprsunset.background": "#323d43",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#dbbc7f",
|
"theme.bar.buttons.modules.hyprsunset.text": "#dbbc7f",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#dbbc7f"
|
"theme.bar.buttons.modules.hyprsunset.border": "#dbbc7f",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#21252b",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#323d43",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#e67e80",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#e67e80",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#e67e80"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#e67e80",
|
"theme.bar.buttons.modules.hyprsunset.background": "#e67e80",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e67e80",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e67e80",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#323d43",
|
"theme.bar.buttons.modules.hyprsunset.text": "#323d43",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#e67e80"
|
"theme.bar.buttons.modules.hyprsunset.border": "#e67e80",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#323d43",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#e67e80",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#e67e80",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#323d43",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#e67e80"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#282828",
|
"theme.bar.buttons.modules.hyprsunset.background": "#282828",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#282828",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#282828",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#fabd2f",
|
"theme.bar.buttons.modules.hyprsunset.text": "#fabd2f",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#fabd2f"
|
"theme.bar.buttons.modules.hyprsunset.border": "#fabd2f",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#83a598",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#282828",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#282828",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#83a598",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#83a598"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#282828",
|
"theme.bar.buttons.modules.hyprsunset.background": "#282828",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#fabd2f",
|
"theme.bar.buttons.modules.hyprsunset.text": "#fabd2f",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#fabd2f"
|
"theme.bar.buttons.modules.hyprsunset.border": "#fabd2f",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#21252b",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#282828",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#83a598",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#83a598",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#83a598"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#d3869b",
|
"theme.bar.buttons.modules.hyprsunset.background": "#d3869b",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#282828",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#282828",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#282828",
|
"theme.bar.buttons.modules.hyprsunset.text": "#282828",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#d3869b"
|
"theme.bar.buttons.modules.hyprsunset.border": "#d3869b",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#282828",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#83a598",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#282828",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#282828",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#83a598"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#090909",
|
"theme.bar.buttons.modules.hyprsunset.background": "#090909",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#ffffff",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#ffffff",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#ffffff",
|
"theme.bar.buttons.modules.hyprsunset.text": "#ffffff",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#ffffff"
|
"theme.bar.buttons.modules.hyprsunset.border": "#ffffff",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#ffffff",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#090909",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#ffffff",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#ffffff",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#ffffff"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#090909",
|
"theme.bar.buttons.modules.hyprsunset.background": "#090909",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#ffffff",
|
"theme.bar.buttons.modules.hyprsunset.text": "#ffffff",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#ffffff"
|
"theme.bar.buttons.modules.hyprsunset.border": "#ffffff",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#21252b",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#090909",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#ffffff",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#ffffff",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#ffffff"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#ffffff",
|
"theme.bar.buttons.modules.hyprsunset.background": "#ffffff",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#ffffff",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#ffffff",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#090909",
|
"theme.bar.buttons.modules.hyprsunset.text": "#090909",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#ffffff"
|
"theme.bar.buttons.modules.hyprsunset.border": "#ffffff",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#090909",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#ffffff",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#ffffff",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#090909",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#ffffff"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#3b4252",
|
"theme.bar.buttons.modules.hyprsunset.background": "#3b4252",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#81a1c1",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#81a1c1",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#81a1c1",
|
"theme.bar.buttons.modules.hyprsunset.text": "#81a1c1",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#81a1c1"
|
"theme.bar.buttons.modules.hyprsunset.border": "#81a1c1",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#8fbcbb",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#3b4252",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#8fbcbb",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#8fbcbb",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#8fbcbb"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#3b4252",
|
"theme.bar.buttons.modules.hyprsunset.background": "#3b4252",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#81a1c1",
|
"theme.bar.buttons.modules.hyprsunset.text": "#81a1c1",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#81a1c1"
|
"theme.bar.buttons.modules.hyprsunset.border": "#81a1c1",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#21252b",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#3b4252",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#8fbcbb",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#8fbcbb",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#8fbcbb"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#8fbcbb",
|
"theme.bar.buttons.modules.hyprsunset.background": "#8fbcbb",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#8fbcbb",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#8fbcbb",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#3b4252",
|
"theme.bar.buttons.modules.hyprsunset.text": "#3b4252",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#8fbcbb"
|
"theme.bar.buttons.modules.hyprsunset.border": "#8fbcbb",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#3b4252",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#8fbcbb",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#8fbcbb",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#3b4252",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#8fbcbb"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#21252b",
|
"theme.bar.buttons.modules.hyprsunset.background": "#21252b",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e5c07b",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e5c07b",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#e5c07b",
|
"theme.bar.buttons.modules.hyprsunset.text": "#e5c07b",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#e5c07b"
|
"theme.bar.buttons.modules.hyprsunset.border": "#e5c07b",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#e06c75",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#21252b",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#e06c75",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#e06c75",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#e06c75"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#21252b",
|
"theme.bar.buttons.modules.hyprsunset.background": "#21252b",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#21252b",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#e5c07b",
|
"theme.bar.buttons.modules.hyprsunset.text": "#e5c07b",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#e5c07b"
|
"theme.bar.buttons.modules.hyprsunset.border": "#e5c07b",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#21252b",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#21252b",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#e06c75",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#e06c75",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#e06c75"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#e06c75",
|
"theme.bar.buttons.modules.hyprsunset.background": "#e06c75",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e06c75",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e06c75",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#21252b",
|
"theme.bar.buttons.modules.hyprsunset.text": "#21252b",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#e06c75"
|
"theme.bar.buttons.modules.hyprsunset.border": "#e06c75",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#21252b",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#e06c75",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#e06c75",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#21252b",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#e06c75"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#21202e",
|
"theme.bar.buttons.modules.hyprsunset.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f6c177",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f6c177",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177"
|
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#eb6f92",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#21202e",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#eb6f92",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#eb6f92",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#eb6f92"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#2a283e",
|
"theme.bar.buttons.modules.hyprsunset.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177"
|
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#c4a7e7",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#2a283e",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#2a283e",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#eb6f92",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#eb6f92"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#2a283e",
|
"theme.bar.buttons.modules.hyprsunset.background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177"
|
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#181825",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#2a283e",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#eb6f92",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#eb6f92",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#eb6f92"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#eb6f92",
|
"theme.bar.buttons.modules.hyprsunset.background": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#2a283e",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#2a283e",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#2a283e",
|
"theme.bar.buttons.modules.hyprsunset.text": "#2a283e",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#eb6f92"
|
"theme.bar.buttons.modules.hyprsunset.border": "#eb6f92",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#2a283e",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#c4a7e7",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#2a283e",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#2a283e",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#eb6f92"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#21202e",
|
"theme.bar.buttons.modules.hyprsunset.background": "#21202e",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
"theme.bar.buttons.modules.hyprsunset.text": "#f6c177",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177"
|
"theme.bar.buttons.modules.hyprsunset.border": "#f6c177",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#181825",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#21202e",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#eb6f92",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#eb6f92",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#eb6f92"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#eb6f92",
|
"theme.bar.buttons.modules.hyprsunset.background": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#eb6f92",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#eb6f92",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#21202e",
|
"theme.bar.buttons.modules.hyprsunset.text": "#21202e",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#eb6f92"
|
"theme.bar.buttons.modules.hyprsunset.border": "#eb6f92",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#21202e",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#eb6f92",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#eb6f92",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#21202e",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#eb6f92"
|
||||||
}
|
}
|
||||||
@@ -1,354 +1,358 @@
|
|||||||
{
|
{
|
||||||
"theme.bar.menus.background": "#1a1b26",
|
"theme.bar.menus.background": "#1a1b26",
|
||||||
"theme.bar.background": "#1a1b26",
|
"theme.bar.background": "#1a1b26",
|
||||||
"theme.bar.buttons.media.icon": "#bb9af7",
|
"theme.bar.buttons.media.icon": "#bb9af7",
|
||||||
"theme.bar.buttons.media.text": "#bb9af7",
|
"theme.bar.buttons.media.text": "#bb9af7",
|
||||||
"theme.bar.buttons.icon": "#bb9af7",
|
"theme.bar.buttons.icon": "#bb9af7",
|
||||||
"theme.bar.buttons.text": "#bb9af7",
|
"theme.bar.buttons.text": "#bb9af7",
|
||||||
"theme.bar.buttons.hover": "#414868",
|
"theme.bar.buttons.hover": "#414868",
|
||||||
"theme.bar.buttons.background": "#272a3d",
|
"theme.bar.buttons.background": "#272a3d",
|
||||||
"theme.bar.menus.text": "#c0caf5",
|
"theme.bar.menus.text": "#c0caf5",
|
||||||
"theme.bar.menus.border.color": "#414868",
|
"theme.bar.menus.border.color": "#414868",
|
||||||
"theme.bar.buttons.media.background": "#272a3d",
|
"theme.bar.buttons.media.background": "#272a3d",
|
||||||
"theme.bar.menus.menu.volume.text": "#c0caf5",
|
"theme.bar.menus.menu.volume.text": "#c0caf5",
|
||||||
"theme.bar.menus.menu.volume.card.color": "#24283b",
|
"theme.bar.menus.menu.volume.card.color": "#24283b",
|
||||||
"theme.bar.menus.menu.volume.label.color": "#f7768e",
|
"theme.bar.menus.menu.volume.label.color": "#f7768e",
|
||||||
"theme.bar.menus.popover.text": "#bb9af7",
|
"theme.bar.menus.popover.text": "#bb9af7",
|
||||||
"theme.bar.menus.popover.background": "#1a1b26",
|
"theme.bar.menus.popover.background": "#1a1b26",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#f7768e",
|
"theme.bar.menus.menu.dashboard.powermenu.shutdown": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#f7768e",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#9ece6a",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#9ece6a",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#1a1b26",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#1a1b26",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#c0caf5",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#c0caf5",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#bb9af7",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#bb9af7",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#414868",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#414868",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#1a1b26",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#1a1b26",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#24283b",
|
"theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#24283b",
|
||||||
"theme.bar.menus.menu.notifications.switch.puck": "#565f89",
|
"theme.bar.menus.menu.notifications.switch.puck": "#565f89",
|
||||||
"theme.bar.menus.menu.notifications.switch.disabled": "#565f89",
|
"theme.bar.menus.menu.notifications.switch.disabled": "#565f89",
|
||||||
"theme.bar.menus.menu.notifications.switch.enabled": "#bb9af7",
|
"theme.bar.menus.menu.notifications.switch.enabled": "#bb9af7",
|
||||||
"theme.bar.menus.menu.notifications.clear": "#f7768e",
|
"theme.bar.menus.menu.notifications.clear": "#f7768e",
|
||||||
"theme.bar.menus.menu.notifications.switch_divider": "#414868",
|
"theme.bar.menus.menu.notifications.switch_divider": "#414868",
|
||||||
"theme.bar.menus.menu.notifications.border": "#414868",
|
"theme.bar.menus.menu.notifications.border": "#414868",
|
||||||
"theme.bar.menus.menu.notifications.card": "#24283b",
|
"theme.bar.menus.menu.notifications.card": "#24283b",
|
||||||
"theme.bar.menus.menu.notifications.background": "#1a1b26",
|
"theme.bar.menus.menu.notifications.background": "#1a1b26",
|
||||||
"theme.bar.menus.menu.notifications.no_notifications_label": "#414868",
|
"theme.bar.menus.menu.notifications.no_notifications_label": "#414868",
|
||||||
"theme.bar.menus.menu.notifications.label": "#bb9af7",
|
"theme.bar.menus.menu.notifications.label": "#bb9af7",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#f7768e",
|
"theme.bar.menus.menu.dashboard.monitors.disk.label": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#f7768e",
|
"theme.bar.menus.menu.dashboard.monitors.disk.bar": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#f7768e",
|
"theme.bar.menus.menu.dashboard.monitors.disk.icon": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#9ece6a",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.label": "#9ece6a",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#9ece6a",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#9ece6a",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#9ece6a",
|
"theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#9ece6a",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#e0af68",
|
"theme.bar.menus.menu.dashboard.monitors.ram.label": "#e0af68",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#e0af68",
|
"theme.bar.menus.menu.dashboard.monitors.ram.bar": "#e0af68",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#e0af68",
|
"theme.bar.menus.menu.dashboard.monitors.ram.icon": "#e0af68",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#f7768e",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.label": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#f7768e",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#f7768e",
|
"theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#414868",
|
"theme.bar.menus.menu.dashboard.monitors.bar_background": "#414868",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#bb9af7",
|
"theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#bb9af7",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#bb9af7",
|
"theme.bar.menus.menu.dashboard.directories.right.middle.color": "#bb9af7",
|
||||||
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#73daca",
|
"theme.bar.menus.menu.dashboard.directories.right.top.color": "#73daca",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#f7768e",
|
"theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#e0af68",
|
"theme.bar.menus.menu.dashboard.directories.left.middle.color": "#e0af68",
|
||||||
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#f7768e",
|
"theme.bar.menus.menu.dashboard.directories.left.top.color": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.text": "#1a1b26",
|
"theme.bar.menus.menu.dashboard.controls.input.text": "#1a1b26",
|
||||||
"theme.bar.menus.menu.dashboard.controls.input.background": "#f7768e",
|
"theme.bar.menus.menu.dashboard.controls.input.background": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.text": "#1a1b26",
|
"theme.bar.menus.menu.dashboard.controls.volume.text": "#1a1b26",
|
||||||
"theme.bar.menus.menu.dashboard.controls.volume.background": "#f7768e",
|
"theme.bar.menus.menu.dashboard.controls.volume.background": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#1a1b26",
|
"theme.bar.menus.menu.dashboard.controls.notifications.text": "#1a1b26",
|
||||||
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#e0af68",
|
"theme.bar.menus.menu.dashboard.controls.notifications.background": "#e0af68",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#1a1b26",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#1a1b26",
|
||||||
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#7dcfff",
|
"theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#7dcfff",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#1a1b26",
|
"theme.bar.menus.menu.dashboard.controls.wifi.text": "#1a1b26",
|
||||||
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#bb9af7",
|
"theme.bar.menus.menu.dashboard.controls.wifi.background": "#bb9af7",
|
||||||
"theme.bar.menus.menu.dashboard.controls.disabled": "#414868",
|
"theme.bar.menus.menu.dashboard.controls.disabled": "#414868",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#9ece6a",
|
"theme.bar.menus.menu.dashboard.shortcuts.recording": "#9ece6a",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.text": "#1a1b26",
|
"theme.bar.menus.menu.dashboard.shortcuts.text": "#1a1b26",
|
||||||
"theme.bar.menus.menu.dashboard.shortcuts.background": "#bb9af7",
|
"theme.bar.menus.menu.dashboard.shortcuts.background": "#bb9af7",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#7dcfff",
|
"theme.bar.menus.menu.dashboard.powermenu.sleep": "#7dcfff",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.logout": "#9ece6a",
|
"theme.bar.menus.menu.dashboard.powermenu.logout": "#9ece6a",
|
||||||
"theme.bar.menus.menu.dashboard.powermenu.restart": "#e0af68",
|
"theme.bar.menus.menu.dashboard.powermenu.restart": "#e0af68",
|
||||||
"theme.bar.menus.menu.dashboard.profile.name": "#f7768e",
|
"theme.bar.menus.menu.dashboard.profile.name": "#f7768e",
|
||||||
"theme.bar.menus.menu.dashboard.border.color": "#414868",
|
"theme.bar.menus.menu.dashboard.border.color": "#414868",
|
||||||
"theme.bar.menus.menu.dashboard.background.color": "#1a1b26",
|
"theme.bar.menus.menu.dashboard.background.color": "#1a1b26",
|
||||||
"theme.bar.menus.menu.dashboard.card.color": "#24283b",
|
"theme.bar.menus.menu.dashboard.card.color": "#24283b",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#f7768e",
|
"theme.bar.menus.menu.clock.weather.hourly.temperature": "#f7768e",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.icon": "#f7768e",
|
"theme.bar.menus.menu.clock.weather.hourly.icon": "#f7768e",
|
||||||
"theme.bar.menus.menu.clock.weather.hourly.time": "#f7768e",
|
"theme.bar.menus.menu.clock.weather.hourly.time": "#f7768e",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#7dcfff",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#7dcfff",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#7aa2f7",
|
"theme.bar.menus.menu.clock.weather.thermometer.cold": "#7aa2f7",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#bb9af7",
|
"theme.bar.menus.menu.clock.weather.thermometer.moderate": "#bb9af7",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#e0af68",
|
"theme.bar.menus.menu.clock.weather.thermometer.hot": "#e0af68",
|
||||||
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#f7768e",
|
"theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#f7768e",
|
||||||
"theme.bar.menus.menu.clock.weather.stats": "#f7768e",
|
"theme.bar.menus.menu.clock.weather.stats": "#f7768e",
|
||||||
"theme.bar.menus.menu.clock.weather.status": "#73daca",
|
"theme.bar.menus.menu.clock.weather.status": "#73daca",
|
||||||
"theme.bar.menus.menu.clock.weather.temperature": "#c0caf5",
|
"theme.bar.menus.menu.clock.weather.temperature": "#c0caf5",
|
||||||
"theme.bar.menus.menu.clock.weather.icon": "#f7768e",
|
"theme.bar.menus.menu.clock.weather.icon": "#f7768e",
|
||||||
"theme.bar.menus.menu.clock.calendar.contextdays": "#414868",
|
"theme.bar.menus.menu.clock.calendar.contextdays": "#414868",
|
||||||
"theme.bar.menus.menu.clock.calendar.days": "#c0caf5",
|
"theme.bar.menus.menu.clock.calendar.days": "#c0caf5",
|
||||||
"theme.bar.menus.menu.clock.calendar.currentday": "#f7768e",
|
"theme.bar.menus.menu.clock.calendar.currentday": "#f7768e",
|
||||||
"theme.bar.menus.menu.clock.calendar.paginator": "#f7768e",
|
"theme.bar.menus.menu.clock.calendar.paginator": "#f7768e",
|
||||||
"theme.bar.menus.menu.clock.calendar.weekdays": "#f7768e",
|
"theme.bar.menus.menu.clock.calendar.weekdays": "#f7768e",
|
||||||
"theme.bar.menus.menu.clock.calendar.yearmonth": "#73daca",
|
"theme.bar.menus.menu.clock.calendar.yearmonth": "#73daca",
|
||||||
"theme.bar.menus.menu.clock.time.timeperiod": "#73daca",
|
"theme.bar.menus.menu.clock.time.timeperiod": "#73daca",
|
||||||
"theme.bar.menus.menu.clock.time.time": "#f7768e",
|
"theme.bar.menus.menu.clock.time.time": "#f7768e",
|
||||||
"theme.bar.menus.menu.clock.text": "#c0caf5",
|
"theme.bar.menus.menu.clock.text": "#c0caf5",
|
||||||
"theme.bar.menus.menu.clock.border.color": "#414868",
|
"theme.bar.menus.menu.clock.border.color": "#414868",
|
||||||
"theme.bar.menus.menu.clock.background.color": "#1a1b26",
|
"theme.bar.menus.menu.clock.background.color": "#1a1b26",
|
||||||
"theme.bar.menus.menu.clock.card.color": "#24283b",
|
"theme.bar.menus.menu.clock.card.color": "#24283b",
|
||||||
"theme.bar.menus.menu.battery.slider.puck": "#565f89",
|
"theme.bar.menus.menu.battery.slider.puck": "#565f89",
|
||||||
"theme.bar.menus.menu.battery.slider.backgroundhover": "#414868",
|
"theme.bar.menus.menu.battery.slider.backgroundhover": "#414868",
|
||||||
"theme.bar.menus.menu.battery.slider.background": "#565f89",
|
"theme.bar.menus.menu.battery.slider.background": "#565f89",
|
||||||
"theme.bar.menus.menu.battery.slider.primary": "#e0af68",
|
"theme.bar.menus.menu.battery.slider.primary": "#e0af68",
|
||||||
"theme.bar.menus.menu.battery.icons.active": "#e0af68",
|
"theme.bar.menus.menu.battery.icons.active": "#e0af68",
|
||||||
"theme.bar.menus.menu.battery.icons.passive": "#565f89",
|
"theme.bar.menus.menu.battery.icons.passive": "#565f89",
|
||||||
"theme.bar.menus.menu.battery.listitems.active": "#e0af68",
|
"theme.bar.menus.menu.battery.listitems.active": "#e0af68",
|
||||||
"theme.bar.menus.menu.battery.listitems.passive": "#c0caf5",
|
"theme.bar.menus.menu.battery.listitems.passive": "#c0caf5",
|
||||||
"theme.bar.menus.menu.battery.text": "#c0caf5",
|
"theme.bar.menus.menu.battery.text": "#c0caf5",
|
||||||
"theme.bar.menus.menu.battery.label.color": "#e0af68",
|
"theme.bar.menus.menu.battery.label.color": "#e0af68",
|
||||||
"theme.bar.menus.menu.battery.border.color": "#414868",
|
"theme.bar.menus.menu.battery.border.color": "#414868",
|
||||||
"theme.bar.menus.menu.battery.background.color": "#1a1b26",
|
"theme.bar.menus.menu.battery.background.color": "#1a1b26",
|
||||||
"theme.bar.menus.menu.battery.card.color": "#24283b",
|
"theme.bar.menus.menu.battery.card.color": "#24283b",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#24283b",
|
"theme.bar.menus.menu.systray.dropdownmenu.divider": "#24283b",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.text": "#c0caf5",
|
"theme.bar.menus.menu.systray.dropdownmenu.text": "#c0caf5",
|
||||||
"theme.bar.menus.menu.systray.dropdownmenu.background": "#1a1b26",
|
"theme.bar.menus.menu.systray.dropdownmenu.background": "#1a1b26",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#7dcfff",
|
"theme.bar.menus.menu.bluetooth.iconbutton.active": "#7dcfff",
|
||||||
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#c0caf5",
|
"theme.bar.menus.menu.bluetooth.iconbutton.passive": "#c0caf5",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.active": "#7dcfff",
|
"theme.bar.menus.menu.bluetooth.icons.active": "#7dcfff",
|
||||||
"theme.bar.menus.menu.bluetooth.icons.passive": "#565f89",
|
"theme.bar.menus.menu.bluetooth.icons.passive": "#565f89",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.active": "#7dcfff",
|
"theme.bar.menus.menu.bluetooth.listitems.active": "#7dcfff",
|
||||||
"theme.bar.menus.menu.bluetooth.listitems.passive": "#c0caf5",
|
"theme.bar.menus.menu.bluetooth.listitems.passive": "#c0caf5",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.puck": "#565f89",
|
"theme.bar.menus.menu.bluetooth.switch.puck": "#565f89",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.disabled": "#565f89",
|
"theme.bar.menus.menu.bluetooth.switch.disabled": "#565f89",
|
||||||
"theme.bar.menus.menu.bluetooth.switch.enabled": "#7dcfff",
|
"theme.bar.menus.menu.bluetooth.switch.enabled": "#7dcfff",
|
||||||
"theme.bar.menus.menu.bluetooth.switch_divider": "#414868",
|
"theme.bar.menus.menu.bluetooth.switch_divider": "#414868",
|
||||||
"theme.bar.menus.menu.bluetooth.status": "#565f89",
|
"theme.bar.menus.menu.bluetooth.status": "#565f89",
|
||||||
"theme.bar.menus.menu.bluetooth.text": "#c0caf5",
|
"theme.bar.menus.menu.bluetooth.text": "#c0caf5",
|
||||||
"theme.bar.menus.menu.bluetooth.label.color": "#7dcfff",
|
"theme.bar.menus.menu.bluetooth.label.color": "#7dcfff",
|
||||||
"theme.bar.menus.menu.bluetooth.border.color": "#414868",
|
"theme.bar.menus.menu.bluetooth.border.color": "#414868",
|
||||||
"theme.bar.menus.menu.bluetooth.background.color": "#1a1b26",
|
"theme.bar.menus.menu.bluetooth.background.color": "#1a1b26",
|
||||||
"theme.bar.menus.menu.bluetooth.card.color": "#24283b",
|
"theme.bar.menus.menu.bluetooth.card.color": "#24283b",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.active": "#bb9af7",
|
"theme.bar.menus.menu.network.iconbuttons.active": "#bb9af7",
|
||||||
"theme.bar.menus.menu.network.iconbuttons.passive": "#c0caf5",
|
"theme.bar.menus.menu.network.iconbuttons.passive": "#c0caf5",
|
||||||
"theme.bar.menus.menu.network.icons.active": "#bb9af7",
|
"theme.bar.menus.menu.network.icons.active": "#bb9af7",
|
||||||
"theme.bar.menus.menu.network.icons.passive": "#565f89",
|
"theme.bar.menus.menu.network.icons.passive": "#565f89",
|
||||||
"theme.bar.menus.menu.network.listitems.active": "#bb9af7",
|
"theme.bar.menus.menu.network.listitems.active": "#bb9af7",
|
||||||
"theme.bar.menus.menu.network.listitems.passive": "#c0caf5",
|
"theme.bar.menus.menu.network.listitems.passive": "#c0caf5",
|
||||||
"theme.bar.menus.menu.network.status.color": "#565f89",
|
"theme.bar.menus.menu.network.status.color": "#565f89",
|
||||||
"theme.bar.menus.menu.network.text": "#c0caf5",
|
"theme.bar.menus.menu.network.text": "#c0caf5",
|
||||||
"theme.bar.menus.menu.network.label.color": "#bb9af7",
|
"theme.bar.menus.menu.network.label.color": "#bb9af7",
|
||||||
"theme.bar.menus.menu.network.border.color": "#414868",
|
"theme.bar.menus.menu.network.border.color": "#414868",
|
||||||
"theme.bar.menus.menu.network.background.color": "#1a1b26",
|
"theme.bar.menus.menu.network.background.color": "#1a1b26",
|
||||||
"theme.bar.menus.menu.network.card.color": "#24283b",
|
"theme.bar.menus.menu.network.card.color": "#24283b",
|
||||||
"theme.bar.menus.menu.volume.input_slider.puck": "#414868",
|
"theme.bar.menus.menu.volume.input_slider.puck": "#414868",
|
||||||
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#414868",
|
"theme.bar.menus.menu.volume.input_slider.backgroundhover": "#414868",
|
||||||
"theme.bar.menus.menu.volume.input_slider.background": "#565f89",
|
"theme.bar.menus.menu.volume.input_slider.background": "#565f89",
|
||||||
"theme.bar.menus.menu.volume.input_slider.primary": "#f7768e",
|
"theme.bar.menus.menu.volume.input_slider.primary": "#f7768e",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.puck": "#414868",
|
"theme.bar.menus.menu.volume.audio_slider.puck": "#414868",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#414868",
|
"theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#414868",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.background": "#565f89",
|
"theme.bar.menus.menu.volume.audio_slider.background": "#565f89",
|
||||||
"theme.bar.menus.menu.volume.audio_slider.primary": "#f7768e",
|
"theme.bar.menus.menu.volume.audio_slider.primary": "#f7768e",
|
||||||
"theme.bar.menus.menu.volume.icons.active": "#f7768e",
|
"theme.bar.menus.menu.volume.icons.active": "#f7768e",
|
||||||
"theme.bar.menus.menu.volume.icons.passive": "#565f89",
|
"theme.bar.menus.menu.volume.icons.passive": "#565f89",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.active": "#f7768e",
|
"theme.bar.menus.menu.volume.iconbutton.active": "#f7768e",
|
||||||
"theme.bar.menus.menu.volume.iconbutton.passive": "#c0caf5",
|
"theme.bar.menus.menu.volume.iconbutton.passive": "#c0caf5",
|
||||||
"theme.bar.menus.menu.volume.listitems.active": "#f7768e",
|
"theme.bar.menus.menu.volume.listitems.active": "#f7768e",
|
||||||
"theme.bar.menus.menu.volume.listitems.passive": "#c0caf5",
|
"theme.bar.menus.menu.volume.listitems.passive": "#c0caf5",
|
||||||
"theme.bar.menus.menu.volume.border.color": "#414868",
|
"theme.bar.menus.menu.volume.border.color": "#414868",
|
||||||
"theme.bar.menus.menu.volume.background.color": "#1a1b26",
|
"theme.bar.menus.menu.volume.background.color": "#1a1b26",
|
||||||
"theme.bar.menus.menu.media.slider.puck": "#565f89",
|
"theme.bar.menus.menu.media.slider.puck": "#565f89",
|
||||||
"theme.bar.menus.menu.media.slider.backgroundhover": "#414868",
|
"theme.bar.menus.menu.media.slider.backgroundhover": "#414868",
|
||||||
"theme.bar.menus.menu.media.slider.background": "#565f89",
|
"theme.bar.menus.menu.media.slider.background": "#565f89",
|
||||||
"theme.bar.menus.menu.media.slider.primary": "#f7768e",
|
"theme.bar.menus.menu.media.slider.primary": "#f7768e",
|
||||||
"theme.bar.menus.menu.media.buttons.text": "#1a1b26",
|
"theme.bar.menus.menu.media.buttons.text": "#1a1b26",
|
||||||
"theme.bar.menus.menu.media.buttons.background": "#bb9af7",
|
"theme.bar.menus.menu.media.buttons.background": "#bb9af7",
|
||||||
"theme.bar.menus.menu.media.buttons.enabled": "#73daca",
|
"theme.bar.menus.menu.media.buttons.enabled": "#73daca",
|
||||||
"theme.bar.menus.menu.media.buttons.inactive": "#414868",
|
"theme.bar.menus.menu.media.buttons.inactive": "#414868",
|
||||||
"theme.bar.menus.menu.media.border.color": "#414868",
|
"theme.bar.menus.menu.media.border.color": "#414868",
|
||||||
"theme.bar.menus.menu.media.background.color": "#1a1b26",
|
"theme.bar.menus.menu.media.background.color": "#1a1b26",
|
||||||
"theme.bar.menus.menu.media.album": "#f7768e",
|
"theme.bar.menus.menu.media.album": "#f7768e",
|
||||||
"theme.bar.menus.menu.media.artist": "#73daca",
|
"theme.bar.menus.menu.media.artist": "#73daca",
|
||||||
"theme.bar.menus.menu.media.song": "#bb9af7",
|
"theme.bar.menus.menu.media.song": "#bb9af7",
|
||||||
"theme.bar.menus.tooltip.text": "#c0caf5",
|
"theme.bar.menus.tooltip.text": "#c0caf5",
|
||||||
"theme.bar.menus.tooltip.background": "#1a1b26",
|
"theme.bar.menus.tooltip.background": "#1a1b26",
|
||||||
"theme.bar.menus.dropdownmenu.divider": "#24283b",
|
"theme.bar.menus.dropdownmenu.divider": "#24283b",
|
||||||
"theme.bar.menus.dropdownmenu.text": "#c0caf5",
|
"theme.bar.menus.dropdownmenu.text": "#c0caf5",
|
||||||
"theme.bar.menus.dropdownmenu.background": "#1a1b26",
|
"theme.bar.menus.dropdownmenu.background": "#1a1b26",
|
||||||
"theme.bar.menus.slider.puck": "#565f89",
|
"theme.bar.menus.slider.puck": "#565f89",
|
||||||
"theme.bar.menus.slider.backgroundhover": "#414868",
|
"theme.bar.menus.slider.backgroundhover": "#414868",
|
||||||
"theme.bar.menus.slider.background": "#565f89",
|
"theme.bar.menus.slider.background": "#565f89",
|
||||||
"theme.bar.menus.slider.primary": "#bb9af7",
|
"theme.bar.menus.slider.primary": "#bb9af7",
|
||||||
"theme.bar.menus.progressbar.background": "#414868",
|
"theme.bar.menus.progressbar.background": "#414868",
|
||||||
"theme.bar.menus.progressbar.foreground": "#bb9af7",
|
"theme.bar.menus.progressbar.foreground": "#bb9af7",
|
||||||
"theme.bar.menus.iconbuttons.active": "#bb9af7",
|
"theme.bar.menus.iconbuttons.active": "#bb9af7",
|
||||||
"theme.bar.menus.iconbuttons.passive": "#c0caf5",
|
"theme.bar.menus.iconbuttons.passive": "#c0caf5",
|
||||||
"theme.bar.menus.buttons.text": "#1a1b26",
|
"theme.bar.menus.buttons.text": "#1a1b26",
|
||||||
"theme.bar.menus.buttons.disabled": "#565f89",
|
"theme.bar.menus.buttons.disabled": "#565f89",
|
||||||
"theme.bar.menus.buttons.active": "#f7768e",
|
"theme.bar.menus.buttons.active": "#f7768e",
|
||||||
"theme.bar.menus.buttons.default": "#bb9af7",
|
"theme.bar.menus.buttons.default": "#bb9af7",
|
||||||
"theme.bar.menus.switch.puck": "#565f89",
|
"theme.bar.menus.switch.puck": "#565f89",
|
||||||
"theme.bar.menus.switch.disabled": "#565f89",
|
"theme.bar.menus.switch.disabled": "#565f89",
|
||||||
"theme.bar.menus.switch.enabled": "#bb9af7",
|
"theme.bar.menus.switch.enabled": "#bb9af7",
|
||||||
"theme.bar.menus.icons.active": "#bb9af7",
|
"theme.bar.menus.icons.active": "#bb9af7",
|
||||||
"theme.bar.menus.icons.passive": "#414868",
|
"theme.bar.menus.icons.passive": "#414868",
|
||||||
"theme.bar.menus.listitems.active": "#bb9af7",
|
"theme.bar.menus.listitems.active": "#bb9af7",
|
||||||
"theme.bar.menus.listitems.passive": "#c0caf5",
|
"theme.bar.menus.listitems.passive": "#c0caf5",
|
||||||
"theme.bar.menus.label": "#bb9af7",
|
"theme.bar.menus.label": "#bb9af7",
|
||||||
"theme.bar.menus.feinttext": "#414868",
|
"theme.bar.menus.feinttext": "#414868",
|
||||||
"theme.bar.menus.dimtext": "#414868",
|
"theme.bar.menus.dimtext": "#414868",
|
||||||
"theme.bar.menus.cards": "#24283b",
|
"theme.bar.menus.cards": "#24283b",
|
||||||
"theme.bar.buttons.notifications.total": "#bb9af7",
|
"theme.bar.buttons.notifications.total": "#bb9af7",
|
||||||
"theme.bar.buttons.notifications.icon": "#bb9af7",
|
"theme.bar.buttons.notifications.icon": "#bb9af7",
|
||||||
"theme.bar.buttons.notifications.background": "#272a3d",
|
"theme.bar.buttons.notifications.background": "#272a3d",
|
||||||
"theme.bar.buttons.clock.icon": "#f7768e",
|
"theme.bar.buttons.clock.icon": "#f7768e",
|
||||||
"theme.bar.buttons.clock.text": "#f7768e",
|
"theme.bar.buttons.clock.text": "#f7768e",
|
||||||
"theme.bar.buttons.clock.background": "#272a3d",
|
"theme.bar.buttons.clock.background": "#272a3d",
|
||||||
"theme.bar.buttons.battery.icon": "#e0af68",
|
"theme.bar.buttons.battery.icon": "#e0af68",
|
||||||
"theme.bar.buttons.battery.text": "#e0af68",
|
"theme.bar.buttons.battery.text": "#e0af68",
|
||||||
"theme.bar.buttons.battery.background": "#272a3d",
|
"theme.bar.buttons.battery.background": "#272a3d",
|
||||||
"theme.bar.buttons.systray.background": "#272a3d",
|
"theme.bar.buttons.systray.background": "#272a3d",
|
||||||
"theme.bar.buttons.bluetooth.icon": "#7dcfff",
|
"theme.bar.buttons.bluetooth.icon": "#7dcfff",
|
||||||
"theme.bar.buttons.bluetooth.text": "#7dcfff",
|
"theme.bar.buttons.bluetooth.text": "#7dcfff",
|
||||||
"theme.bar.buttons.bluetooth.background": "#272a3d",
|
"theme.bar.buttons.bluetooth.background": "#272a3d",
|
||||||
"theme.bar.buttons.network.icon": "#bb9af7",
|
"theme.bar.buttons.network.icon": "#bb9af7",
|
||||||
"theme.bar.buttons.network.text": "#bb9af7",
|
"theme.bar.buttons.network.text": "#bb9af7",
|
||||||
"theme.bar.buttons.network.background": "#272a3d",
|
"theme.bar.buttons.network.background": "#272a3d",
|
||||||
"theme.bar.buttons.volume.icon": "#f7768e",
|
"theme.bar.buttons.volume.icon": "#f7768e",
|
||||||
"theme.bar.buttons.volume.text": "#f7768e",
|
"theme.bar.buttons.volume.text": "#f7768e",
|
||||||
"theme.bar.buttons.volume.background": "#272a3d",
|
"theme.bar.buttons.volume.background": "#272a3d",
|
||||||
"theme.bar.buttons.windowtitle.icon": "#f7768e",
|
"theme.bar.buttons.windowtitle.icon": "#f7768e",
|
||||||
"theme.bar.buttons.windowtitle.text": "#f7768e",
|
"theme.bar.buttons.windowtitle.text": "#f7768e",
|
||||||
"theme.bar.buttons.windowtitle.background": "#272a3d",
|
"theme.bar.buttons.windowtitle.background": "#272a3d",
|
||||||
"theme.bar.buttons.workspaces.active": "#f7768e",
|
"theme.bar.buttons.workspaces.active": "#f7768e",
|
||||||
"theme.bar.buttons.workspaces.occupied": "#f7768e",
|
"theme.bar.buttons.workspaces.occupied": "#f7768e",
|
||||||
"theme.bar.buttons.workspaces.available": "#7dcfff",
|
"theme.bar.buttons.workspaces.available": "#7dcfff",
|
||||||
"theme.bar.buttons.workspaces.hover": "#414868",
|
"theme.bar.buttons.workspaces.hover": "#414868",
|
||||||
"theme.bar.buttons.workspaces.background": "#272a3d",
|
"theme.bar.buttons.workspaces.background": "#272a3d",
|
||||||
"theme.bar.buttons.dashboard.icon": "#e0af68",
|
"theme.bar.buttons.dashboard.icon": "#e0af68",
|
||||||
"theme.bar.buttons.dashboard.background": "#272a3d",
|
"theme.bar.buttons.dashboard.background": "#272a3d",
|
||||||
"theme.osd.label": "#bb9af7",
|
"theme.osd.label": "#bb9af7",
|
||||||
"theme.osd.icon": "#1a1b26",
|
"theme.osd.icon": "#1a1b26",
|
||||||
"theme.osd.bar_overflow_color": "#f7768e",
|
"theme.osd.bar_overflow_color": "#f7768e",
|
||||||
"theme.osd.bar_empty_color": "#414868",
|
"theme.osd.bar_empty_color": "#414868",
|
||||||
"theme.osd.bar_color": "#bb9af7",
|
"theme.osd.bar_color": "#bb9af7",
|
||||||
"theme.osd.icon_container": "#bb9af7",
|
"theme.osd.icon_container": "#bb9af7",
|
||||||
"theme.osd.bar_container": "#1a1b26",
|
"theme.osd.bar_container": "#1a1b26",
|
||||||
"theme.notification.close_button.label": "#1a1b26",
|
"theme.notification.close_button.label": "#1a1b26",
|
||||||
"theme.notification.close_button.background": "#f7768e",
|
"theme.notification.close_button.background": "#f7768e",
|
||||||
"theme.notification.labelicon": "#bb9af7",
|
"theme.notification.labelicon": "#bb9af7",
|
||||||
"theme.notification.text": "#c0caf5",
|
"theme.notification.text": "#c0caf5",
|
||||||
"theme.notification.time": "#9aa5ce",
|
"theme.notification.time": "#9aa5ce",
|
||||||
"theme.notification.border": "#565f89",
|
"theme.notification.border": "#565f89",
|
||||||
"theme.notification.label": "#bb9af7",
|
"theme.notification.label": "#bb9af7",
|
||||||
"theme.notification.actions.text": "#24283b",
|
"theme.notification.actions.text": "#24283b",
|
||||||
"theme.notification.actions.background": "#bb9af7",
|
"theme.notification.actions.background": "#bb9af7",
|
||||||
"theme.notification.background": "#1a1b26",
|
"theme.notification.background": "#1a1b26",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
|
"theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#181825",
|
||||||
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#c678dd",
|
"theme.bar.buttons.workspaces.numbered_active_underline_color": "#c678dd",
|
||||||
"theme.bar.menus.menu.media.card.color": "#24283b",
|
"theme.bar.menus.menu.media.card.color": "#24283b",
|
||||||
"theme.bar.menus.check_radio_button.background": "#3b4261",
|
"theme.bar.menus.check_radio_button.background": "#3b4261",
|
||||||
"theme.bar.menus.check_radio_button.active": "#bb9af7",
|
"theme.bar.menus.check_radio_button.active": "#bb9af7",
|
||||||
"theme.bar.buttons.style": "default",
|
"theme.bar.buttons.style": "default",
|
||||||
"theme.bar.menus.menu.notifications.pager.button": "#bb9af7",
|
"theme.bar.menus.menu.notifications.pager.button": "#bb9af7",
|
||||||
"theme.bar.menus.menu.notifications.scrollbar.color": "#bb9af7",
|
"theme.bar.menus.menu.notifications.scrollbar.color": "#bb9af7",
|
||||||
"theme.bar.menus.menu.notifications.pager.label": "#565f89",
|
"theme.bar.menus.menu.notifications.pager.label": "#565f89",
|
||||||
"theme.bar.menus.menu.notifications.pager.background": "#1a1b26",
|
"theme.bar.menus.menu.notifications.pager.background": "#1a1b26",
|
||||||
"theme.bar.buttons.clock.icon_background": "#f7768e",
|
"theme.bar.buttons.clock.icon_background": "#f7768e",
|
||||||
"theme.bar.buttons.modules.ram.icon": "#e0af68",
|
"theme.bar.buttons.modules.ram.icon": "#e0af68",
|
||||||
"theme.bar.buttons.modules.storage.icon_background": "#f7768e",
|
"theme.bar.buttons.modules.storage.icon_background": "#f7768e",
|
||||||
"theme.bar.menus.popover.border": "#1a1b26",
|
"theme.bar.menus.popover.border": "#1a1b26",
|
||||||
"theme.bar.buttons.volume.icon_background": "#f7768e",
|
"theme.bar.buttons.volume.icon_background": "#f7768e",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#7dcfff",
|
"theme.bar.menus.menu.power.buttons.sleep.icon_background": "#7dcfff",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.text": "#e0af68",
|
"theme.bar.menus.menu.power.buttons.restart.text": "#e0af68",
|
||||||
"theme.bar.buttons.modules.updates.background": "#272a3d",
|
"theme.bar.buttons.modules.updates.background": "#272a3d",
|
||||||
"theme.bar.buttons.modules.storage.icon": "#f7768e",
|
"theme.bar.buttons.modules.storage.icon": "#f7768e",
|
||||||
"theme.bar.buttons.modules.netstat.background": "#272a3d",
|
"theme.bar.buttons.modules.netstat.background": "#272a3d",
|
||||||
"theme.bar.buttons.modules.weather.icon": "#bb9af7",
|
"theme.bar.buttons.modules.weather.icon": "#bb9af7",
|
||||||
"theme.bar.buttons.modules.netstat.text": "#9ece6a",
|
"theme.bar.buttons.modules.netstat.text": "#9ece6a",
|
||||||
"theme.bar.buttons.modules.storage.background": "#272a3d",
|
"theme.bar.buttons.modules.storage.background": "#272a3d",
|
||||||
"theme.bar.buttons.modules.power.icon": "#f7768e",
|
"theme.bar.buttons.modules.power.icon": "#f7768e",
|
||||||
"theme.bar.buttons.modules.storage.text": "#f7768e",
|
"theme.bar.buttons.modules.storage.text": "#f7768e",
|
||||||
"theme.bar.buttons.modules.cpu.background": "#272a3d",
|
"theme.bar.buttons.modules.cpu.background": "#272a3d",
|
||||||
"theme.bar.menus.menu.power.border.color": "#414868",
|
"theme.bar.menus.menu.power.border.color": "#414868",
|
||||||
"theme.bar.buttons.network.icon_background": "#caa6f7",
|
"theme.bar.buttons.network.icon_background": "#caa6f7",
|
||||||
"theme.bar.buttons.modules.power.icon_background": "#f7768e",
|
"theme.bar.buttons.modules.power.icon_background": "#f7768e",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon": "#1a1b26",
|
"theme.bar.menus.menu.power.buttons.logout.icon": "#1a1b26",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#e0af68",
|
"theme.bar.menus.menu.power.buttons.restart.icon_background": "#e0af68",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.icon": "#1a1b26",
|
"theme.bar.menus.menu.power.buttons.restart.icon": "#1a1b26",
|
||||||
"theme.bar.buttons.modules.cpu.icon": "#f7768e",
|
"theme.bar.buttons.modules.cpu.icon": "#f7768e",
|
||||||
"theme.bar.buttons.battery.icon_background": "#e0af68",
|
"theme.bar.buttons.battery.icon_background": "#e0af68",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon_background": "#7dcfff",
|
"theme.bar.buttons.modules.kbLayout.icon_background": "#7dcfff",
|
||||||
"theme.bar.buttons.modules.weather.text": "#bb9af7",
|
"theme.bar.buttons.modules.weather.text": "#bb9af7",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#1a1b26",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon": "#1a1b26",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.text": "#7dcfff",
|
"theme.bar.menus.menu.power.buttons.sleep.text": "#7dcfff",
|
||||||
"theme.bar.buttons.modules.weather.icon_background": "#bb9af7",
|
"theme.bar.buttons.modules.weather.icon_background": "#bb9af7",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.background": "#24283b",
|
"theme.bar.menus.menu.power.buttons.shutdown.background": "#24283b",
|
||||||
"theme.bar.buttons.media.icon_background": "#bb9af7",
|
"theme.bar.buttons.media.icon_background": "#bb9af7",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.background": "#24283b",
|
"theme.bar.menus.menu.power.buttons.logout.background": "#24283b",
|
||||||
"theme.bar.buttons.modules.kbLayout.icon": "#7dcfff",
|
"theme.bar.buttons.modules.kbLayout.icon": "#7dcfff",
|
||||||
"theme.bar.buttons.modules.ram.icon_background": "#e0af68",
|
"theme.bar.buttons.modules.ram.icon_background": "#e0af68",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#f7768e",
|
"theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#f7768e",
|
||||||
"theme.bar.menus.menu.power.buttons.shutdown.text": "#f7768e",
|
"theme.bar.menus.menu.power.buttons.shutdown.text": "#f7768e",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.background": "#24283b",
|
"theme.bar.menus.menu.power.buttons.sleep.background": "#24283b",
|
||||||
"theme.bar.buttons.modules.ram.text": "#e0af68",
|
"theme.bar.buttons.modules.ram.text": "#e0af68",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.text": "#9ece6a",
|
"theme.bar.menus.menu.power.buttons.logout.text": "#9ece6a",
|
||||||
"theme.bar.buttons.modules.updates.icon_background": "#bb9af7",
|
"theme.bar.buttons.modules.updates.icon_background": "#bb9af7",
|
||||||
"theme.bar.buttons.modules.kbLayout.background": "#272a3d",
|
"theme.bar.buttons.modules.kbLayout.background": "#272a3d",
|
||||||
"theme.bar.buttons.modules.power.background": "#272a3d",
|
"theme.bar.buttons.modules.power.background": "#272a3d",
|
||||||
"theme.bar.buttons.modules.weather.background": "#272a3d",
|
"theme.bar.buttons.modules.weather.background": "#272a3d",
|
||||||
"theme.bar.buttons.icon_background": "#272a3d",
|
"theme.bar.buttons.icon_background": "#272a3d",
|
||||||
"theme.bar.menus.menu.power.background.color": "#1a1b26",
|
"theme.bar.menus.menu.power.background.color": "#1a1b26",
|
||||||
"theme.bar.buttons.modules.ram.background": "#272a3d",
|
"theme.bar.buttons.modules.ram.background": "#272a3d",
|
||||||
"theme.bar.buttons.modules.netstat.icon": "#9ece6a",
|
"theme.bar.buttons.modules.netstat.icon": "#9ece6a",
|
||||||
"theme.bar.buttons.windowtitle.icon_background": "#f7768e",
|
"theme.bar.buttons.windowtitle.icon_background": "#f7768e",
|
||||||
"theme.bar.buttons.modules.cpu.icon_background": "#f7768e",
|
"theme.bar.buttons.modules.cpu.icon_background": "#f7768e",
|
||||||
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#9ece6a",
|
"theme.bar.menus.menu.power.buttons.logout.icon_background": "#9ece6a",
|
||||||
"theme.bar.buttons.modules.updates.text": "#bb9af7",
|
"theme.bar.buttons.modules.updates.text": "#bb9af7",
|
||||||
"theme.bar.menus.menu.power.buttons.sleep.icon": "#1a1b26",
|
"theme.bar.menus.menu.power.buttons.sleep.icon": "#1a1b26",
|
||||||
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
|
"theme.bar.buttons.bluetooth.icon_background": "#89dbeb",
|
||||||
"theme.bar.menus.menu.power.buttons.restart.background": "#24283b",
|
"theme.bar.menus.menu.power.buttons.restart.background": "#24283b",
|
||||||
"theme.bar.buttons.modules.updates.icon": "#bb9af7",
|
"theme.bar.buttons.modules.updates.icon": "#bb9af7",
|
||||||
"theme.bar.buttons.modules.cpu.text": "#f7768e",
|
"theme.bar.buttons.modules.cpu.text": "#f7768e",
|
||||||
"theme.bar.buttons.modules.netstat.icon_background": "#9ece6a",
|
"theme.bar.buttons.modules.netstat.icon_background": "#9ece6a",
|
||||||
"theme.bar.buttons.modules.kbLayout.text": "#7dcfff",
|
"theme.bar.buttons.modules.kbLayout.text": "#7dcfff",
|
||||||
"theme.bar.buttons.notifications.icon_background": "#bb9af7",
|
"theme.bar.buttons.notifications.icon_background": "#bb9af7",
|
||||||
"theme.bar.buttons.modules.power.border": "#f7768e",
|
"theme.bar.buttons.modules.power.border": "#f7768e",
|
||||||
"theme.bar.buttons.modules.weather.border": "#bb9af7",
|
"theme.bar.buttons.modules.weather.border": "#bb9af7",
|
||||||
"theme.bar.buttons.modules.updates.border": "#bb9af7",
|
"theme.bar.buttons.modules.updates.border": "#bb9af7",
|
||||||
"theme.bar.buttons.modules.kbLayout.border": "#7dcfff",
|
"theme.bar.buttons.modules.kbLayout.border": "#7dcfff",
|
||||||
"theme.bar.buttons.modules.netstat.border": "#9ece6a",
|
"theme.bar.buttons.modules.netstat.border": "#9ece6a",
|
||||||
"theme.bar.buttons.modules.storage.border": "#f7768e",
|
"theme.bar.buttons.modules.storage.border": "#f7768e",
|
||||||
"theme.bar.buttons.modules.cpu.border": "#f7768e",
|
"theme.bar.buttons.modules.cpu.border": "#f7768e",
|
||||||
"theme.bar.buttons.modules.ram.border": "#e0af68",
|
"theme.bar.buttons.modules.ram.border": "#e0af68",
|
||||||
"theme.bar.buttons.notifications.border": "#bb9af7",
|
"theme.bar.buttons.notifications.border": "#bb9af7",
|
||||||
"theme.bar.buttons.clock.border": "#f7768e",
|
"theme.bar.buttons.clock.border": "#f7768e",
|
||||||
"theme.bar.buttons.battery.border": "#e0af68",
|
"theme.bar.buttons.battery.border": "#e0af68",
|
||||||
"theme.bar.buttons.systray.border": "#414868",
|
"theme.bar.buttons.systray.border": "#414868",
|
||||||
"theme.bar.buttons.bluetooth.border": "#7dcfff",
|
"theme.bar.buttons.bluetooth.border": "#7dcfff",
|
||||||
"theme.bar.buttons.network.border": "#bb9af7",
|
"theme.bar.buttons.network.border": "#bb9af7",
|
||||||
"theme.bar.buttons.volume.border": "#f7768e",
|
"theme.bar.buttons.volume.border": "#f7768e",
|
||||||
"theme.bar.buttons.media.border": "#bb9af7",
|
"theme.bar.buttons.media.border": "#bb9af7",
|
||||||
"theme.bar.buttons.windowtitle.border": "#f7768e",
|
"theme.bar.buttons.windowtitle.border": "#f7768e",
|
||||||
"theme.bar.buttons.workspaces.border": "#f7768e",
|
"theme.bar.buttons.workspaces.border": "#f7768e",
|
||||||
"theme.bar.buttons.dashboard.border": "#e0af68",
|
"theme.bar.buttons.dashboard.border": "#e0af68",
|
||||||
"theme.bar.buttons.modules.submap.background": "#272a3d",
|
"theme.bar.buttons.modules.submap.background": "#272a3d",
|
||||||
"theme.bar.buttons.modules.submap.text": "#73daca",
|
"theme.bar.buttons.modules.submap.text": "#73daca",
|
||||||
"theme.bar.buttons.modules.submap.border": "#73daca",
|
"theme.bar.buttons.modules.submap.border": "#73daca",
|
||||||
"theme.bar.buttons.modules.submap.icon": "#73daca",
|
"theme.bar.buttons.modules.submap.icon": "#73daca",
|
||||||
"theme.bar.buttons.modules.submap.icon_background": "#272a3d",
|
"theme.bar.buttons.modules.submap.icon_background": "#272a3d",
|
||||||
"theme.bar.menus.menu.network.switch.enabled": "#bb9af7",
|
"theme.bar.menus.menu.network.switch.enabled": "#bb9af7",
|
||||||
"theme.bar.menus.menu.network.switch.disabled": "#565f89",
|
"theme.bar.menus.menu.network.switch.disabled": "#565f89",
|
||||||
"theme.bar.menus.menu.network.switch.puck": "#565f89",
|
"theme.bar.menus.menu.network.switch.puck": "#565f89",
|
||||||
"theme.bar.buttons.systray.customIcon": "#c0caf5",
|
"theme.bar.buttons.systray.customIcon": "#c0caf5",
|
||||||
"theme.bar.border.color": "#bb9af7",
|
"theme.bar.border.color": "#bb9af7",
|
||||||
"theme.bar.menus.menu.media.timestamp": "#c0caf5",
|
"theme.bar.menus.menu.media.timestamp": "#c0caf5",
|
||||||
"theme.bar.buttons.borderColor": "#bb9af7",
|
"theme.bar.buttons.borderColor": "#bb9af7",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#e0af68",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#e0af68",
|
||||||
"theme.bar.buttons.modules.hyprsunset.background": "#272a3d",
|
"theme.bar.buttons.modules.hyprsunset.background": "#272a3d",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e0af68",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#e0af68",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#e0af68",
|
"theme.bar.buttons.modules.hyprsunset.text": "#e0af68",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#e0af68"
|
"theme.bar.buttons.modules.hyprsunset.border": "#e0af68",
|
||||||
}
|
"theme.bar.buttons.modules.hypridle.icon": "#f7768e",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#272a3d",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#f7768e",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#f7768e",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#f7768e"
|
||||||
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#272a3d",
|
"theme.bar.buttons.modules.hyprsunset.background": "#272a3d",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
"theme.bar.buttons.modules.hyprsunset.icon": "#181825",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#e0af68",
|
"theme.bar.buttons.modules.hyprsunset.text": "#e0af68",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#e0af68"
|
"theme.bar.buttons.modules.hyprsunset.border": "#e0af68",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#181825",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#272a3d",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#f7768e",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#f7768e",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#f7768e"
|
||||||
}
|
}
|
||||||
@@ -349,5 +349,10 @@
|
|||||||
"theme.bar.buttons.modules.hyprsunset.background": "#f7768e",
|
"theme.bar.buttons.modules.hyprsunset.background": "#f7768e",
|
||||||
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f7768e",
|
"theme.bar.buttons.modules.hyprsunset.icon_background": "#f7768e",
|
||||||
"theme.bar.buttons.modules.hyprsunset.text": "#272a3d",
|
"theme.bar.buttons.modules.hyprsunset.text": "#272a3d",
|
||||||
"theme.bar.buttons.modules.hyprsunset.border": "#f7768e"
|
"theme.bar.buttons.modules.hyprsunset.border": "#f7768e",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon": "#272a3d",
|
||||||
|
"theme.bar.buttons.modules.hypridle.background": "#f7768e",
|
||||||
|
"theme.bar.buttons.modules.hypridle.icon_background": "#f7768e",
|
||||||
|
"theme.bar.buttons.modules.hypridle.text": "#272a3d",
|
||||||
|
"theme.bar.buttons.modules.hypridle.border": "#f7768e"
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user