Issues with sourcing colour configs, now files are concatenated into final config

This commit is contained in:
2026-03-10 11:04:42 +00:00
parent abe1cb125f
commit 56f5e8a217
18 changed files with 1499 additions and 7 deletions

49
wofi/base.css Normal file
View File

@@ -0,0 +1,49 @@
window {
margin: 0px;
border: 1px solid @color_primary;
background-color: @color_bg;
border-radius: 8px;
}
#input {
padding: 4px 8px;
margin: 6px;
color: @color_text_light;
background-color: @color_alt_bg;
border: 1px solid @color_primary;
border-radius: 4px;
}
#inner-box {
background-color: @color_bg;
}
#outer-box {
margin: 4px;
padding: 4px;
background-color: @color_bg;
}
#scroll {
margin: 0px;
padding: 4px;
}
#text {
margin: 2px 8px;
color: @color_primary;
}
#entry {
border-radius: 4px;
}
#entry:selected {
background-color: @color_alt_bg;
border: 1px solid @color_primary;
}
#text:selected {
color: @color_tertiary;
}