Updated appearance.

This commit is contained in:
Sheldon Lee 2021-11-17 18:30:38 +08:00
parent ca11036e83
commit ccb185455c

View File

@ -1,11 +1,11 @@
/* See LICENSE file for copyright and license details. */ /* See LICENSE file for copyright and license details. */
/* appearance */ /* 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 unsigned int snap = 32; /* snap pixel */
static const int showbar = 1; /* 0 means no bar */ static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom 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 dmenufont[] = "monospace:size=10";
static const char col_gray1[] = "#222222"; static const char col_gray1[] = "#222222";
static const char col_gray2[] = "#444444"; static const char col_gray2[] = "#444444";
@ -33,7 +33,7 @@ static const char sol_green[] = "#859900";
static const char *colors[][3] = { static const char *colors[][3] = {
/* fg bg border */ /* fg bg border */
[SchemeNorm] = { sol_magenta, sol_base03, sol_base01 }, [SchemeNorm] = { sol_magenta, sol_base03, sol_base03 },
[SchemeSel] = { sol_base03, sol_green, sol_orange }, [SchemeSel] = { sol_base03, sol_green, sol_orange },
}; };