diff options
author | zachir <zachir@librem.one> | 2022-08-05 19:50:27 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2022-08-05 19:50:27 -0500 |
commit | 9213f002511eca83949fbf94a82678833478bdfa (patch) | |
tree | aad82762f2d14dd8928b1a955a2590a35b4bbd5d /config.def.h | |
parent | 177dcb949dc614042d3f2f07d729a195d85b4b42 (diff) |
update config to use correct colors
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/config.def.h b/config.def.h index 1f9b5e3..f55682e 100644 --- a/config.def.h +++ b/config.def.h @@ -128,10 +128,10 @@ static const char *colorname[] = { [255] = 0, /* more colors can be added after 255 to use with DefaultXX */ + "black", /* default background colour */ + "gray90", /* default foreground colour */ "#cccccc", "#555555", - "gray90", /* default foreground colour */ - "black", /* default background colour */ }; @@ -139,10 +139,10 @@ static const char *colorname[] = { * Default colors (colorname index) * foreground, background, cursor, reverse cursor */ -unsigned int defaultfg = 258; -unsigned int defaultbg = 259; -unsigned int defaultcs = 256; -static unsigned int defaultrcs = 257; +unsigned int defaultfg = 257; +unsigned int defaultbg = 256; +unsigned int defaultcs = 258; +static unsigned int defaultrcs = 259; /* * Default shape of cursor |