You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
759 B
49 lines
759 B
* { |
|
font-size: 13px; |
|
font-family: JetBrainsMono NFP; |
|
} |
|
|
|
window#waybar { |
|
background: #282828; |
|
color: #fbf1c7; |
|
} |
|
|
|
/* All widgets share a stylized rounded background */ |
|
#workspaces, |
|
#window, |
|
#clock, |
|
#pulseaudio, |
|
#memory, |
|
#custom-top, |
|
#battery, |
|
#custom-disk, |
|
#custom-network, |
|
#tray { |
|
background: #1d2021; |
|
border-radius: 6px; |
|
margin: 4px 3px; |
|
padding: 0 10px; |
|
color: #f5d67b; |
|
} |
|
|
|
#tray { |
|
padding: 0 6px; |
|
} |
|
|
|
/* Workspaces: dimmed inactive, bold yellow active */ |
|
#workspaces button { |
|
padding: 0 6px; |
|
color: #a89984; |
|
background: transparent; |
|
border-radius: 4px; |
|
} |
|
#workspaces button.focused { |
|
color: #f5d67b; |
|
background: transparent; |
|
font-weight: bold; |
|
} |
|
#workspaces button:hover { |
|
box-shadow: inherit; |
|
text-shadow: inherit; |
|
background: #32302f; |
|
}
|
|
|