asahi-wayland-configs

my configurations for my asahilinux alpine system
Log | Files | Refs

style.css (788B)


      1 @import url("theme.css");
      2 
      3 /*div:not(#workspaces) { */
      4 * {
      5 	font-family: "Fira Sans";
      6 	font-size: 24px;
      7 	font-weight: bold;
      8 	border-radius: 100px;
      9 	color: @foreground;
     10 	padding: 3.5px 15px;
     11 }
     12 
     13 #workspaces {
     14 	/*border-width: 1px;
     15 	border-style: solid;
     16 	border-color: @foreground;
     17 	margin: 3.5px 1px;
     18 	padding: 3.5px 0px;
     19 	background: @background;*/
     20 }
     21 
     22 #workspaces, #battery, #pulseaudio, #clock, #window {
     23 	background: @background;
     24 }
     25 
     26 window#waybar {
     27 	background: none;
     28 	border: none;
     29 	margin: 10px;
     30 }
     31 
     32 /* our battery colors for its status */
     33 
     34 #battery.warning {
     35 	color: yellow;
     36 }
     37 
     38 #battery.critical {
     39 	color: red;
     40 }
     41 
     42 /* always put this at the end of the battery statuses, because it will not change otherwise */
     43 #battery.charging, #battery.plugged {
     44 	/*color: #1bd500;*/
     45 	color: green;
     46 }