aboutsummaryrefslogtreecommitdiff
path: root/waybar/base.css
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2025-11-27 01:08:37 -0500
committerMitchell Riedstra <mitch@riedstra.dev>2025-11-27 01:08:37 -0500
commit488dec64b403ae4aba65cad0e46b4d2767f0b2dd (patch)
treea12d6319d4706fdfb25b5938fe76d1c2a9711482 /waybar/base.css
parenta9f6e9b1f1c0e4f0a628954e3427bf5020d486c0 (diff)
downloadrivercfg-488dec64b403ae4aba65cad0e46b4d2767f0b2dd.tar.gz
rivercfg-488dec64b403ae4aba65cad0e46b4d2767f0b2dd.tar.xz
Automatic light/dark mode switching. What a pain.
Diffstat (limited to 'waybar/base.css')
-rw-r--r--waybar/base.css73
1 files changed, 73 insertions, 0 deletions
diff --git a/waybar/base.css b/waybar/base.css
new file mode 100644
index 0000000..2ef85f0
--- /dev/null
+++ b/waybar/base.css
@@ -0,0 +1,73 @@
+* {
+ /* font-family: "curie"; */
+ font-family: "IBM 3270";
+ font-size: 14px;
+
+ padding: 0px;
+ margin: 0px;
+}
+
+window#waybar {
+ /* background: transparent; */
+ background: @background;
+
+}
+
+window#waybar.hidden {
+ opacity: 0.2;
+}
+
+#window {
+ color: @foreground;
+}
+
+#tags {
+}
+
+#tags button {
+ color: @regular2;
+ background: transparent;
+}
+
+#tags button.occupied {
+ transition: none;
+ color: @regular3;
+ background: transparent;
+}
+
+#tags button.focused {
+ color: @background;
+ background: @regular3;
+
+ border-radius: inherit;
+}
+
+#tags button:hover {
+ transition: none;
+ box-shadow: inherit;
+ text-shadow: inherit;
+ color: @bright2;
+}
+
+#temperature {
+ background: transparent;
+ color: @bright1;
+}
+
+#pulseaudio {
+ color: @bright1;
+ background: transparent;
+}
+
+#battery {
+ color: @bright3;
+ background: transparent;
+}
+
+.modules-right {
+ color: @bright1;
+}
+
+#network, #cpuTemp, #battery, #pulseaudio, #date, #powerUsage {
+ padding-left: 15px;
+}