diff options
author | rjl6789 <rob.livesey@gmail.com> | 2019-05-09 17:55:26 +0100 |
---|---|---|
committer | rjl6789 <rob.livesey@gmail.com> | 2019-05-09 17:55:26 +0100 |
commit | 9b18354de659e8f164eef9ca803b45d8efac6760 (patch) | |
tree | e2d8f0c4960607d435409cfe0d259fe75a4f9e38 /config.h | |
parent | 8c119155baf1e31c64fde71f89d0d1be393f2c6c (diff) |
corrected fg and bg defaults again
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -6,7 +6,7 @@ * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ static char *font = "mono:pixelsize=16:antialias=true:autohint=true"; -static int borderpx = 2; +static int borderpx = 8; /* * What program is execed by st depends of these precedence rules: @@ -115,8 +115,8 @@ static const char *colorname[] = { * Default colors (colorname index) * foreground, background, cursor, reverse cursor */ -unsigned int defaultfg = 15; -unsigned int defaultbg = 0; +unsigned int defaultfg = 257; +unsigned int defaultbg = 256; static unsigned int defaultcs = 15; static unsigned int defaultrcs = 0; |