This commit is contained in:
memL0rz
2024-11-27 23:38:52 +01:00
parent 0272ab5f64
commit 22f90d725f

View File

@ -20,9 +20,9 @@ static unsigned int blinktimeout = 800;
static unsigned int cursorthickness = 2; static unsigned int cursorthickness = 2;
static int bellvolume = 0; static int bellvolume = 0;
char *termname = "xterm"; char *termname = "xterm";
unsigned int tabspaces = 4; unsigned int tabspaces = 2;
static const char *colorname[] = { static const char *colorname[] = {
[0] = "#010101", /* hard contrast: #1d2021 / soft contrast: #32302f */ [0] = "#282828", /* hard contrast: #1d2021 / soft contrast: #32302f */
[1] = "#cc241d", /* red */ [1] = "#cc241d", /* red */
[2] = "#98971a", /* green */ [2] = "#98971a", /* green */
[3] = "#d79921", /* yellow */ [3] = "#d79921", /* yellow */
@ -46,7 +46,7 @@ static const char *colorname[] = {
* Default colors (colorname index) * Default colors (colorname index)
* foreground, background, cursor, reverse cursor * foreground, background, cursor, reverse cursor
*/ */
unsigned int defaultfg = 1; unsigned int defaultfg = 7;
unsigned int defaultbg = 0; unsigned int defaultbg = 0;
unsigned int defaultcs = 15; unsigned int defaultcs = 15;
static unsigned int defaultrcs = 257; static unsigned int defaultrcs = 257;