Initial Commit

This commit is contained in:
2026-04-18 15:05:01 +01:00
commit 801c9d74d0
22 changed files with 644 additions and 0 deletions
+54
View File
@@ -0,0 +1,54 @@
@import "./colors/custom/gruvbox-dark.css";
* {
all: unset;
font-family:
"Rubik", "JetBrainsMono Nerd Front Propo", "Noto Sans CJK JP",
"Noto Sans CJK KR";
}
.tooltip {
background-color: @bg1;
color: @fg;
margin: 10px;
padding: 10px;
border-radius: 12px;
}
.modules-center {
background-color: @bg1;
color: @fg;
padding: 2px 8px;
border-radius: 99px;
}
#clock {
font-weight: 500;
}
#workspaces {
background-color: @bg2;
padding: 2px 4px;
margin: 2px 0;
border-radius: 99px;
}
#workspaces button {
background-color: @bg3;
padding: 2px 4px;
border-radius: 99px;
margin: 0 2px;
transition: all 300ms ease-in-out;
min-width: 7px;
}
#workspaces button.empty {
color: @grey0;
}
#workspaces button.active {
background-color: @bg1;
min-width: 1.5rem;
font-weight: 500;
transition: none;
}