123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- /* GENERAL */
- @import url("./colors.css");
- /* example usage */
- window#waybar {
- background: @background;
- color: @purple;
- /* or cyan, green, orange, pink, red, yellow, foreground, background-darker etc. */
- }
- * {
- font-family: "FuraMono Nerd Font";
- font-size: 12px;
- font-weight: 500;
- min-height: 22px;
- }
- /* BAR FEATURES */
- window#waybar {
- background: #2D2B55;
- border-radius: 0px;
- }
- button.focused {
- }
- #workspaces {
- border-radius: 0px 0px 0px 0px;
- margin-left: -9px;
- }
- #workspaces button:nth-child(1) .visible {
- border-radius: 0px 0px 0px 6px;
- }
- #workspaces button {
- padding: 5px 15px 5px 10px;
- color: #bbc2cf;
- margin: 1px 0;
- }
- button:hover,
- #workspaces button:hover {
- }
- button {
- border: 0px;
- margin: 2px 0;
- }
- button:hover {
- border-radius: 0;
- box-shadow: none;
- border-width: 0px;
- }
- #workspaces button.visible {
- color: #bbc2cf;
- background-color: #2b125d;
- border-radius: 0;
- box-shadow: none;
- border-width: 0px;
- }
- #workspaces button.focused.current_output {
- color: #ffffff;
- background-color: #5f27cd;
- border-radius: 0px;
- }
- #workspaces button.urgent {
- color: #6d4774;
- background-color: #7bc275;
- border-radius: 0px;
- }
- #workspaces button.focused:hover {
- color: white;
- background-color: #2b125d;
- }
- #workspaces {
- padding: 1px 10px;
- }
- /* MODULES */
- #backlight {
- color: yellow;
- }
- #battery {
- color: lightblue;
- }
- #battery.charging {
- color: #7bc275;
- }
- #battery.warning:not(.charging) {
- background-color: #2a2e38;
- color: #FCCE7B;
- }
- #bluetooth {
- color: #c9545d;
- }
- #clock {
- color: yellow;
- }
-
- #cpu {
- color: lightblue;
- }
- #custom-cpu_speed {
- color: #C57BDB;
- border-radius: 0px 0px 0px 0px;
- }
- #custom-powermenu {
- color: lightcoral;
- }
- #custom-recorder {
- font-size: 18px;
- margin: 2px 7px 0px 7px;
- color: #c9545d;
- }
- #custom-storage {
- color: #C57BDB;
- }
- #custom-weather {
- color: cyan;
- }
- #keyboard-state {
- color: lightcoral;
- }
- #memory {
- color: lightblue;
- }
- #mode {
- color: #C57BDB;
- }
- #network {
- color: lightcoral;
- }
- #pulseaudio {
- color: lightblue;
- }
- #sway-language {
- color: lightcoral;
- }
- #temperature {
- color: lightblue;
- }
- #temperature.critical {
- background: #eb4d4b;
- }
|