summaryrefslogtreecommitdiff
path: root/artix/template/waybar
diff options
context:
space:
mode:
Diffstat (limited to 'artix/template/waybar')
-rw-r--r--artix/template/waybar/style.css94
1 files changed, 94 insertions, 0 deletions
diff --git a/artix/template/waybar/style.css b/artix/template/waybar/style.css
new file mode 100644
index 0000000..fca6b96
--- /dev/null
+++ b/artix/template/waybar/style.css
@@ -0,0 +1,94 @@
+* {
+ font-family: "monospace";
+ font-weight: bold;
+}
+
+#waybar {
+ background: $HEX_BACKGROUND;
+ color: $HEX_FOREGROUND;
+}
+
+#workspaces button {
+ color: $HEX_FOREGROUND;
+ border-radius: 0;
+}
+
+#workspaces button.active {
+ background: $HEX_BRIGHT_MAGENTA;
+}
+
+#workspaces button.special {
+ background: $HEX_NORMAL_BLUE;
+}
+
+#workspaces button.urgent {
+ background: $HEX_NORMAL_RED;
+}
+
+#workspaces button:hover {
+ box-shadow: none;
+ text-shadow: none;
+ background: $HEX_BACKGROUND;
+ border: none;
+ transition: none;
+ color: $HEX_NORMAL_BLUE;
+}
+
+#battery,
+#cpu,
+#memory,
+#pulseaudio,
+#network,
+#clock,
+#tray,
+#temperature,
+#workspaces button {
+ padding: 7 7;
+}
+
+#network {
+ background: $HEX_NORMAL_CYAN;
+}
+
+#pulseaudio {
+ background: $HEX_NORMAL_MAGENTA;
+}
+
+#pulseaudio.bluetooth {
+ background: #7aa2f7;
+}
+
+#battery,
+#cpu,
+#memory,
+#temperature {
+ background: #9ece6a;
+}
+
+#battery.warning,
+#cpu.warning,
+#memory.warning {
+ background: #e0af68;
+}
+
+#battery.urgent,
+#cpu.urgent,
+#memory.urgent,
+#network.disabled {
+ background: #ff9e64;
+}
+
+#battery.critical,
+#cpu.critical,
+#pulseaudio.muted,
+#memory.critical,
+#network.disconnected,
+#temperature.critical {
+ background: #f7768e
+}
+
+#window {
+ margin-left: 10px;
+ background: #32344a;
+ padding: 7;
+}