2023-07-10 11:24:42 +01:00
|
|
|
@define-color base #24273a;
|
|
|
|
@define-color mantle #1e2030;
|
|
|
|
@define-color crust #181926;
|
|
|
|
|
|
|
|
@define-color text #cad3f5;
|
|
|
|
@define-color subtext0 #a5adcb;
|
|
|
|
@define-color subtext1 #b8c0e0;
|
|
|
|
|
|
|
|
@define-color surface0 #363a4f;
|
|
|
|
@define-color surface1 #494d64;
|
|
|
|
@define-color surface2 #5b6078;
|
|
|
|
|
|
|
|
@define-color overlay0 #6e738d;
|
|
|
|
@define-color overlay1 #8087a2;
|
|
|
|
@define-color overlay2 #939ab7;
|
|
|
|
|
|
|
|
@define-color blue #8aadf4;
|
|
|
|
@define-color lavender #b7bdf8;
|
|
|
|
@define-color sapphire #7dc4e4;
|
|
|
|
@define-color sky #91d7e3;
|
|
|
|
@define-color teal #8bd5ca;
|
|
|
|
@define-color green #a6da95;
|
|
|
|
@define-color yellow #eed49f;
|
|
|
|
@define-color peach #f5a97f;
|
|
|
|
@define-color maroon #ee99a0;
|
|
|
|
@define-color red #ed8796;
|
|
|
|
@define-color mauve #c6a0f6;
|
|
|
|
@define-color pink #f5bde6;
|
|
|
|
@define-color flamingo #f0c6c6;
|
|
|
|
@define-color rosewater #f4dbd6;
|
|
|
|
|
|
|
|
* {
|
|
|
|
border: none;
|
2023-07-13 12:41:00 +01:00
|
|
|
border-radius: 0px;
|
|
|
|
margin: 0px;
|
2023-07-12 16:43:18 +01:00
|
|
|
background: transparent;
|
|
|
|
color: @text;
|
2023-07-10 11:24:42 +01:00
|
|
|
font-family: "FiraCode Nerd Font";
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
2023-07-13 13:49:51 +01:00
|
|
|
window > box {
|
2023-07-13 15:26:35 +01:00
|
|
|
margin-left: 10px;
|
|
|
|
margin-right: 10px;
|
2023-09-24 10:29:51 +01:00
|
|
|
border-left: 1px solid @surface2;
|
|
|
|
border-right: 1px solid @surface2;
|
|
|
|
border-bottom: 1px solid @surface2;
|
2023-07-13 13:49:51 +01:00
|
|
|
border-top-left-radius: 0px;
|
|
|
|
border-top-right-radius: 0px;
|
|
|
|
border-bottom-left-radius: 10px;
|
|
|
|
border-bottom-right-radius: 10px;
|
2023-07-13 13:52:38 +01:00
|
|
|
background: @base;
|
2023-07-13 12:41:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
tooltip {
|
|
|
|
background: @base;
|
2023-09-24 10:29:51 +01:00
|
|
|
border: 1px solid @lavender;
|
2023-07-13 12:41:00 +01:00
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#workspaces,
|
2023-07-13 13:49:51 +01:00
|
|
|
#cava,
|
2023-07-13 12:41:00 +01:00
|
|
|
#cpu,
|
|
|
|
#memory,
|
|
|
|
#temperature,
|
|
|
|
#clock,
|
|
|
|
#pulseaudio,
|
|
|
|
#bluetooth,
|
|
|
|
#network,
|
|
|
|
#backlight,
|
|
|
|
#battery,
|
|
|
|
#tray {
|
|
|
|
margin: 0px;
|
2023-07-13 15:26:35 +01:00
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
2023-07-10 11:24:42 +01:00
|
|
|
}
|
2023-07-13 12:41:00 +01:00
|
|
|
|
|
|
|
#workspaces button {
|
2023-09-24 10:29:51 +01:00
|
|
|
border-top: 1px solid transparent;
|
2023-07-13 13:49:51 +01:00
|
|
|
border-radius: 0px;
|
2023-07-13 12:41:00 +01:00
|
|
|
}
|
|
|
|
|
2023-09-24 10:29:51 +01:00
|
|
|
#workspaces button.active { border-top: 1px solid @lavender; }
|
2023-07-13 13:49:51 +01:00
|
|
|
|
2023-09-24 10:29:51 +01:00
|
|
|
#workspaces button.urgent { border-top: 1px solid @red; }
|