From 24537d73d0be709764fa4a4f164bf8494aac53cd Mon Sep 17 00:00:00 2001 From: Remi Akirazar Date: Sat, 29 Nov 2025 23:56:03 -0500 Subject: [PATCH] config.def.h: Changed colours and font (WIP) --- config.def.h | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/config.def.h b/config.def.h index d47b3f8..d760eeb 100644 --- a/config.def.h +++ b/config.def.h @@ -1,18 +1,23 @@ /* See LICENSE file for copyright and license details. */ /* appearance */ -static const unsigned int borderpx = 1; /* border pixel of windows */ -static const unsigned int gappx = 5; /* gaps between windows */ +static const unsigned int borderpx = 2; /* border pixel of windows */ +static const unsigned int gappx = 6; /* gaps between windows */ static const unsigned int snap = 32; /* snap pixel */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ -static const char *fonts[] = { "monospace:size=10" }; +static const char *fonts[] = { "JetBrainsMono Nerd Font:size=14" }; static const char dmenufont[] = "monospace:size=10"; -static const char col_gray1[] = "#222222"; +// background colour +static const char col_gray1[] = "#440E50"; +// inactive window border colour static const char col_gray2[] = "#444444"; +// font colour static const char col_gray3[] = "#bbbbbb"; +// current tag and current window font colour static const char col_gray4[] = "#eeeeee"; -static const char col_cyan[] = "#005577"; +// Top bar second colour and active window border colour +static const char col_cyan[] = "#1F0B4B"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },