diff options
Diffstat (limited to '.config/waybar/style.css')
| -rw-r--r-- | .config/waybar/style.css | 76 |
1 files changed, 19 insertions, 57 deletions
diff --git a/.config/waybar/style.css b/.config/waybar/style.css index cba4fdf..a8eb398 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css @@ -1,4 +1,4 @@ -@import "theme.css"; +@import "nord.css"; * { font-family: monospace; @@ -7,8 +7,8 @@ } window#waybar { - background-color: #2b3339; - color: #d3c6aa; + background-color: @bg; + color: @text; } /* window#waybar>* { */ @@ -28,60 +28,20 @@ window#waybar.hidden { #workspaces button { padding: 3 6; min-height: 0px; - margin-left: 4px; - color: #d3c6aa; + /* margin-left: 4px; */ + color: @text; } #workspaces button.active { padding: 3 12; - color: #d3c6aa; - background-color: #414B50; + color: @text; + background-color: @activebg; border-radius: 0px; } #workspaces button.urgent { color: #e67e80; -} - -/* !!! COLORS !!! */ - -/* #clock { */ -/* color: @red; */ -/* } */ -/**/ -/* #wireplumber { */ -/* color: @orange; */ -/* } */ -/**/ -/* #custom-mailbox { */ -/* color: @yellow; */ -/* } */ -/**/ -/* #custom-memory { */ -/* color: @yellow; */ -/* } */ -/**/ -/* #custom-torrent { */ -/* color: @green; */ -/* } */ -/**/ -/* #custom-news { */ -/* color: @green; */ -/* } */ -/**/ -/* #custom-packages { */ -/* color: @blue; */ -/* } */ -/**/ -/* #custom-music { */ -/* color: @blue; */ -/* } */ - -/* !!! END of COLORS !!! */ - -#mode { - background-color: #ff0000; - box-shadow: inset 0 -3px #0000ff; + border-radius: 0px; } #custom-clock, @@ -113,6 +73,7 @@ window#waybar.hidden { #power-profiles-daemon, #custom-notifications, #custom-power, +#privacy, #mpd { padding: 0 2px; margin-right: 10px; @@ -207,7 +168,7 @@ label:focus { } #cpu { - color: #d3c6aa; + color: @text; } #cpu.mid { @@ -409,21 +370,22 @@ label:focus { } #privacy-item.screenshare { - background-color: #ff0000; + background-color: @red; } #privacy-item.audio-in { - background-color: #0000ff; + background-color: @orange; } #privacy-item.audio-out { - background-color: #00ff00; + background-color: @green; } tooltip { - background-color: @color-tooltip-bg; + background-color: @bg; border: none; - border-radius: 5px; + border-radius: 0px; + padding: 0px; } tooltip decoration { @@ -435,7 +397,7 @@ tooltip decoration:backdrop { } tooltip label { - color: @color-tooltip-fg; - padding-left: 5px; - padding-right: 5px; + color: @text; + padding-left: 2px; + padding-right: 2px; } |