Finish dynamic theming for audio and bluetooth menus

This commit is contained in:
Jas Singh
2024-07-17 22:04:00 -07:00
parent 50eeb4275d
commit 144746db0a
6 changed files with 133 additions and 71 deletions

View File

@@ -133,14 +133,15 @@ const options = mkOptions(OPTIONS, {
cards: opt(colors.base), cards: opt(colors.base),
border: opt(colors.surface0), border: opt(colors.surface0),
text: opt(colors.text), text: opt(colors.text),
dimtext: opt(colors.text),
label: opt(colors.lavender), label: opt(colors.lavender),
listitems: { listitems: {
passive: opt(colors.text), passive: opt(colors.text),
active: opt(colors.lavender) active: opt(colors.lavender)
}, },
icons: { icons: {
passive: opt(colors.overlay2), passive: opt(colors.surface2),
active: opt(colors.lavender) active: opt(colors.lavender),
}, },
switch: { switch: {
enabled: opt(colors.lavender), enabled: opt(colors.lavender),
@@ -149,9 +150,12 @@ const options = mkOptions(OPTIONS, {
}, },
buttons: { buttons: {
default: opt(colors.lavender), default: opt(colors.lavender),
hover: opt(colors.pink),
text: opt(colors.crust) text: opt(colors.crust)
}, },
iconbuttons: {
passive: opt(colors.text),
active: opt(colors.lavender)
},
dashboard: { dashboard: {
background: opt(colors.base2), background: opt(colors.base2),
text: opt(colors.yellow) text: opt(colors.yellow)
@@ -190,30 +194,25 @@ const options = mkOptions(OPTIONS, {
}, },
shuffle: { shuffle: {
background: opt(colors.lavender), background: opt(colors.lavender),
hover: opt(colors.pink),
active: opt(colors.pink), active: opt(colors.pink),
text: opt(colors.crust) text: opt(colors.crust)
}, },
previous: { previous: {
background: opt(colors.lavender), background: opt(colors.lavender),
hover: opt(colors.pink),
text: opt(colors.crust) text: opt(colors.crust)
}, },
playpause: { playpause: {
background: opt(colors.lavender), background: opt(colors.lavender),
hover: opt(colors.pink),
text: opt(colors.crust) text: opt(colors.crust)
}, },
next: { next: {
background: opt(colors.lavender), background: opt(colors.lavender),
hover: opt(colors.pink),
text: opt(colors.crust) text: opt(colors.crust)
}, },
loop: { loop: {
background: opt(colors.lavender), background: opt(colors.lavender),
hover: opt(colors.pink),
active: opt(colors.pink), active: opt(colors.pink),
text: opt(colors.crust) text: opt(colors.crust)
@@ -244,10 +243,9 @@ const options = mkOptions(OPTIONS, {
passive: opt(colors.text), passive: opt(colors.text),
active: opt(colors.maroon) active: opt(colors.maroon)
}, },
icons: { iconbutton: {
passive: opt(colors.overlay2), passive: opt(colors.overlay2),
active: opt(colors.maroon), active: opt(colors.maroon),
hover: opt(colors.maroon)
}, },
audio_slider: { audio_slider: {
primary: opt(colors.maroon), primary: opt(colors.maroon),
@@ -286,7 +284,6 @@ const options = mkOptions(OPTIONS, {
icons: { icons: {
passive: opt(colors.overlay2), passive: opt(colors.overlay2),
active: opt(colors.mauve), active: opt(colors.mauve),
hover: opt(colors.mauve)
}, },
iconbuttons: { iconbuttons: {
passive: opt(colors.text), passive: opt(colors.text),
@@ -319,9 +316,8 @@ const options = mkOptions(OPTIONS, {
active: opt(colors.sky) active: opt(colors.sky)
}, },
icons: { icons: {
passive: opt(colors.overlay2), passive: opt(colors.text),
active: opt(colors.sky), active: opt(colors.sky),
hover: opt(colors.sky)
}, },
iconbuttons: { iconbuttons: {
passive: opt(colors.text), passive: opt(colors.text),
@@ -359,7 +355,6 @@ const options = mkOptions(OPTIONS, {
icons: { icons: {
passive: opt(colors.overlay2), passive: opt(colors.overlay2),
active: opt(colors.yellow), active: opt(colors.yellow),
hover: opt(colors.yellow)
}, },
}, },
clock: { clock: {
@@ -435,44 +430,36 @@ const options = mkOptions(OPTIONS, {
shortcuts_left: { shortcuts_left: {
shortcut1: { shortcut1: {
background: opt(colors.lavender), background: opt(colors.lavender),
hover: opt(colors.pink),
text: opt(colors.crust), text: opt(colors.crust),
}, },
shortcut2: { shortcut2: {
background: opt(colors.lavender), background: opt(colors.lavender),
hover: opt(colors.pink),
text: opt(colors.crust), text: opt(colors.crust),
}, },
shortcut3: { shortcut3: {
background: opt(colors.lavender), background: opt(colors.lavender),
hover: opt(colors.pink),
text: opt(colors.crust), text: opt(colors.crust),
}, },
shortcut4: { shortcut4: {
background: opt(colors.lavender), background: opt(colors.lavender),
hover: opt(colors.pink),
text: opt(colors.crust), text: opt(colors.crust),
}, },
}, },
shortcuts_right: { shortcuts_right: {
shortcut1: { shortcut1: {
background: opt(colors.lavender), background: opt(colors.lavender),
hover: opt(colors.pink),
text: opt(colors.crust), text: opt(colors.crust),
}, },
shortcut2: { shortcut2: {
background: opt(colors.lavender), background: opt(colors.lavender),
hover: opt(colors.pink),
text: opt(colors.crust), text: opt(colors.crust),
}, },
shortcut3: { shortcut3: {
background: opt(colors.lavender), background: opt(colors.lavender),
hover: opt(colors.pink),
text: opt(colors.crust), text: opt(colors.crust),
}, },
shortcut4: { shortcut4: {
background: opt(colors.lavender), background: opt(colors.lavender),
hover: opt(colors.pink),
text: opt(colors.crust), text: opt(colors.crust),
}, },
}, },

View File

@@ -1,5 +1,4 @@
/* eslint-disable max-len */ /* eslint-disable max-len */
import { exec } from "resource:///com/github/Aylur/ags/utils.js";
import { type Opt } from "lib/option" import { type Opt } from "lib/option"
import options from "options" import options from "options"
import { bash, dependencies } from "lib/utils" import { bash, dependencies } from "lib/utils"
@@ -53,10 +52,9 @@ async function resetCss() {
const imports = [vars].map(f => `@import '${f}';`) const imports = [vars].map(f => `@import '${f}';`)
console.log(variables());
await Utils.writeFile(variables().join("\n"), vars) await Utils.writeFile(variables().join("\n"), vars)
let mainScss = await Utils.readFile(localScss); let mainScss = Utils.readFile(localScss);
mainScss = `${imports}\n${mainScss}`; mainScss = `${imports}\n${mainScss}`;
await Utils.writeFile(mainScss, scss) await Utils.writeFile(mainScss, scss)

View File

@@ -1,39 +1,93 @@
@import "../colors"; @import "../colors";
@import '../../variables';
.menu-dropdown-label.audio { .menu-dropdown-label.audio {
color: $maroon; color: if($bar-menus-monochrome, $bar-menus-label, $bar-menus-menu-volume-label-color);
} }
.menu-label.audio { .menu-label.audio {
color: $maroon; color: if($bar-menus-monochrome, $bar-menus-label, $bar-menus-menu-volume-label-color);
} }
.menu-button-isactive.audio { .menu-button-isactive.audio {
color: $maroon; color: if($bar-menus-monochrome, $bar-menus-icons-active, $bar-menus-menu-volume-icons-active);
} }
.menu-active-slider { .menu-active-slider {
trough { trough {
highlight, highlight,
progress { progress {
background: $maroon; background: if($bar-menus-monochrome, $bar-menus-slider-primary, $bar-menus-menu-media-slider-primary);
} }
} }
} }
.menu-button.audio { .menu-active-button {
.menu-active-icon.playback,
.menu-active-icon.input {
color: if($bar-menus-monochrome, $bar-menus-iconbuttons-active, $bar-menus-menu-volume-iconbuttons-active);
opacity: 1;
}
&.muted {
.menu-active-icon.playback,
.menu-active-icon.input {
color: if($bar-menus-monochrome, $bar-menus-iconbuttons-passive, $bar-menus-menu-volume-iconbuttons-passive);
opacity: 1;
}
}
&:hover { &:hover {
color: $maroon; .menu-active-icon.playback,
.menu-active-icon.input {
color: if($bar-menus-monochrome, $bar-menus-iconbuttons-passive, $bar-menus-menu-volume-iconbuttons-passive);
opacity: 0.3;
}
}
&.muted:hover {
.menu-active-icon.playback,
.menu-active-icon.input {
color: if($bar-menus-monochrome, $bar-menus-iconbuttons-active, $bar-menus-menu-volume-iconbuttons-active);
opacity: 1;
}
}
}
.menu-button-icon.playback,
.menu-button-icon.input {
color: if($bar-menus-monochrome, $bar-menus-icons-passive, $bar-menus-menu-volume-icons-passive);
&.active {
color: if($bar-menus-monochrome, $bar-menus-icons-active, $bar-menus-menu-volume-icons-active);
}
}
.menu-button.audio {
color: if($bar-menus-monochrome, $bar-menus-icons-passive, $bar-menus-menu-volume-icons-passive);
.menu-button-name.playback,
.menu-button-name.input {
color: if($bar-menus-monochrome, $bar-menus-text, $bar-menus-menu-volume-text);
}
&:hover {
.menu-button-name.playback,
.menu-button-name.input {
color: if($bar-menus-monochrome, $bar-menus-icons-active, $bar-menus-menu-volume-icons-active);
}
} }
} }
.menu-section-container.volume { .menu-section-container.volume {
margin-bottom: 0.65em; margin-bottom: 0.65em;
} }
.menu-section-container.playback { .menu-section-container.playback {
margin-top: 0em; margin-top: 0em;
margin-bottom: 1em; margin-bottom: 1em;
} }
.menu-section-container.input { .menu-section-container.input {
margin-top: 0em; margin-top: 0em;
} }
@@ -41,6 +95,7 @@
.menu-label-container.input { .menu-label-container.input {
border-radius: 0em; border-radius: 0em;
} }
.menu-items-section.playback { .menu-items-section.playback {
border-radius: 0em; border-radius: 0em;
} }

View File

@@ -2,13 +2,14 @@
.menu-items-container.bluetooth { .menu-items-container.bluetooth {
font-size: 1.3em; font-size: 1.3em;
.menu-section-container { .menu-section-container {
margin: 1em 0em; margin: 1em 0em;
} }
.menu-label-container { .menu-label-container {
.menu-label { .menu-label {
color: $sky; color: if($bar-menus-monochrome, $bar-menus-label, $bar-menus-menu-bluetooth-label-color);
} }
.controls-container { .controls-container {
@@ -24,25 +25,40 @@
button { button {
margin-right: 0.5em; margin-right: 0.5em;
&.search { &.search {
image { image {
color: $text; color: if($bar-menus-monochrome, $bar-menus-iconbuttons-passive, $bar-menus-menu-bluetooth-iconbuttons-passive);
} }
&:hover image { &:hover image {
color: $sky; color: if($bar-menus-monochrome, $bar-menus-iconbuttons-active, $bar-menus-menu-bluetooth-iconbuttons-active);
} }
font-size: 0.8em; font-size: 0.8em;
margin-bottom: 0em; margin-bottom: 0em;
} }
&:hover { &:hover {
color: $sky; color: if($bar-menus-monochrome, $bar-menus-iconbuttons-active, $bar-menus-menu-bluetooth-iconbuttons-active);
}
}
.menu-icon-button.bluetooth {
color: if($bar-menus-monochrome, $bar-menus-iconbuttons-passive, $bar-menus-menu-bluetooth-iconbuttons-passive);
&:hover {
color: if($bar-menus-monochrome, $bar-menus-iconbuttons-active, $bar-menus-menu-bluetooth-iconbuttons-active);
} }
} }
.bluetooth-element-item { .bluetooth-element-item {
margin-bottom: 0.4em; margin-bottom: 0.4em;
&:hover { &:hover {
color: $sky; .menu-button-icon, .menu-button-name {
color: if($bar-menus-monochrome, $bar-menus-iconbuttons-active, $bar-menus-menu-bluetooth-iconbuttons-active);
}
} }
image { image {
@@ -52,35 +68,65 @@
min-width: 1em; min-width: 1em;
&.active { &.active {
color: $sky; color: if($bar-menus-monochrome, $bar-menus-icons-active, $bar-menus-menu-bluetooth-icons-active);
} }
} }
label { label {
color: if($bar-menus-monochrome, $bar-menus-text, $bar-menus-menu-bluetooth-text);
font-size: 1em; font-size: 1em;
} }
.menu-button-icon { .menu-button-icon {
font-size: 1.5em; font-size: 1.5em;
color: if($bar-menus-monochrome, $bar-menus-icons-passive, $bar-menus-menu-bluetooth-icons-passive);
&.active { &.active {
color: $sky; color: if($bar-menus-monochrome, $bar-menus-icons-active, $bar-menus-menu-bluetooth-icons-active);
} }
} }
.connection-status { .connection-status {
font-size: 0.9em; font-size: 0.9em;
margin-left: 0.6rem; margin-left: 0.6rem;
color: if($bar-menus-monochrome, $bar-menus-text, $bar-menus-menu-bluetooth-text);
opacity: 0.4;
} }
} }
spinner { spinner {
min-height: 1.3em; min-height: 1.3em;
min-width: 1.3em; min-width: 1.3em;
color: $sky; color: if($bar-menus-monochrome, $bar-menus-iconbuttons-active, $bar-menus-menu-bluetooth-iconbuttons-active);
} }
.menu-separator { .menu-separator {
margin: 0em 1em; margin: 0em 1em;
} }
.menu-switch.bluetooth {
background-color: if($bar-menus-monochrome, $bar-menus-switch-disabled, $bar-menus-menu-bluetooth-switch-disabled);
&:checked {
background: if($bar-menus-monochrome, $bar-menus-switch-enabled, $bar-menus-menu-bluetooth-switch-enabled);
}
slider {
background-color: if($bar-menus-monochrome, $bar-menus-switch-puck, $bar-menus-menu-bluetooth-switch-puck);
}
&:hover {
trough {
background: if($bar-menus-monochrome, $bar-menus-switch-disabled, $bar-menus-menu-bluetooth-switch-disabled);
}
slider {
background: if($bar-menus-monochrome, $bar-menus-switch-puck, $bar-menus-menu-bluetooth-switch-puck);
}
}
&:active {
background: if($bar-menus-monochrome, $bar-menus-switch-enabled, $bar-menus-menu-bluetooth-switch-enabled);
}
}
} }

View File

@@ -161,7 +161,6 @@ tooltip label {
padding: 0.1em; padding: 0.1em;
margin-bottom: -0.2em; margin-bottom: -0.2em;
.menu-active-icon { .menu-active-icon {
color: $overlay2;
font-size: 1.4em; font-size: 1.4em;
font-weight: bold; font-weight: bold;
@@ -201,9 +200,6 @@ tooltip label {
font-weight: bold; font-weight: bold;
} }
.dim {
color: $overlay0;
}
.menu-icon-button { .menu-icon-button {
&:hover { &:hover {
color: $surface2; color: $surface2;
@@ -229,12 +225,7 @@ tooltip label {
.menu-button-icon { .menu-button-icon {
font-size: 1.3em; font-size: 1.3em;
font-weight: bold; font-weight: bold;
color: $overlay0;
margin-right: .5rem; margin-right: .5rem;
&.active {
color: $maroon;
}
} }
.menu-item-box { .menu-item-box {

View File

@@ -63,17 +63,19 @@ $bar-menus-background: #11111b;
$bar-menus-cards: #1e1e2e; $bar-menus-cards: #1e1e2e;
$bar-menus-border: #313244; $bar-menus-border: #313244;
$bar-menus-text: #cdd6f4; $bar-menus-text: #cdd6f4;
$bar-menus-dimtext: #cdd6f4;
$bar-menus-label: #b4befe; $bar-menus-label: #b4befe;
$bar-menus-listitems-passive: #cdd6f4; $bar-menus-listitems-passive: #cdd6f4;
$bar-menus-listitems-active: #b4befe; $bar-menus-listitems-active: #b4befe;
$bar-menus-icons-passive: #9399b2; $bar-menus-icons-passive: #585b70;
$bar-menus-icons-active: #b4befe; $bar-menus-icons-active: #b4befe;
$bar-menus-switch-enabled: #b4befe; $bar-menus-switch-enabled: #b4befe;
$bar-menus-switch-disabled: #313244; $bar-menus-switch-disabled: #313244;
$bar-menus-switch-puck: #6c7086; $bar-menus-switch-puck: #6c7086;
$bar-menus-buttons-default: #b4befe; $bar-menus-buttons-default: #b4befe;
$bar-menus-buttons-hover: #f5c2e7;
$bar-menus-buttons-text: #11111b; $bar-menus-buttons-text: #11111b;
$bar-menus-iconbuttons-passive: #cdd6f4;
$bar-menus-iconbuttons-active: #b4befe;
$bar-menus-dashboard-background: #242438; $bar-menus-dashboard-background: #242438;
$bar-menus-dashboard-text: #f9e2af; $bar-menus-dashboard-text: #f9e2af;
$bar-menus-workspaces-background: #242438; $bar-menus-workspaces-background: #242438;
@@ -96,20 +98,15 @@ $bar-menus-menu-media-album: #242438;
$bar-menus-menu-media-buttons-inactive-background: #585b70; $bar-menus-menu-media-buttons-inactive-background: #585b70;
$bar-menus-menu-media-buttons-inactive-text: #11111b; $bar-menus-menu-media-buttons-inactive-text: #11111b;
$bar-menus-menu-media-buttons-shuffle-background: #b4befe; $bar-menus-menu-media-buttons-shuffle-background: #b4befe;
$bar-menus-menu-media-buttons-shuffle-hover: #f5c2e7;
$bar-menus-menu-media-buttons-shuffle-active: #f5c2e7; $bar-menus-menu-media-buttons-shuffle-active: #f5c2e7;
$bar-menus-menu-media-buttons-shuffle-text: #11111b; $bar-menus-menu-media-buttons-shuffle-text: #11111b;
$bar-menus-menu-media-buttons-previous-background: #b4befe; $bar-menus-menu-media-buttons-previous-background: #b4befe;
$bar-menus-menu-media-buttons-previous-hover: #f5c2e7;
$bar-menus-menu-media-buttons-previous-text: #11111b; $bar-menus-menu-media-buttons-previous-text: #11111b;
$bar-menus-menu-media-buttons-playpause-background: #b4befe; $bar-menus-menu-media-buttons-playpause-background: #b4befe;
$bar-menus-menu-media-buttons-playpause-hover: #f5c2e7;
$bar-menus-menu-media-buttons-playpause-text: #11111b; $bar-menus-menu-media-buttons-playpause-text: #11111b;
$bar-menus-menu-media-buttons-next-background: #b4befe; $bar-menus-menu-media-buttons-next-background: #b4befe;
$bar-menus-menu-media-buttons-next-hover: #f5c2e7;
$bar-menus-menu-media-buttons-next-text: #11111b; $bar-menus-menu-media-buttons-next-text: #11111b;
$bar-menus-menu-media-buttons-loop-background: #b4befe; $bar-menus-menu-media-buttons-loop-background: #b4befe;
$bar-menus-menu-media-buttons-loop-hover: #f5c2e7;
$bar-menus-menu-media-buttons-loop-active: #f5c2e7; $bar-menus-menu-media-buttons-loop-active: #f5c2e7;
$bar-menus-menu-media-buttons-loop-text: #11111b; $bar-menus-menu-media-buttons-loop-text: #11111b;
$bar-menus-menu-media-slider-primary: #f5c2e7; $bar-menus-menu-media-slider-primary: #f5c2e7;
@@ -123,9 +120,8 @@ $bar-menus-menu-volume-label-color: #eba0ac;
$bar-menus-menu-volume-text: #cdd6f4; $bar-menus-menu-volume-text: #cdd6f4;
$bar-menus-menu-volume-listitems-passive: #cdd6f4; $bar-menus-menu-volume-listitems-passive: #cdd6f4;
$bar-menus-menu-volume-listitems-active: #eba0ac; $bar-menus-menu-volume-listitems-active: #eba0ac;
$bar-menus-menu-volume-icons-passive: #9399b2; $bar-menus-menu-volume-iconbutton-passive: #9399b2;
$bar-menus-menu-volume-icons-active: #eba0ac; $bar-menus-menu-volume-iconbutton-active: #eba0ac;
$bar-menus-menu-volume-icons-hover: #eba0ac;
$bar-menus-menu-volume-audio_slider-primary: #eba0ac; $bar-menus-menu-volume-audio_slider-primary: #eba0ac;
$bar-menus-menu-volume-audio_slider-background: #585b70; $bar-menus-menu-volume-audio_slider-background: #585b70;
$bar-menus-menu-volume-audio_slider-backgroundhover: #45475a; $bar-menus-menu-volume-audio_slider-backgroundhover: #45475a;
@@ -144,7 +140,6 @@ $bar-menus-menu-network-listitems-passive: #cdd6f4;
$bar-menus-menu-network-listitems-active: #cba6f7; $bar-menus-menu-network-listitems-active: #cba6f7;
$bar-menus-menu-network-icons-passive: #9399b2; $bar-menus-menu-network-icons-passive: #9399b2;
$bar-menus-menu-network-icons-active: #cba6f7; $bar-menus-menu-network-icons-active: #cba6f7;
$bar-menus-menu-network-icons-hover: #cba6f7;
$bar-menus-menu-network-iconbuttons-passive: #cdd6f4; $bar-menus-menu-network-iconbuttons-passive: #cdd6f4;
$bar-menus-menu-network-iconbuttons-hover: #cba6f7; $bar-menus-menu-network-iconbuttons-hover: #cba6f7;
$bar-menus-menu-bluetooth-card-color: #1e1e2e; $bar-menus-menu-bluetooth-card-color: #1e1e2e;
@@ -159,9 +154,8 @@ $bar-menus-menu-bluetooth-switch-disabled: #313244;
$bar-menus-menu-bluetooth-switch-puck: #6c7086; $bar-menus-menu-bluetooth-switch-puck: #6c7086;
$bar-menus-menu-bluetooth-listitems-passive: #cdd6f4; $bar-menus-menu-bluetooth-listitems-passive: #cdd6f4;
$bar-menus-menu-bluetooth-listitems-active: #89dceb; $bar-menus-menu-bluetooth-listitems-active: #89dceb;
$bar-menus-menu-bluetooth-icons-passive: #9399b2; $bar-menus-menu-bluetooth-icons-passive: #cdd6f4;
$bar-menus-menu-bluetooth-icons-active: #89dceb; $bar-menus-menu-bluetooth-icons-active: #89dceb;
$bar-menus-menu-bluetooth-icons-hover: #89dceb;
$bar-menus-menu-bluetooth-iconbuttons-passive: #cdd6f4; $bar-menus-menu-bluetooth-iconbuttons-passive: #cdd6f4;
$bar-menus-menu-bluetooth-iconbuttons-hover: #89dceb; $bar-menus-menu-bluetooth-iconbuttons-hover: #89dceb;
$bar-menus-menu-systray-background-color: #242438; $bar-menus-menu-systray-background-color: #242438;
@@ -177,7 +171,6 @@ $bar-menus-menu-battery-listitems-passive: #cdd6f4;
$bar-menus-menu-battery-listitems-active: #f9e2af; $bar-menus-menu-battery-listitems-active: #f9e2af;
$bar-menus-menu-battery-icons-passive: #9399b2; $bar-menus-menu-battery-icons-passive: #9399b2;
$bar-menus-menu-battery-icons-active: #f9e2af; $bar-menus-menu-battery-icons-active: #f9e2af;
$bar-menus-menu-battery-icons-hover: #f9e2af;
$bar-menus-menu-clock-card-color: #1e1e2e; $bar-menus-menu-clock-card-color: #1e1e2e;
$bar-menus-menu-clock-background-color: #11111b; $bar-menus-menu-clock-background-color: #11111b;
$bar-menus-menu-clock-border-color: #313244; $bar-menus-menu-clock-border-color: #313244;
@@ -218,28 +211,20 @@ $bar-menus-menu-dashboard-powermenu-confirmation-body: #cdd6f4;
$bar-menus-menu-dashboard-powermenu-confirmation-confirm: #a6e3a1; $bar-menus-menu-dashboard-powermenu-confirmation-confirm: #a6e3a1;
$bar-menus-menu-dashboard-powermenu-confirmation-deny: #f38ba8; $bar-menus-menu-dashboard-powermenu-confirmation-deny: #f38ba8;
$bar-menus-menu-dashboard-shortcuts_left-shortcut1-background: #b4befe; $bar-menus-menu-dashboard-shortcuts_left-shortcut1-background: #b4befe;
$bar-menus-menu-dashboard-shortcuts_left-shortcut1-hover: #f5c2e7;
$bar-menus-menu-dashboard-shortcuts_left-shortcut1-text: #11111b; $bar-menus-menu-dashboard-shortcuts_left-shortcut1-text: #11111b;
$bar-menus-menu-dashboard-shortcuts_left-shortcut2-background: #b4befe; $bar-menus-menu-dashboard-shortcuts_left-shortcut2-background: #b4befe;
$bar-menus-menu-dashboard-shortcuts_left-shortcut2-hover: #f5c2e7;
$bar-menus-menu-dashboard-shortcuts_left-shortcut2-text: #11111b; $bar-menus-menu-dashboard-shortcuts_left-shortcut2-text: #11111b;
$bar-menus-menu-dashboard-shortcuts_left-shortcut3-background: #b4befe; $bar-menus-menu-dashboard-shortcuts_left-shortcut3-background: #b4befe;
$bar-menus-menu-dashboard-shortcuts_left-shortcut3-hover: #f5c2e7;
$bar-menus-menu-dashboard-shortcuts_left-shortcut3-text: #11111b; $bar-menus-menu-dashboard-shortcuts_left-shortcut3-text: #11111b;
$bar-menus-menu-dashboard-shortcuts_left-shortcut4-background: #b4befe; $bar-menus-menu-dashboard-shortcuts_left-shortcut4-background: #b4befe;
$bar-menus-menu-dashboard-shortcuts_left-shortcut4-hover: #f5c2e7;
$bar-menus-menu-dashboard-shortcuts_left-shortcut4-text: #11111b; $bar-menus-menu-dashboard-shortcuts_left-shortcut4-text: #11111b;
$bar-menus-menu-dashboard-shortcuts_right-shortcut1-background: #b4befe; $bar-menus-menu-dashboard-shortcuts_right-shortcut1-background: #b4befe;
$bar-menus-menu-dashboard-shortcuts_right-shortcut1-hover: #f5c2e7;
$bar-menus-menu-dashboard-shortcuts_right-shortcut1-text: #11111b; $bar-menus-menu-dashboard-shortcuts_right-shortcut1-text: #11111b;
$bar-menus-menu-dashboard-shortcuts_right-shortcut2-background: #b4befe; $bar-menus-menu-dashboard-shortcuts_right-shortcut2-background: #b4befe;
$bar-menus-menu-dashboard-shortcuts_right-shortcut2-hover: #f5c2e7;
$bar-menus-menu-dashboard-shortcuts_right-shortcut2-text: #11111b; $bar-menus-menu-dashboard-shortcuts_right-shortcut2-text: #11111b;
$bar-menus-menu-dashboard-shortcuts_right-shortcut3-background: #b4befe; $bar-menus-menu-dashboard-shortcuts_right-shortcut3-background: #b4befe;
$bar-menus-menu-dashboard-shortcuts_right-shortcut3-hover: #f5c2e7;
$bar-menus-menu-dashboard-shortcuts_right-shortcut3-text: #11111b; $bar-menus-menu-dashboard-shortcuts_right-shortcut3-text: #11111b;
$bar-menus-menu-dashboard-shortcuts_right-shortcut4-background: #b4befe; $bar-menus-menu-dashboard-shortcuts_right-shortcut4-background: #b4befe;
$bar-menus-menu-dashboard-shortcuts_right-shortcut4-hover: #f5c2e7;
$bar-menus-menu-dashboard-shortcuts_right-shortcut4-text: #11111b; $bar-menus-menu-dashboard-shortcuts_right-shortcut4-text: #11111b;
$bar-menus-menu-dashboard-controls-wifi-background: #cba6f7; $bar-menus-menu-dashboard-controls-wifi-background: #cba6f7;
$bar-menus-menu-dashboard-controls-wifi-text: #11111b; $bar-menus-menu-dashboard-controls-wifi-text: #11111b;