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.
 
 
 
 
 

147 lines
2.1 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: 10px;
  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. #tray {
  29. padding-left: 8px;
  30. padding-right: 8px;
  31. margin-left: 2px;
  32. margin-right: 2px;
  33. }
  34. /*modules style*/
  35. #disk {
  36. background: #d79921;
  37. color: #282828;
  38. }
  39. #backlight {
  40. background: #689d6a;
  41. color: #282828;
  42. }
  43. #battery {
  44. animation-timing-function: linear;
  45. animation-iteration-count: infinite;
  46. animation-direction: alternate;
  47. background: #fbf1c7;
  48. color: #282828;
  49. }
  50. #battery.warning {
  51. color: orange;
  52. }
  53. #clock.date {
  54. background: #d65d0e;
  55. color: #282828;
  56. font-weight: bold;
  57. }
  58. #clock.time {
  59. background: #eceff4;
  60. color: #282828;
  61. font-weight: bold;
  62. }
  63. #cpu {
  64. background: #af3a03;
  65. color: #282828;
  66. }
  67. #cpu.warning {
  68. color: orange;
  69. }
  70. #cpu.critical {
  71. color: orange;
  72. }
  73. #memory {
  74. animation-timing-function: linear;
  75. animation-iteration-count: infinite;
  76. animation-direction: alternate;
  77. background: #458588;
  78. color: #282828;
  79. }
  80. #memory.warning {
  81. color: orange;
  82. }
  83. #mode {
  84. background: #64727d;
  85. border-top: 2px solid white;
  86. /* To compensate for the top border and still have vertical centering */
  87. padding-bottom: 2px;
  88. }
  89. #network {
  90. background: #98971a;
  91. color: #282828;
  92. }
  93. #network.disconnected {
  94. color: orange;
  95. }
  96. #pulseaudio {
  97. background: #8f3f71;
  98. color: #282828;
  99. }
  100. #pulseaudio.muted {
  101. background: #98971a;
  102. color: #282828;
  103. }
  104. #tray {
  105. background: transparent;
  106. }
  107. #window {
  108. font-weight: bold;
  109. }
  110. #workspaces button {
  111. font-weight: bold;
  112. padding-bottom: 2px;
  113. padding-left: 5px;
  114. padding-right: 5px;
  115. color: #076678;
  116. background: #282828;
  117. border-radius: 10px;
  118. }
  119. #workspaces button.focused {
  120. font-weight: bold;
  121. color: #282828;
  122. background-color: #076678;
  123. }