Advertisement
Guest User

Waybar Aero CSS

a guest
May 28th, 2025
92
0
158 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.34 KB | Software | 0 0
  1. * {
  2.   min-height: 0;
  3.   min-width: 0;
  4.   font-family: "Segoe UI", Lexend, "Font Awesome 6 Free Solid";
  5.   font-size: 15px;
  6.   font-weight: 500;
  7. }
  8.  
  9. window#waybar {
  10.   background-color: rgba(40, 50, 60, 0.55);
  11.   color: #ffffff;
  12.   border-radius: 0px;
  13.   border: 1px solid rgba(40, 50, 60, 0.4);
  14.   box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  15.   transition: background-color 0.5s, border 0.5s;
  16. }
  17.  
  18. #workspaces button {
  19.   padding: 0.3em 0.6em;
  20.   margin: 0px 0px;
  21.   border-radius: 0px;
  22.   background: rgba(255, 255, 255, 0.18);
  23.   border: 1px solid rgba(255, 255, 255, 0.15);
  24.   color: #e0e0e0;
  25.   transition: background 0.3s, color 0.3s;
  26. }
  27.  
  28. #workspaces button:hover {
  29.   background: rgba(120, 180, 255, 0.5);
  30.   color: rgba(255,255,255,1.0);
  31.   text-shadow: none;
  32. }
  33.  
  34. #workspaces button.active {
  35.   background: rgba(120, 180, 255, 0.4);
  36.   color: #ffffff;
  37.   border: 1px solid rgba(255, 255, 255, 0.3);
  38. }
  39.  
  40. #workspaces button.urgent {
  41.   background: rgba(255, 80, 80, 0.5);
  42.   color: #ffffff;
  43. }
  44.  
  45. #clock,
  46. #pulseaudio,
  47. #custom-logo,
  48. #custom-power,
  49. #custom-spotify,
  50. #custom-cmus,
  51. #custom-menu,
  52. #custom-screenshot,
  53. #mpd,
  54. #custom-night,
  55. #cpu,
  56. #temperature,
  57. #network,
  58. #tray,
  59. #memory,
  60. #window {
  61.   padding: 0.3em 0.6em;
  62.   border-radius: 0px;
  63.   margin: 0px 0px;
  64.   background: rgba(40, 50, 60, 0.05);
  65.   border: 1px solid rgba(255, 255, 255, 0.2);
  66. }
  67.  
  68. #custom-menu:hover {
  69.   background: rgba(120, 180, 255, 0.25);
  70.   color: #ffffff;
  71. }
  72.  
  73. #custom-menu {
  74.   padding-left: 13px;
  75. }
  76.  
  77. #custom-sep {
  78.   padding: 0px;
  79.   color: #a0a0a0;
  80. }
  81.  
  82. #network {
  83.   color: #ffffff;
  84. }
  85.  
  86. #cpu {
  87.   color: #ffffff;
  88. }
  89.  
  90. #temperature {
  91.   color: #ffffff;
  92. }
  93.  
  94. #memory {
  95.   color: #ffffff;
  96. }
  97.  
  98. #clock {
  99.   color: #ffffff;
  100. }
  101.  
  102. #window {
  103.   color: #ffffff;
  104. }
  105.  
  106. #pulseaudio {
  107.   color: #ffffff;
  108. }
  109.  
  110. #pulseaudio.muted {
  111.   color: #ffffff;
  112. }
  113.  
  114. #custom-logo {
  115.   color: #ffffff;
  116. }
  117.  
  118. #custom-power {
  119.   color: #ffffff;
  120.   font-size: 14px;
  121. }
  122.  
  123. #mpd {
  124.   color: #ffffff;
  125. }
  126.  
  127. #custom-spotify.playing {
  128.   color: #ffffff;
  129. }
  130.  
  131. #custom-spotify.liked {
  132.   color: #ffffff;
  133. }
  134.  
  135. #custom-spotify.added {
  136.   color: #ffffff;
  137. }
  138.  
  139. #custom-spotify.removed {
  140.   color: #ffffff;
  141. }
  142.  
  143. #custom-spotify.paused {
  144.   color: #9399b2;
  145. }
  146.  
  147. tooltip {
  148.   background: rgba(255, 255, 255, 1.0);
  149.   border: 1px solid #ffffff;
  150.   border-radius: 4px;
  151.   padding: 4px 6px;
  152.   color: #000000;
  153. }
  154.  
  155.  
Tags: CSS Linux waybar
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement