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;
}

4
wofi/build.sh Executable file
View File

@@ -0,0 +1,4 @@
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")"
cat colors.css base.css > style.css

View File

@@ -1,4 +1,13 @@
@import "/home/adamf/scripts/wofi/colors.css";
@define-color color_primary #55ffbb;
@define-color color_secondary #62ff57;
@define-color color_tertiary #ff579a;
@define-color color_bg #1b110e;
@define-color color_bg_secondary #000000;
@define-color color_alt_bg #024942;
@define-color color_gray #222222;
@define-color color_text_light #F0F0F0;
@define-color color_text_dark #1b110e;
@define-color color_white #FFFFFF;
window {
margin: 0px;