style.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. @import "theme.css";
  2. * {
  3. border: none;
  4. border-radius: 0;
  5. font-family: "JetBrainsMono Nerd Font", "Font Awesome 6 Free", "Font Awesome 6 Brands", sans-serif;
  6. font-size: 14px;
  7. min-height: 0;
  8. }
  9. window#waybar {
  10. background-color: @bg;
  11. color: @text;
  12. transition-property: background-color;
  13. transition-duration: .5s;
  14. border-radius: 10px;
  15. }
  16. #workspaces {
  17. background-color: @bg_workspace;
  18. margin: 5px;
  19. padding: 0 5px;
  20. border-radius: 10px;
  21. }
  22. #workspaces button {
  23. padding: 0 10px;
  24. color: @inactive_text;
  25. transition: all 0.3s ease;
  26. border-radius: 8px;
  27. }
  28. #workspaces button:hover {
  29. background-color: @hover_bg;
  30. box-shadow: inset 0 0 0 1px @hover_border;
  31. }
  32. #workspaces button.active {
  33. color: @active_text;
  34. border-bottom: 2px solid @active_border;
  35. background: linear-gradient(45deg, @active_bg1, @active_bg2);
  36. }
  37. #workspaces button.urgent {
  38. color: @urgent;
  39. }
  40. #workspaces button.persistent {
  41. color: @inactive_text;
  42. }
  43. #workspaces button.occupied {
  44. color: @occupied;
  45. }
  46. #clock,
  47. #network,
  48. #pulseaudio,
  49. #custom-vpn {
  50. padding: 0 15px;
  51. margin: 5px;
  52. background-color: @bg_module;
  53. border-radius: 8px;
  54. }
  55. #clock {
  56. color: @clock;
  57. }
  58. #network {
  59. color: @network;
  60. }
  61. #network.vpn {
  62. color: @occupied;
  63. margin-right: 0;
  64. padding-right: 5px;
  65. }
  66. #pulseaudio {
  67. color: @urgent;
  68. }
  69. #pulseaudio.muted {
  70. color: @inactive_text;
  71. }
  72. tooltip {
  73. background: @tooltip_bg;
  74. border: 1px solid @active_border;
  75. border-radius: 10px;
  76. }
  77. tooltip label {
  78. color: @text;
  79. }