2023-07-26 19:52:39 +07:00

229 lines
3.4 KiB
CSS
Executable File

/*
Color Pallete
foreground: '#abb2bf'
background: '#303030'
alt-background: '#282c34'
alt-foreground: '#1f2227'
black: '#282c34'
red: '#e06c75'
green: '#98c379'
yellow: '#e5c07b'
blue: '#81A1C1'
magenta: '#c678dd'
cyan: '#56b6c2'
white: '#c8ccd4'
*/
* {
border: 0px solid rgba(40, 44, 52, 0);
border-radius: 6px;
font-family: Iosevka Nerd Font, Font Awesome,Material Icons, Arial, sans-serif;
font-weight: 700;
font-size: 13px;
min-height: 18px;
padding: 1px;
}
tooltip {
background: #303030;
font-family: Iosevka Nerd Font;
border: 1px solid rgba(100, 114, 125, 0.5);
}
tooltip label {
color: #c8ccd4;
}
window#waybar {
background-color: #303030;
background: transparent;
color: #303030;
transition-property: background-color;
transition-duration: 0.5s;
border-radius: 6px;
}
window > box {
margin-left: 12.5px;
margin-right: 12.5px;
margin-top: 12.5px;
background: #303030;
color: #c8ccd4;
}
window#waybar.hidden {
opacity: 0.2;
}
label:focus {
background-color: #282c34;
}
@keyframes blink {
to {
background-color: #c8ccd4;
color: #282c34;
}
}
#battery,
#cpu,
#memory,
#disk,
#backlight,
#network,
#pulseaudio,
#workspaces,
#clock,
#tray,
#mode,
#idle_inhibitor,
#mpd {
padding: 0 10px;
margin: 4px 4px 4px 4px;
color: #1f2227;
}
#custom-launch {
margin-right: 10px;
margin-left: 4px;
padding-left: 10px;
padding-right: 10px;
margin-top: 4px;
margin-bottom: 4px;
font-size: 17px;
background-color: #81a1c1;
color: #1f2227;
}
#custom-tempcpu {
color: #81A1C1;
margin-left: 8px;
}
#custom-tempcpu.crit {
color: #e06c75;
margin-left: 8px;
}
#custom-tempgpu {
color: #81A1C1;
margin-left: 18px;
}
#custom-tempgpu.crit {
color: #e06c75;
margin-left: 18px;
}
#workspaces button {
padding: 5px 5px;
background-color: transparent;
border-radius: 6px;
margin-left: 1px;
color: #abb2bf;
}
#workspaces button:hover {
background-color: transparent;
color: #c678dd;
}
#workspaces button.active {
background-color: transparent;
color: #e06c75;
}
#workspaces button.urgent {
background-color: transparent;
color: #e06c75;
}
#custom-spotify {
padding-left: 10px;
padding-right: 10px;
margin-top: 4px;
margin-bottom: 4px;
font-size: 17px;
font-weight: 500;
background-color: #98c379;
color: #1f2227;
}
#custom-wgstatus {
color: #e06c75;
margin-right: 18px;
}
#language {
color: #c678dd;
}
#pulseaudio {
color: #e5c07b;
}
#pulseaudio.muted {
background-color: #81a1c1;
color: #282c34;
}
#backlight {
color: #e5c07b;
}
#network {
color: #81a1c1;
}
#memory {
color: #81A1C1;
}
#cpu {
color: #81A1C1;
}
#battery {
color: #e5c07b;
}
#battery.charging,
#battery.plugged {
color: #e06c75;
}
#battery.critical:not(.charging) {
color: #e06c75;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#clock {
color: #98c379;
}
#custom-notify {
color: #56b6c2;
}
#custom-off {
margin-right: 4px;
margin-left: 11px;
padding-left: 10px;
padding-right: 8px;
margin-top: 4px;
margin-bottom: 4px;
font-size: 17px;
background-color: #e06c75;
color: #272727;
}