65 lines
1.2 KiB
CSS
65 lines
1.2 KiB
CSS
* {
|
|
font-family: "FiraMono Nerd Font";
|
|
font-size: 16px;
|
|
}
|
|
|
|
window { background: transparent; }
|
|
|
|
window > box {
|
|
color: #c0caf5;
|
|
background: alpha(#1a1b26, 0.5);
|
|
box-shadow: inset 0 0 0 1px alpha(#bb9af7, 0.1), 0 0 0 1px alpha(#1a1b26, 0.5);
|
|
margin: 10px 10px 0px;
|
|
padding: 0px;
|
|
border: 1px solid #bb9af7;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
tooltip {
|
|
color: #c0caf5;
|
|
/* Temp set alpha to 1.0 until I can sort out blurls issue */
|
|
background: alpha(#1a1b26, 1.0);
|
|
box-shadow: inset 0 0 0 1px alpha(#bb9af7, 0.1), 0 0 0 1px alpha(#1a1b26, 0.5);
|
|
border: 1px solid #bb9af7;
|
|
border-radius: 10px;
|
|
padding: 5px;
|
|
margin: 0px;
|
|
}
|
|
|
|
#workspaces,
|
|
#window,
|
|
#mpris,
|
|
#pulseaudio,
|
|
#battery,
|
|
#disk,
|
|
#cpu,
|
|
#memory,
|
|
#temperature,
|
|
#clock,
|
|
#tray {
|
|
margin: 0px;
|
|
padding: 1px 5px;
|
|
}
|
|
|
|
#workspaces,
|
|
#window,
|
|
#mpris,
|
|
#battery,
|
|
#tray { color: #c0caf5; }
|
|
|
|
#workspaces button {
|
|
background: transparent;
|
|
color: #c0caf5;
|
|
margin: 0px;
|
|
padding: 0px 5px;
|
|
}
|
|
#workspaces button.empty { color: #414868; }
|
|
#workspaces button.active { color: #bb9af7; }
|
|
#workspaces button.urgent { color: #f7768e; }
|
|
|
|
#pulseaudio { color: #f7768e; }
|
|
#disk { color: #e0af68; }
|
|
#cpu { color: #9ece6a; }
|
|
#memory { color: #7dcfff; }
|
|
#clock { color: #7aa2f7; }
|