188 lines
2.8 KiB
CSS
188 lines
2.8 KiB
CSS
/*
|
|
* style.css
|
|
* Copyright (C) 2021 Vintage Salt
|
|
*
|
|
* Distributed under terms of the MIT license.
|
|
*/
|
|
|
|
* {
|
|
border: none;
|
|
border-radius: 0;
|
|
font-family: "IBM Plex Sans", "Font Awesome 6 Free", sans-serif;
|
|
font-size: 13px;
|
|
}
|
|
|
|
window#waybar {
|
|
background: transparent;
|
|
}
|
|
.modules-left {
|
|
background: rgba(40, 40, 40, 0.8);
|
|
border-radius: 8px;
|
|
}
|
|
.modules-right {
|
|
background: rgba(40, 40, 40, 0.8);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
/* swaywm stuff */
|
|
#workspaces {
|
|
}
|
|
#workspaces button {
|
|
/* Any random button */
|
|
background: transparent;
|
|
color: #a89984;
|
|
padding: 0 0.9em;
|
|
border-radius: 8px;
|
|
}
|
|
#workspaces button.persistent {
|
|
color: rgba(235, 219, 178, 0.8);
|
|
}
|
|
#workspaces button.empty {
|
|
color: rgba(235, 219, 178, 0.2);
|
|
}
|
|
#workspaces button:hover {
|
|
/* A button that is currently being hovered over by the mouse cursor */
|
|
/* This comes with free transitions */
|
|
box-shadow: inherit;
|
|
text-shadow: inherit;
|
|
background-color: #504945;
|
|
}
|
|
#workspaces button.focused {
|
|
color: #282828;
|
|
background: #504945;
|
|
font-weight: bold;
|
|
}
|
|
#workspaces button.visible {
|
|
color: #282828;
|
|
background: #83a598;
|
|
font-weight: bold;
|
|
}
|
|
#workspaces button.urgent {
|
|
color: #fabd2f;
|
|
font-weight: bold;
|
|
}
|
|
#mode {
|
|
background: #fb4934;
|
|
color: #ebdbb2;
|
|
padding: 0 1em;
|
|
}
|
|
|
|
/* widgets */
|
|
#window {
|
|
color: #ebdbb2;
|
|
padding: 0 1em;
|
|
}
|
|
#pulseaudio {
|
|
padding: 0 1em;
|
|
color: #ebdbb2;
|
|
border-radius: 8px;
|
|
}
|
|
#pulseaudio.muted {
|
|
border-radius: 8px;
|
|
background: #fb4934;
|
|
color: #282828;
|
|
}
|
|
#tray {
|
|
padding: 0 1em;
|
|
}
|
|
#mpris {
|
|
padding: 0 1em;
|
|
}
|
|
#mpris.playing {
|
|
color: #d3869b;
|
|
}
|
|
#mpris.paused, #mpris.stopped {
|
|
color: rgba(235, 219, 178, 0.2);
|
|
}
|
|
|
|
#network {
|
|
padding: 0 1em;
|
|
color: rgba(235, 219, 178, 0.2);
|
|
}
|
|
#network.disconnected {
|
|
color: #fb4934;
|
|
}
|
|
|
|
#idle_inhibitor {
|
|
padding: 0 1em;
|
|
}
|
|
#idle_inhibitor.deactivated {
|
|
color: rgba(235, 219, 178, 0.2);
|
|
}
|
|
#idle_inhibitor.activated {
|
|
color: #ebdbb2;
|
|
}
|
|
|
|
#backlight {
|
|
padding: 0 1em;
|
|
color: #ebdbb2;
|
|
}
|
|
#gamemode {
|
|
padding: 0 1em;
|
|
color: rgba(235, 219, 178, 0.2);
|
|
}
|
|
#gamemode.running {
|
|
color: #b8bb26;
|
|
}
|
|
/* Memory */
|
|
#memory {
|
|
padding: 0 1em;
|
|
color: rgba(235, 219, 178, 0.2);
|
|
}
|
|
#memory.critical {
|
|
color: #fb4934;
|
|
}
|
|
#memory.warning {
|
|
color: #fabd2f;
|
|
}
|
|
#memory.regular {
|
|
color: #ebdbb2;
|
|
}
|
|
/* CPU */
|
|
#cpu {
|
|
padding: 0 1em;
|
|
color: rgba(235, 219, 178, 0.2);
|
|
}
|
|
#cpu.critical {
|
|
color: #fb4934;
|
|
}
|
|
#cpu.warning {
|
|
color: #fabd2f;
|
|
}
|
|
#cpu.regular {
|
|
color: #ebdbb2;
|
|
}
|
|
/* Battery */
|
|
#battery {
|
|
padding: 0 1em;
|
|
}
|
|
#battery.charging {
|
|
color: #b8bb26;
|
|
}
|
|
#battery.good {
|
|
color: rgba(235, 219, 178, 0.2);
|
|
}
|
|
#battery.discharging.warning {
|
|
color: #fabd2f;
|
|
}
|
|
#battery.discharging.critical {
|
|
color: #fb4934;
|
|
}
|
|
#clock {
|
|
color: #ebdbb2;
|
|
padding: 0 1em;
|
|
}
|
|
/* Temperature*/
|
|
#temperature {
|
|
padding: 0 1em;
|
|
color: rgba(235, 219, 178, 0.2);
|
|
}
|
|
#temperature.critical {
|
|
color: #fb4934;
|
|
}
|
|
/* Custom modules */
|
|
#custom-backup {
|
|
color: #fb4934;
|
|
padding: 0 1em;
|
|
}
|