6 changed files with 203 additions and 25 deletions
@ -0,0 +1,176 @@
|
||||
* { |
||||
font-family: "JetBrainsMono Nerd Font"; |
||||
font-weight: bold; |
||||
min-height: 0; |
||||
/* set font-size to 100% if font scaling is set to 1.00 using nwg-look */ |
||||
font-size: 98%; |
||||
font-feature-settings: '"zero", "ss01", "ss02", "ss03", "ss04", "ss05", "cv31"'; |
||||
padding: 1px; |
||||
margin-top: 1px; |
||||
margin-bottom: 1px; |
||||
} |
||||
|
||||
window#waybar { |
||||
background:rgba (0, 0, 0, 0.5); |
||||
border-radius: 20px 20px 20px 20px; |
||||
} |
||||
|
||||
#workspaces button { |
||||
/*padding: 2px 0px;*/ |
||||
border-bottom: 1px; |
||||
color: #eceff4; |
||||
border-color: #d8dee9; |
||||
border-style: solid; |
||||
margin-top:2px; |
||||
} |
||||
|
||||
#workspaces button.active { |
||||
border-color: #81a1c1; |
||||
} |
||||
|
||||
#backlight, |
||||
#battery, |
||||
#bluetooth, |
||||
#cava, |
||||
#clock, |
||||
#cpu, |
||||
#disk, |
||||
#idle_inhibitor, |
||||
#keyboard-state label, |
||||
#keyboard-state label.locked, |
||||
#keyboard-state, |
||||
#memory, |
||||
#mode, |
||||
#mpd, |
||||
#network, |
||||
#pulseaudio, |
||||
#taskbar button, |
||||
#taskbar, |
||||
#temperature, |
||||
#tray, |
||||
#window, |
||||
#wireplumber, |
||||
#workspaces, |
||||
#custom-cycle_wall, |
||||
#custom-light_dark, |
||||
#custom-lock, |
||||
#custom-menu, |
||||
#custom-power_vertical, |
||||
#custom-power, |
||||
#custom-spotify, |
||||
#custom-updater, |
||||
#custom-weather, |
||||
#custom-weather.clearNight, |
||||
#custom-weather.cloudyFoggyDay, |
||||
#custom-weather.cloudyFoggyNight, |
||||
#custom-weather.default |
||||
#custom-weather.rainyDay, |
||||
#custom-weather.rainyNight, |
||||
#custom-weather.severe, |
||||
#custom-weather.showyIcyDay, |
||||
#custom-weather.snowyIcyNight, |
||||
#custom-weather.sunnyDay { |
||||
padding: 1px 4px; |
||||
border-bottom: 1px; |
||||
border-style: solid; |
||||
} |
||||
|
||||
/* ----------------------------------------------------------------------------- |
||||
* Module styles |
||||
* -------------------------------------------------------------------------- */ |
||||
|
||||
|
||||
#clock { |
||||
color:#a3be8c; |
||||
} |
||||
|
||||
#backlight { |
||||
color: #ebcb8b; |
||||
} |
||||
|
||||
#battery { |
||||
color: #d8dee9; |
||||
} |
||||
|
||||
#battery.charging { |
||||
color: #81a1c1; |
||||
} |
||||
|
||||
@keyframes blink { |
||||
to { |
||||
color: #4c566a; |
||||
background-color: #eceff4; |
||||
} |
||||
} |
||||
|
||||
#battery.critical:not(.charging) { |
||||
background: #bf616a; |
||||
color: #eceff4; |
||||
animation-name: blink; |
||||
animation-duration: 0.5s; |
||||
animation-timing-function: linear; |
||||
animation-iteration-count: infinite; |
||||
animation-direction: alternate; |
||||
} |
||||
|
||||
#cpu { |
||||
color:#a3be8c ; |
||||
} |
||||
|
||||
#memory { |
||||
color: #d3869b; |
||||
} |
||||
|
||||
#network.disabled { |
||||
color:#bf616a; |
||||
} |
||||
|
||||
#network{ |
||||
color:#a3be8c; |
||||
} |
||||
|
||||
#network.disconnected { |
||||
color: #bf616a; |
||||
} |
||||
|
||||
#pulseaudio { |
||||
color: #b48ead; |
||||
} |
||||
|
||||
#pulseaudio.muted { |
||||
color: #3b4252; |
||||
} |
||||
|
||||
#temperature { |
||||
color: #8fbcbb; |
||||
} |
||||
|
||||
#temperature.critical { |
||||
color: #bf616a; |
||||
} |
||||
|
||||
#idle_inhibitor { |
||||
color: #ebcb8b; |
||||
} |
||||
|
||||
#tray { |
||||
} |
||||
|
||||
#custom-menu, |
||||
#custom-power{ |
||||
color: #cba6f7; |
||||
margin-top:2px; |
||||
} |
||||
|
||||
#window{ |
||||
border-style: hidden; |
||||
margin-top:1px; |
||||
} |
||||
#bluetooth{ |
||||
color:#d08770; |
||||
} |
||||
#custom-weather{ |
||||
color:#d08770; |
||||
} |
||||
|
||||
|
||||
Loading…
Reference in new issue