129 lines
2.7 KiB
CSS
129 lines
2.7 KiB
CSS
/* --- Hyprland palette (ported) --- */
|
||
@define-color base rgba(30, 30, 46, 1.0); /* 1e1e2eff */
|
||
@define-color inactive rgba(89, 89, 89, 0.667); /* 595959aa */
|
||
@define-color blue rgba(51, 204, 255, 0.933); /* 33ccffee */
|
||
@define-color green rgba(0, 255, 153, 0.933); /* 00ff99ee */
|
||
|
||
/* extra colors you referenced but didn’t define */
|
||
@define-color text rgba(255, 255, 255, 1.0);
|
||
@define-color surface1 rgba(255, 255, 255, 0.08);
|
||
@define-color subtext1 rgba(255, 255, 255, 0.35);
|
||
@define-color red rgba(255, 0, 0, 0.90);
|
||
|
||
* {
|
||
font-family:
|
||
Aporetic Sans Mono,
|
||
Iosevka Nerd Font,
|
||
Roboto,
|
||
Helvetica,
|
||
Arial,
|
||
sans-serif;
|
||
font-size: 13px;
|
||
}
|
||
|
||
window#waybar {
|
||
background-color: @base;
|
||
color: @text;
|
||
transition-property: background-color;
|
||
border-bottom: 0px solid rgba(0, 0, 0, 0);
|
||
transition-duration: 0.5s;
|
||
}
|
||
|
||
#workspaces button {
|
||
padding: 0px 1px;
|
||
min-width: 80px;
|
||
background-color: transparent;
|
||
color: @text;
|
||
border: 1px solid @inactive;
|
||
border-radius: 10px;
|
||
}
|
||
|
||
#workspaces button:hover {
|
||
background-color: @surface1;
|
||
color: @text;
|
||
}
|
||
|
||
#workspaces button.active {
|
||
padding: 0px 1px;
|
||
min-width: 80px;
|
||
color: @text;
|
||
border-radius: 10px;
|
||
font-weight: bold;
|
||
border: 1px solid transparent;
|
||
background:
|
||
linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15))
|
||
padding-box,
|
||
linear-gradient(45deg, @blue, @green) border-box;
|
||
}
|
||
|
||
#clock,
|
||
#idle_inhibitor,
|
||
#battery,
|
||
#cpu,
|
||
#memory,
|
||
#temperature,
|
||
#network,
|
||
#pulseaudio,
|
||
#tray {
|
||
margin: 0 5px;
|
||
padding: 0 2px;
|
||
}
|
||
|
||
#idle_inhibitor.activated {
|
||
background-color: @green;
|
||
}
|
||
|
||
#battery.charging {
|
||
color: @green;
|
||
}
|
||
|
||
@keyframes blink {
|
||
to {
|
||
background-color: #ffffff;
|
||
color: black;
|
||
}
|
||
}
|
||
|
||
#battery.warning:not(.charging) {
|
||
color: white;
|
||
animation-name: blink;
|
||
animation-duration: 0.5s;
|
||
animation-timing-function: linear;
|
||
animation-iteration-count: infinite;
|
||
animation-direction: alternate;
|
||
}
|
||
|
||
#window,
|
||
#workspaces {
|
||
margin: 0 4px;
|
||
}
|
||
|
||
.modules-left > widget:first-child > #workspaces {
|
||
margin-left: 0;
|
||
}
|
||
|
||
.modules-right > widget:last-child > #workspaces {
|
||
margin-right: 0;
|
||
}
|
||
|
||
#network.disconnected {
|
||
background-color: @red;
|
||
}
|
||
|
||
#temperature.critical {
|
||
background-color: @red;
|
||
}
|
||
|
||
#custom-hyprscroll_overflow.overflow {
|
||
padding: 0px 1px;
|
||
min-width: 80px;
|
||
color: @text;
|
||
border-radius: 10px;
|
||
font-weight: bold;
|
||
border: 1px solid transparent;
|
||
background:
|
||
linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15))
|
||
padding-box,
|
||
linear-gradient(45deg, @blue, @green) border-box;
|
||
}
|