From 21758ff091b24bd6eec4fffa6f3f811238313e14 Mon Sep 17 00:00:00 2001 From: ProsperousPotato Date: Sat, 19 Jul 2025 20:35:03 +0100 Subject: add seperate floating border colour --- config.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'config.h') diff --git a/config.h b/config.h index 32582a2..ec04ae0 100644 --- a/config.h +++ b/config.h @@ -6,17 +6,18 @@ /* appearance */ static const unsigned int borderpx = 3; /* border pixel of windows */ -static const unsigned int snap = 16; /* snap pixel */ +static const unsigned int snap = 8; /* snap pixel */ static const int swallowfloating = 1; /* 1 means swallow floating windows by default */ static const char col_gray1[] = "#000000"; static const char col_gray2[] = "#000000"; static const char col_gray3[] = "#bbbbbb"; static const char col_gray4[] = "#eeeeee"; +static const char col_float[] = "#191970"; static const char col_cyan[] = "#bbbbbb"; -static const char *colors[][3] = { - /* fg bg border */ - [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, - [SchemeSel] = { col_gray1, col_cyan, col_cyan }, +static const char *colors[][4] = { + /* fg bg border float */ + [SchemeNorm] = { col_gray3, col_gray1, col_gray2, col_gray2 }, + [SchemeSel] = { col_gray1, col_cyan, col_cyan, col_float }, }; /* tagging */ -- cgit v1.2.3