From ccb185455cc4fac647f2274bca242b260b1244f9 Mon Sep 17 00:00:00 2001 From: Sheldon Lee Date: Wed, 17 Nov 2021 18:30:38 +0800 Subject: [PATCH] Updated appearance. --- config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.h b/config.h index 97295c4..c52b76c 100644 --- a/config.h +++ b/config.h @@ -1,11 +1,11 @@ /* See LICENSE file for copyright and license details. */ /* appearance */ -static const unsigned int borderpx = 2; /* border pixel of windows */ +static const unsigned int borderpx = 3; /* border pixel of 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[] = { "SourceCodePro:size=10" }; +static const char *fonts[] = { "SourceCodeProSemiBold:size=10" }; static const char dmenufont[] = "monospace:size=10"; static const char col_gray1[] = "#222222"; static const char col_gray2[] = "#444444"; @@ -33,7 +33,7 @@ static const char sol_green[] = "#859900"; static const char *colors[][3] = { /* fg bg border */ - [SchemeNorm] = { sol_magenta, sol_base03, sol_base01 }, + [SchemeNorm] = { sol_magenta, sol_base03, sol_base03 }, [SchemeSel] = { sol_base03, sol_green, sol_orange }, };