dwlb

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 1f2686b9618810cf8662b8f3404ef2d4745c3ba6
parent 30dee8ecd8d4e0ee21c0b53f27b342b2c5f17b7e
Author: awy <awy@awy.one>
Date:   Wed, 12 Nov 2025 23:07:36 +0300

colors

Diffstat:
Mconfig.def.h | 16++++++++++++++--
1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -31,7 +31,19 @@ static char *tags_names[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; // set 16-bit colors for bar // use either pixman_color_t struct or HEX_COLOR macro for 8-bit colors -static pixman_color_t active_fg_color = HEX_COLOR(0xeeeeeeff); +static pixman_color_t active_fg_color = HEX_COLOR(0xeceff4ff); +static pixman_color_t active_bg_color = HEX_COLOR(0x4c566aff); +static pixman_color_t occupied_fg_color = HEX_COLOR(0xeceff4ff); +static pixman_color_t occupied_bg_color = HEX_COLOR(0x2e3440ff); +static pixman_color_t inactive_fg_color = HEX_COLOR(0xeceff4ff); +static pixman_color_t inactive_bg_color = HEX_COLOR(0x2e3440ff); +static pixman_color_t urgent_fg_color = HEX_COLOR(0x222222ff); +static pixman_color_t urgent_bg_color = HEX_COLOR(0xeeeeeeff); +static pixman_color_t middle_bg_color = HEX_COLOR(0x2e3440ff); +static pixman_color_t middle_bg_color_selected = HEX_COLOR(0x4c566aff); + +/* og colorscheme */ +/* static pixman_color_t active_fg_color = HEX_COLOR(0xeeeeeeff); static pixman_color_t active_bg_color = HEX_COLOR(0x005577ff); static pixman_color_t occupied_fg_color = HEX_COLOR(0xeeeeeeff); static pixman_color_t occupied_bg_color = HEX_COLOR(0x005577ff); @@ -40,4 +52,4 @@ static pixman_color_t inactive_bg_color = HEX_COLOR(0x222222ff); static pixman_color_t urgent_fg_color = HEX_COLOR(0x222222ff); static pixman_color_t urgent_bg_color = HEX_COLOR(0xeeeeeeff); static pixman_color_t middle_bg_color = HEX_COLOR(0x222222ff); -static pixman_color_t middle_bg_color_selected = HEX_COLOR(0x005577ff); +static pixman_color_t middle_bg_color_selected = HEX_COLOR(0x005577ff); */