aboutsummaryrefslogtreecommitdiff
path: root/waybar/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'waybar/style.css')
-rw-r--r--waybar/style.css120
1 files changed, 120 insertions, 0 deletions
diff --git a/waybar/style.css b/waybar/style.css
new file mode 100644
index 0000000..a0dac2d
--- /dev/null
+++ b/waybar/style.css
@@ -0,0 +1,120 @@
+* {
+ font-family: "JetBrainsMono Nerd Font", monospace;
+ font-weight: bold;
+ font-size: 16px;
+ color: #c6d0f5;
+}
+
+#waybar {
+ background-color: rgba(0, 0, 0, 0);
+ border: none;
+ box-shadow: none;
+}
+
+#workspaces,
+#window,
+#tray {
+ background-color: #414559;
+ padding: 4px 6px;
+ margin-top: 6px;
+ margin-left: 6px;
+ margin-right: 6px;
+ border-radius: 10px;
+ border-width: 0px;
+}
+
+#clock {
+ background-color: #414559;
+ margin-top: 6px;
+ margin-right: 6px;
+ padding: 4px 2px;
+ border-radius: 0 10px 10px 0;
+ border-width: 0px;
+}
+
+#custom-power {
+ background-color: #414559;
+ margin-top: 6px;
+ margin-right: 0px;
+ padding: 4px 2px;
+ border-radius: 0px;
+ border-width: 0px;
+}
+
+#network,
+#custom-lock {
+ background-color: #414559;
+ margin-top: 6px;
+ margin-left: 6px;
+ padding: 4px 2px;
+ border-radius: 10px 0 0 10px;
+ border-width: 0px;
+}
+
+#custom-reboot,
+#bluetooth,
+#battery,
+#pulseaudio,
+#custom-temperature,
+#memory,
+#cpu {
+ background-color: #414559;
+ margin-top: 6px;
+ padding: 4px 2px;
+ border-width: 0px;
+}
+
+#cpu {
+ border-radius: 0 10px 10px 0;
+}
+
+#custpm-temperature.critical,
+#pulseaudio.muted {
+ color: #e78284;
+ padding-top: 0;
+}
+
+#bluetooth:hover,
+#network:hover,
+#backlight:hover,
+#battery:hover,
+#pulseaudio:hover,
+#custom-temperature:hover,
+#memory:hover,
+#cpu:hover,
+#clock:hover,
+#custom-lock:hover,
+#custom-reboot:hover,
+#custom-power:hover,
+#window:hover {
+ background-color: #414559;
+}
+
+#workspaces button:hover {
+ background-color: #949cbb;
+ padding: 2px 8px;
+ margin: 0 2px;
+ border-radius: 10px;
+}
+
+#workspaces button.active {
+ background-color: #ca9ee6;
+ color: #ea999c;
+ padding: 2px 8px;
+ margin: 0 2px;
+ border-radius: 10px;
+}
+
+#workspaces button {
+ background: transparent;
+ border: none;
+ color: #e5c890;
+ padding: 2px 8px;
+ margin: 0 2px;
+ font-weight: bold;
+}
+
+#window {
+ font-weight: 500;
+ font-style: italic;
+}