diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-09-10 18:15:15 +0200 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-09-10 18:15:15 +0200 |
commit | d2eeffaa63136aea9503c8d0d4394ed8efcd15cc (patch) | |
tree | 238ea4611f84b75840d823d6f2529b0c480e2c49 /waybar | |
parent | 67f13693da40902f0c3205aae7495e2b256ca6b1 (diff) |
basic waybar stylesheet
Diffstat (limited to 'waybar')
-rw-r--r-- | waybar/style.css | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/waybar/style.css b/waybar/style.css new file mode 100644 index 0000000..9333653 --- /dev/null +++ b/waybar/style.css @@ -0,0 +1,50 @@ +* { + font-family: Terminus; +} + +window#waybar { + background-color: #111; + color: #d8d8d8; +} + +button { + box-shadow: inset 0 -3px transparent; + border: none; + border-radius: 0; +} + +button:hover { + background: inherit; + box-shadow: inset 0 -3px #fff; +} + +#tags button { + color: #6c6c6c; +} + +#tags button:hover { + text-shadow: inherit; +} + +#tags button.focused { + box-shadow: inset 0 -3px #d8d8d8; +} + +#tags button.urgent { + color: #f33; +} + +#tags button.occupied { + color: #d8d8d8; +} + +#network, +#tray, +#cpu, +#memory, +#wireplumber, +#battery, +#backlight, +#clock { + padding: 0 10px; +} |