| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- @import "theme.css";
- * {
- border: none;
- border-radius: 0;
- font-family: "JetBrainsMono Nerd Font", "Font Awesome 6 Free", "Font Awesome 6 Brands", sans-serif;
- font-size: 14px;
- min-height: 0;
- }
- window#waybar {
- background-color: @bg;
- color: @text;
- transition-property: background-color;
- transition-duration: .5s;
- border-radius: 10px;
- }
- #workspaces {
- background-color: @bg_workspace;
- margin: 5px;
- padding: 0 5px;
- border-radius: 10px;
- }
- #workspaces button {
- padding: 0 10px;
- color: @inactive_text;
- transition: all 0.3s ease;
- border-radius: 8px;
- }
- #workspaces button:hover {
- background-color: @hover_bg;
- box-shadow: inset 0 0 0 1px @hover_border;
- }
- #workspaces button.active {
- color: @active_text;
- border-bottom: 2px solid @active_border;
- background: linear-gradient(45deg, @active_bg1, @active_bg2);
- }
- #workspaces button.urgent {
- color: @urgent;
- }
- #workspaces button.persistent {
- color: @inactive_text;
- }
- #workspaces button.occupied {
- color: @occupied;
- }
- #clock,
- #network,
- #pulseaudio,
- #custom-vpn,
- #backlight,
- #battery,
- #bluetooth {
- padding: 0 15px;
- margin: 5px;
- background-color: @bg_module;
- border-radius: 8px;
- }
- #clock {
- color: @clock;
- }
- #network {
- color: @network;
- }
- #network.vpn {
- color: @occupied;
- margin-right: 0;
- padding-right: 5px;
- }
- #pulseaudio {
- color: @urgent;
- }
- #pulseaudio.muted {
- color: @inactive_text;
- }
- #backlight {
- color: @backlight;
- }
- #battery {
- color: @battery;
- }
- #battery.critical:not(.charging) {
- background-color: @urgent;
- color: @text;
- animation-name: blink;
- animation-duration: 0.5s;
- animation-timing-function: linear;
- animation-iteration-count: infinite;
- animation-direction: alternate;
- }
- #bluetooth {
- color: @bluetooth;
- }
- #bluetooth.connected {
- color: @active_text;
- }
- @keyframes blink {
- to {
- background-color: @bg_module;
- color: @urgent;
- }
- }
- tooltip {
- background: @tooltip_bg;
- border: 1px solid @active_border;
- border-radius: 10px;
- }
- tooltip label {
- color: @text;
- }
|