131 lines
2 KiB
CSS
131 lines
2 KiB
CSS
@import 'macchiato.css';
|
|
|
|
* {
|
|
border: none;
|
|
border-radius: 10px;
|
|
font-family: "FiraCode Nerd Font";
|
|
font-size: 16px;
|
|
}
|
|
|
|
window#waybar {
|
|
background: transparent;
|
|
}
|
|
window#waybar.hidden {
|
|
opacity: 0.2;
|
|
}
|
|
#window {
|
|
margin-top: 6px;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
border-radius: 10px;
|
|
transition: none;
|
|
color: transparent;
|
|
background: transparent;
|
|
}
|
|
|
|
#workspaces {
|
|
margin-top: 6px;
|
|
margin-left: 12px;
|
|
font-size: 4px;
|
|
margin-bottom: 0px;
|
|
border-radius: 10px;
|
|
background: @maroon;
|
|
transition: none;
|
|
}
|
|
#workspaces button {
|
|
transition: none;
|
|
color: @overlay0;
|
|
box-shadow: inset 0 -3px transparent;
|
|
font-size: 20px;
|
|
border-radius: 2px;
|
|
}
|
|
#workspaces button.active,
|
|
#workspaces button.focused {
|
|
color: @base;
|
|
}
|
|
#workspaces button:hover {
|
|
transition: none;
|
|
box-shadow: inherit;
|
|
text-shadow: inherit;
|
|
color: @base;
|
|
border-color: #e8a2af;
|
|
color: @base;
|
|
}
|
|
#workspaces button.focused:hover {
|
|
color: @base;
|
|
}
|
|
|
|
#custom-launcher,
|
|
#cpu,
|
|
#memory,
|
|
#temperature,
|
|
#pulseaudio,
|
|
#bluetooth,
|
|
#network,
|
|
#backlight,
|
|
#battery,
|
|
#clock,
|
|
#tray,
|
|
#custom-power {
|
|
margin-top: 0px;
|
|
margin-left: 0px;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
margin-bottom: 0px;
|
|
border-radius: 10px;
|
|
transition: none;
|
|
color: @crust;
|
|
background: @lavender;
|
|
}
|
|
|
|
#cpu {
|
|
background: @pink;
|
|
}
|
|
#memory {
|
|
background: @mauve;
|
|
}
|
|
#temperature {
|
|
background: @red;
|
|
}
|
|
#pulseaudio {
|
|
background: @yellow;
|
|
}
|
|
#bluetooth {
|
|
background: @green;
|
|
}
|
|
#network {
|
|
background: @teal;
|
|
}
|
|
#backlight {
|
|
background: @sky;
|
|
}
|
|
#battery {
|
|
background: @sapphire;
|
|
}
|
|
#battery.charging,
|
|
#battery.plugged {
|
|
background-color: @sapphire;
|
|
}
|
|
#battery.critical:not(.charging) {
|
|
background-color: @sapphire;
|
|
animation-name: blink;
|
|
animation-duration: 0.5s;
|
|
animation-timing-function: linear;
|
|
animation-iteration-count: infinite;
|
|
animation-direction: alternate;
|
|
}
|
|
@keyframes blink {
|
|
to {
|
|
color: @red;
|
|
}
|
|
}
|
|
#clock {
|
|
background: @blue;
|
|
}
|
|
|
|
#tray,
|
|
#custom-launcher,
|
|
#custom-power {
|
|
font-size: 20px;
|
|
}
|