style.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. /* GENERAL */
  2. @import url("./colors.css");
  3. /* example usage */
  4. window#waybar {
  5. background: @background;
  6. color: @purple;
  7. /* or cyan, green, orange, pink, red, yellow, foreground, background-darker etc. */
  8. }
  9. * {
  10. font-family: "FuraMono Nerd Font";
  11. font-size: 12px;
  12. font-weight: 500;
  13. min-height: 22px;
  14. }
  15. /* BAR FEATURES */
  16. window#waybar {
  17. background: #2D2B55;
  18. border-radius: 0px;
  19. }
  20. button.focused {
  21. }
  22. #workspaces {
  23. border-radius: 0px 0px 0px 0px;
  24. margin-left: -9px;
  25. }
  26. #workspaces button:nth-child(1) .visible {
  27. border-radius: 0px 0px 0px 6px;
  28. }
  29. #workspaces button {
  30. padding: 5px 15px 5px 10px;
  31. color: #bbc2cf;
  32. margin: 1px 0;
  33. }
  34. button:hover,
  35. #workspaces button:hover {
  36. }
  37. button {
  38. border: 0px;
  39. margin: 2px 0;
  40. }
  41. button:hover {
  42. border-radius: 0;
  43. box-shadow: none;
  44. border-width: 0px;
  45. }
  46. #workspaces button.visible {
  47. color: #bbc2cf;
  48. background-color: #2b125d;
  49. border-radius: 0;
  50. box-shadow: none;
  51. border-width: 0px;
  52. }
  53. #workspaces button.focused.current_output {
  54. color: #ffffff;
  55. background-color: #5f27cd;
  56. border-radius: 0px;
  57. }
  58. #workspaces button.urgent {
  59. color: #6d4774;
  60. background-color: #7bc275;
  61. border-radius: 0px;
  62. }
  63. #workspaces button.focused:hover {
  64. color: white;
  65. background-color: #2b125d;
  66. }
  67. #workspaces {
  68. padding: 1px 10px;
  69. }
  70. /* MODULES */
  71. #backlight {
  72. color: yellow;
  73. }
  74. #battery {
  75. color: lightblue;
  76. }
  77. #battery.charging {
  78. color: #7bc275;
  79. }
  80. #battery.warning:not(.charging) {
  81. background-color: #2a2e38;
  82. color: #FCCE7B;
  83. }
  84. #bluetooth {
  85. color: #c9545d;
  86. }
  87. #clock {
  88. color: yellow;
  89. }
  90. #cpu {
  91. color: lightblue;
  92. }
  93. #custom-cpu_speed {
  94. color: #C57BDB;
  95. border-radius: 0px 0px 0px 0px;
  96. }
  97. #custom-powermenu {
  98. color: lightcoral;
  99. }
  100. #custom-recorder {
  101. font-size: 18px;
  102. margin: 2px 7px 0px 7px;
  103. color: #c9545d;
  104. }
  105. #custom-storage {
  106. color: #C57BDB;
  107. }
  108. #custom-weather {
  109. color: cyan;
  110. }
  111. #keyboard-state {
  112. color: lightcoral;
  113. }
  114. #memory {
  115. color: lightblue;
  116. }
  117. #mode {
  118. color: #C57BDB;
  119. }
  120. #network {
  121. color: lightcoral;
  122. }
  123. #pulseaudio {
  124. color: lightblue;
  125. }
  126. #sway-language {
  127. color: lightcoral;
  128. }
  129. #temperature {
  130. color: lightblue;
  131. }
  132. #temperature.critical {
  133. background: #eb4d4b;
  134. }