♻️ refactor(waybar): using css variables instead of plain colors
This commit is contained in:
parent
ba7ffdbfea
commit
c5d12e4b4c
1 changed files with 80 additions and 85 deletions
|
@ -1,3 +1,25 @@
|
||||||
|
/* Variables */
|
||||||
|
@define-color mantle #1e2030;
|
||||||
|
@define-color base rgb(36, 39, 58);
|
||||||
|
@define-color text #cad3f5;
|
||||||
|
@define-color surface0 #363a4f;
|
||||||
|
@define-color surface2 #5b6078;
|
||||||
|
@define-color blue #8aadf4;
|
||||||
|
@define-color green #a6da95;
|
||||||
|
@define-color peach #f5a97f;
|
||||||
|
@define-color rosewater #f4dbd6;
|
||||||
|
@define-color lavender #b7bdf8;
|
||||||
|
@define-color yellow #eed49f;
|
||||||
|
@define-color red #ed8796;
|
||||||
|
@define-color maroon #ee99a0;
|
||||||
|
@define-color teal #8bd5ca;
|
||||||
|
@define-color sky #91d7e3;
|
||||||
|
@define-color sapphire #7dc4e4;
|
||||||
|
@define-color mauve #c6a0f6;
|
||||||
|
@define-color pink #f5bde6;
|
||||||
|
@define-color border rgba(183, 189, 248, 0.4);
|
||||||
|
@define-color shadow rgb(30, 32, 48);
|
||||||
|
|
||||||
* {
|
* {
|
||||||
font-family: JetBrainsMono NF;
|
font-family: JetBrainsMono NF;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
|
@ -41,62 +63,58 @@
|
||||||
#custom-weather.showyIcyDay,
|
#custom-weather.showyIcyDay,
|
||||||
#custom-weather.snowyIcyNight,
|
#custom-weather.snowyIcyNight,
|
||||||
#custom-weather.default {
|
#custom-weather.default {
|
||||||
background-color: #24273a;
|
background-color: alpha(@base, 0.9);
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
margin: 2px 4px 5px 4px;
|
margin: 2px 4px 5px 4px;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
box-shadow: 3px 3px 1px 1px #181926;
|
box-shadow: 3px 3px 1px 1px alpha(@shadow, 0.7);
|
||||||
border: 2px solid rgba(183, 189, 248, 0.4);
|
border: 2px solid @border;
|
||||||
background-clip: padding-box;
|
background-clip: padding-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Window */
|
|
||||||
window#waybar {
|
window#waybar {
|
||||||
color: #cad3f5;
|
color: @text;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
color: #cdd6f4;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
window#waybar.hidden {
|
window#waybar.hidden {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Workspaces */
|
|
||||||
#workspaces * {
|
#workspaces * {
|
||||||
font-size: 13px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
#workspaces button label {
|
#workspaces button label {
|
||||||
color: #b7bdf8;
|
color: @lavender;
|
||||||
font-weight: bolder;
|
font-weight: bolder;
|
||||||
transition: all 0.5s cubic-bezier(0.55, -0.68, 0.48, 1.68);
|
transition: all 0.5s cubic-bezier(0.55, -0.68, 0.48, 1.68);
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.active label {
|
#workspaces button.active label {
|
||||||
color: #24273a;
|
color: @base;
|
||||||
font-weight: bolder;
|
font-weight: bolder;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.urgent {
|
#workspaces button.urgent {
|
||||||
background-color: #e06c75;
|
background-color: @red;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.urgent label {
|
#workspaces button.urgent label {
|
||||||
color: #24273a;
|
color: @base;
|
||||||
font-weight: bolder;
|
font-weight: bolder;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces {
|
#workspaces {
|
||||||
background-color: #24273a;
|
background-color: alpha(@base, 0.9);
|
||||||
border: 2px solid rgba(183, 189, 248, 0.4);
|
border: 2px solid @border;
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
margin: 2px 4px 5px 4px;
|
margin: 2px 4px 5px 4px;
|
||||||
box-shadow: 3px 3px 1px 1px #181926;
|
box-shadow: 3px 3px 1px 1px alpha(@shadow, 0.7);
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
background-clip: padding-box;
|
background-clip: padding-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button {
|
#workspaces button {
|
||||||
background-color: transparent;
|
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
margin-right: 3px;
|
margin-right: 3px;
|
||||||
margin-left: 3px;
|
margin-left: 3px;
|
||||||
|
@ -105,14 +123,14 @@ window#waybar.hidden {
|
||||||
padding: 0 5px;
|
padding: 0 5px;
|
||||||
font-weight: bolder;
|
font-weight: bolder;
|
||||||
min-width: 20px;
|
min-width: 20px;
|
||||||
color: #24273a;
|
color: @base;
|
||||||
transition: all 0.3s cubic-bezier(0.55, -0.68, 0.48, 1.682);
|
transition: all 0.3s cubic-bezier(0.55, -0.68, 0.48, 1.682);
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.active {
|
#workspaces button.active {
|
||||||
padding-right: 6px;
|
padding-right: 6px;
|
||||||
padding-left: 6px;
|
padding-left: 6px;
|
||||||
box-shadow: rgba(0, 0, 0, 0.288) 2 2 2 2px;
|
box-shadow: 3px 3px 1px 1px alpha(@shadow, 0.7);
|
||||||
padding-bottom: 3px;
|
padding-bottom: 3px;
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
|
@ -127,79 +145,71 @@ window#waybar.hidden {
|
||||||
background-size: 400% 400%;
|
background-size: 400% 400%;
|
||||||
animation: gradient 15s ease infinite;
|
animation: gradient 15s ease infinite;
|
||||||
transition: all 0.3s cubic-bezier(0.55, -0.68, 0.48, 1.682);
|
transition: all 0.3s cubic-bezier(0.55, -0.68, 0.48, 1.682);
|
||||||
color: #c678dd;
|
color: @mauve;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button:hover {
|
#workspaces button:hover {
|
||||||
background-color: #363a4f;
|
background-color: @surface0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.focused:hover {
|
#workspaces button.focused:hover {
|
||||||
background-color: #24273a;
|
background-color: alpha(@base, 0.9);
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.focused:hover label {
|
#workspaces button.focused:hover label {
|
||||||
color: #cad3f5;
|
color: @text;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Individual Modules */
|
/* Individual Modules */
|
||||||
#custom-cava {
|
#custom-cava {
|
||||||
color: rgb(183, 189, 248);
|
color: @lavender;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#cpu {
|
#cpu {
|
||||||
background-color: #24273a;
|
color: @blue;
|
||||||
color: #8aadf4;
|
|
||||||
transition: all 0.5s cubic-bezier(0.55, -0.68, 0.48, 1.68);
|
transition: all 0.5s cubic-bezier(0.55, -0.68, 0.48, 1.68);
|
||||||
}
|
}
|
||||||
|
|
||||||
#memory {
|
#memory {
|
||||||
background-color: #24273a;
|
color: @green;
|
||||||
color: #a6da95;
|
|
||||||
transition: all 0.5s cubic-bezier(0.55, -0.68, 0.48, 1.68);
|
transition: all 0.5s cubic-bezier(0.55, -0.68, 0.48, 1.68);
|
||||||
}
|
}
|
||||||
|
|
||||||
#custom-notifications {
|
#custom-notifications {
|
||||||
background-color: #24273a;
|
color: @yellow;
|
||||||
color: #eed49f;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#custom-weather {
|
#custom-weather {
|
||||||
color: #ee99a0;
|
color: @red;
|
||||||
}
|
}
|
||||||
|
|
||||||
#custom-updates {
|
#custom-updates {
|
||||||
background-color: #24273a;
|
color: @teal;
|
||||||
color: #8bd5ca;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#custom-wf-recorder {
|
#custom-wf-recorder {
|
||||||
color: #ed8796;
|
color: @red;
|
||||||
}
|
}
|
||||||
|
|
||||||
#custom-gpu-temp {
|
#custom-gpu-temp {
|
||||||
background-color: #24273a;
|
color: @peach;
|
||||||
color: #f5a97f;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#custom-gpu-usage {
|
#custom-gpu-usage {
|
||||||
background-color: #24273a;
|
color: @teal;
|
||||||
color: #8bd5ca;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#custom-power-menu {
|
#custom-power-menu {
|
||||||
color: #e06c75;
|
color: @red;
|
||||||
}
|
}
|
||||||
|
|
||||||
#temperature {
|
#temperature {
|
||||||
background-color: #24273a;
|
color: @peach;
|
||||||
color: #f5a97f;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#window {
|
#window {
|
||||||
background: #b7bdf8;
|
|
||||||
background: linear-gradient(
|
background: linear-gradient(
|
||||||
52deg,
|
52deg,
|
||||||
rgba(139, 213, 202, 1) 0%,
|
rgba(139, 213, 202, 1) 0%,
|
||||||
|
@ -210,20 +220,20 @@ window#waybar.hidden {
|
||||||
);
|
);
|
||||||
background-size: 400% 400%;
|
background-size: 400% 400%;
|
||||||
animation: gradient 15s ease infinite;
|
animation: gradient 15s ease infinite;
|
||||||
text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.377);
|
text-shadow: 0px 0px 5px @lavender;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #1e2030;
|
color: @mantle;
|
||||||
transition: all 0.3s cubic-bezier(0.55, -0.68, 0.48, 1.682);
|
transition: all 0.3s cubic-bezier(0.55, -0.68, 0.48, 1.682);
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#temperature.critical {
|
#temperature.critical {
|
||||||
background-color: #ed8796;
|
background-color: @red;
|
||||||
color: #1e2030;
|
color: @mantle;
|
||||||
}
|
}
|
||||||
|
|
||||||
#custom-music {
|
#custom-music {
|
||||||
background: #b7bdf8;
|
background: @lavender;
|
||||||
background: linear-gradient(
|
background: linear-gradient(
|
||||||
52deg,
|
52deg,
|
||||||
rgba(139, 213, 202, 1) 0%,
|
rgba(139, 213, 202, 1) 0%,
|
||||||
|
@ -234,66 +244,56 @@ window#waybar.hidden {
|
||||||
);
|
);
|
||||||
background-size: 400% 400%;
|
background-size: 400% 400%;
|
||||||
animation: gradient 15s ease infinite;
|
animation: gradient 15s ease infinite;
|
||||||
text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.377);
|
text-shadow: 0px 0px 5px @border;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #1e2030;
|
color: @mantle;
|
||||||
transition: all 0.3s cubic-bezier(0.55, -0.68, 0.48, 1.682);
|
transition: all 0.3s cubic-bezier(0.55, -0.68, 0.48, 1.682);
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#custom-fans {
|
#custom-fans {
|
||||||
color: #98c379;
|
color: @green;
|
||||||
}
|
}
|
||||||
|
|
||||||
#clock {
|
#clock {
|
||||||
color: #b7bdf8;
|
color: @lavender;
|
||||||
}
|
|
||||||
|
|
||||||
#idle_inhibitor {
|
|
||||||
color: #abb2bf;
|
|
||||||
}
|
|
||||||
|
|
||||||
#idle_inhibitor.activated {
|
|
||||||
background-color: #abb2bf;
|
|
||||||
color: #1e222a;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#language {
|
#language {
|
||||||
color: #8aadf4;
|
color: @blue;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pulseaudio {
|
#pulseaudio {
|
||||||
background-color: #24273a;
|
color: @pink;
|
||||||
color: #f5bde6;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#pulseaudio.muted {
|
#pulseaudio.muted {
|
||||||
background-color: #ed8796;
|
background-color: @red;
|
||||||
color: #1e222a;
|
color: @mantle;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pulseaudio.source-muted {
|
#pulseaudio.source-muted {
|
||||||
background-color: #f5a97f;
|
background-color: @peach;
|
||||||
color: #1e222a;
|
color: @mantle;
|
||||||
}
|
}
|
||||||
|
|
||||||
#backlight {
|
#backlight {
|
||||||
color: #61afef;
|
color: @blue;
|
||||||
}
|
}
|
||||||
|
|
||||||
#battery {
|
#battery {
|
||||||
color: #98c379;
|
color: @green;
|
||||||
}
|
}
|
||||||
|
|
||||||
#battery.charging,
|
#battery.charging,
|
||||||
#battery.plugged {
|
#battery.plugged {
|
||||||
background-color: #98c379;
|
background-color: @green;
|
||||||
color: #1e222a;
|
color: @mantle;
|
||||||
}
|
}
|
||||||
|
|
||||||
#battery.critical:not(.charging) {
|
#battery.critical:not(.charging) {
|
||||||
background-color: #e06c75;
|
background-color: @red;
|
||||||
color: #1e222a;
|
color: @mantle;
|
||||||
animation-name: blink;
|
animation-name: blink;
|
||||||
animation-duration: 0.5s;
|
animation-duration: 0.5s;
|
||||||
animation-timing-function: linear;
|
animation-timing-function: linear;
|
||||||
|
@ -302,21 +302,16 @@ window#waybar.hidden {
|
||||||
}
|
}
|
||||||
|
|
||||||
#network {
|
#network {
|
||||||
background-color: #24273a;
|
color: @mantle;
|
||||||
color: #8bd5ca;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#network.disconnected {
|
#network.disconnected {
|
||||||
background-color: #ed8796;
|
background-color: @red;
|
||||||
color: #1e222a;
|
color: @mantle;
|
||||||
}
|
|
||||||
|
|
||||||
#custom-notifications {
|
|
||||||
padding-right: 10px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#clock.cl2 {
|
#clock.cl2 {
|
||||||
background: #b7bdf8;
|
background: @lavender;
|
||||||
background: linear-gradient(
|
background: linear-gradient(
|
||||||
52deg,
|
52deg,
|
||||||
rgba(139, 213, 202, 1) 0%,
|
rgba(139, 213, 202, 1) 0%,
|
||||||
|
@ -327,9 +322,9 @@ window#waybar.hidden {
|
||||||
);
|
);
|
||||||
background-size: 400% 400%;
|
background-size: 400% 400%;
|
||||||
animation: gradient 15s ease infinite;
|
animation: gradient 15s ease infinite;
|
||||||
text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.377);
|
text-shadow: 0px 0px 5px @border;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #1e2030;
|
color: @mantle;
|
||||||
transition: all 0.3s cubic-bezier(0.55, -0.68, 0.48, 1.682);
|
transition: all 0.3s cubic-bezier(0.55, -0.68, 0.48, 1.682);
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
@ -337,8 +332,8 @@ window#waybar.hidden {
|
||||||
/* Animation Keyframes */
|
/* Animation Keyframes */
|
||||||
@keyframes blink {
|
@keyframes blink {
|
||||||
to {
|
to {
|
||||||
background-color: #24273a;
|
background-color: alpha(@base, 0.9);
|
||||||
color: #e06c75;
|
color: @red;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue