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.
 
 
 
 
 

154 lines
2.2 KiB

  1. /* Reset styles */
  2. * {
  3. border: none;
  4. border-radius: 1;
  5. min-height: 0;
  6. margin: 0;
  7. padding: 0;
  8. }
  9. /* The bar */
  10. #waybar {
  11. background: #282828;
  12. color: white;
  13. font-family: "awesome 5";
  14. font-size: 12px;
  15. font-weight: bold;
  16. }
  17. #disk,
  18. #backlight,
  19. #battery,
  20. #clock,
  21. #cpu,
  22. #custom-keyboard-layout,
  23. #memory,
  24. #mode,
  25. #network,
  26. #pulseaudio,
  27. #custom-alsa,
  28. #custom-kill,
  29. #custom.kill,
  30. #tray {
  31. padding-left: 8px;
  32. padding-right: 8px;
  33. margin-left: 2px;
  34. margin-right: 2px;
  35. }
  36. /*modules style*/
  37. #disk {
  38. background: #d79921;
  39. color: #282828;
  40. }
  41. #backlight {
  42. background: #689d6a;
  43. color: #282828;
  44. }
  45. #battery {
  46. animation-timing-function: linear;
  47. animation-iteration-count: infinite;
  48. animation-direction: alternate;
  49. background: #fbf1c7;
  50. color: #282828;
  51. }
  52. #battery.warning {
  53. color: orange;
  54. }
  55. #clock.date {
  56. background: #d65d0e;
  57. color: #282828;
  58. font-weight: bold;
  59. }
  60. #clock.time {
  61. background: #eceff4;
  62. color: #282828;
  63. font-weight: bold;
  64. }
  65. #cpu {
  66. background: #af3a03;
  67. color: #282828;
  68. }
  69. #cpu.warning {
  70. color: orange;
  71. }
  72. #cpu.critical {
  73. color: orange;
  74. }
  75. #memory {
  76. animation-timing-function: linear;
  77. animation-iteration-count: infinite;
  78. animation-direction: alternate;
  79. background: #458588;
  80. color: #282828;
  81. }
  82. #memory.warning {
  83. color: orange;
  84. }
  85. #mode {
  86. background: #64727d;
  87. border-top: 2px solid white;
  88. /* To compensate for the top border and still have vertical centering */
  89. padding-bottom: 2px;
  90. }
  91. #network {
  92. background: #98971a;
  93. color: #282828;
  94. }
  95. #network.disconnected {
  96. color: orange;
  97. }
  98. #pulseaudio {
  99. background: #8f3f71;
  100. color: #282828;
  101. }
  102. #pulseaudio.muted {
  103. background: #98971a;
  104. color: #282828;
  105. }
  106. #custom-kill {
  107. background: #a32a03;
  108. color: #282828;
  109. }
  110. #tray {
  111. background: transparent;
  112. }
  113. #window {
  114. font-weight: bold;
  115. }
  116. #workspaces button {
  117. font-weight: bold;
  118. padding-bottom: 2px;
  119. padding-left: 5px;
  120. padding-right: 5px;
  121. color: #076678;
  122. background: #282828;
  123. border-radius: 10px;
  124. }
  125. #workspaces button.focused {
  126. font-weight: bold;
  127. color: #282828;
  128. background-color: #076678;
  129. }