132 lines
2 KiB
CSS
132 lines
2 KiB
CSS
/*
|
|
*
|
|
* Catppuccin Mocha palette
|
|
* Maintainer: rubyowo
|
|
*
|
|
*/
|
|
|
|
@define-color base #0d0e1c;
|
|
@define-color mantle #181825;
|
|
@define-color crust #11111b;
|
|
|
|
@define-color text #cdd6f4;
|
|
@define-color subtext0 #a6adc8;
|
|
@define-color subtext1 #bac2de;
|
|
|
|
@define-color surface0 #313244;
|
|
@define-color surface1 #45475a;
|
|
@define-color surface2 #585b70;
|
|
|
|
@define-color overlay0 #6c7086;
|
|
@define-color overlay1 #7f849c;
|
|
@define-color overlay2 #9399b2;
|
|
|
|
@define-color blue #89b4fa;
|
|
@define-color lavender #b4befe;
|
|
@define-color sapphire #74c7ec;
|
|
@define-color sky #89dceb;
|
|
@define-color teal #94e2d5;
|
|
@define-color green #a6e3a1;
|
|
@define-color yellow #f9e2af;
|
|
@define-color peach #fab387;
|
|
@define-color maroon #eba0ac;
|
|
@define-color red #f38ba8;
|
|
@define-color mauve #cba6f7;
|
|
@define-color pink #f5c2e7;
|
|
@define-color flamingo #f2cdcd;
|
|
@define-color rosewater #f5e0dc;
|
|
|
|
/*
|
|
* Personal waybar config follows
|
|
*/
|
|
|
|
* {
|
|
font-family: "JetBrainsMono Nerd Font";
|
|
font-size: 16px;
|
|
}
|
|
|
|
window {
|
|
background: transparent;
|
|
}
|
|
|
|
window > box {
|
|
color: @text;
|
|
background: alpha(@base, 0.5);
|
|
margin: 10px 10px 0px;
|
|
padding: 0px;
|
|
border: 1px solid @lavender;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
tooltip {
|
|
color: @text;
|
|
/* Temp set alpha to 1.0 until I can sort out blurls issue */
|
|
background: alpha(@base, 1);
|
|
border: 1px solid @lavender;
|
|
border-radius: 10px;
|
|
padding: 5px;
|
|
margin: 0px;
|
|
}
|
|
|
|
#workspaces,
|
|
#window,
|
|
#mpris,
|
|
#pulseaudio,
|
|
#battery,
|
|
#disk,
|
|
#cpu,
|
|
#memory,
|
|
#temperature,
|
|
#clock,
|
|
#custom-notification,
|
|
#tray {
|
|
margin: 0px;
|
|
padding: 1px 5px;
|
|
}
|
|
|
|
#workspaces,
|
|
#window,
|
|
#mpris,
|
|
#tray,
|
|
#custom-separator {
|
|
color: @text;
|
|
}
|
|
|
|
#workspaces button {
|
|
background: transparent;
|
|
color: @text;
|
|
margin: 0px;
|
|
padding: 0px 5px;
|
|
}
|
|
#workspaces button.empty {
|
|
color: @surface2;
|
|
}
|
|
#workspaces button.active {
|
|
color: @lavender;
|
|
}
|
|
#workspaces button.urgent {
|
|
color: @red;
|
|
}
|
|
|
|
#battery {
|
|
color: @red;
|
|
}
|
|
#pulseaudio {
|
|
color: @peach;
|
|
}
|
|
#disk {
|
|
color: @yellow;
|
|
}
|
|
#cpu {
|
|
color: @green;
|
|
}
|
|
#memory {
|
|
color: @sapphire;
|
|
}
|
|
#clock {
|
|
color: @mauve;
|
|
}
|
|
#custom-notification {
|
|
color: @lavender;
|
|
}
|