diff --git a/_suckless/st/config.h b/_suckless/st/config.h index c0f40d5..0e37ae3 100644 --- a/_suckless/st/config.h +++ b/_suckless/st/config.h @@ -116,9 +116,8 @@ static const char *colorname[] = { [255] = 0, /* more colors can be added after 255 to use with DefaultXX */ - //"#f8f8f2", - "#c7c7c7", /* 256 -> foreground */ - "#272822", /* 257 -> background */ + "#272822", /* 256 -> background */ + "#c7c7c7", /* 257 -> foreground */ "#c7c7c7", /* 258 -> cursor */ "#161616", /* 259 -> cursor text */ }; @@ -128,8 +127,8 @@ static const char *colorname[] = { * Default colors (colorname index) * foreground, background, cursor, reverse cursor */ -unsigned int defaultfg = 256; -unsigned int defaultbg = 257; +unsigned int defaultbg = 256; +unsigned int defaultfg = 257; unsigned int defaultcs = 258; static unsigned int defaultrcs = 259; diff --git a/colors.txt b/colors.txt index 9a3a6b4..d7f0109 100644 --- a/colors.txt +++ b/colors.txt @@ -1,6 +1,6 @@ # ftpd monokai -foreground: #c7c7c7 -background: #161616 +foreground: #f8f8f2 // #c7c7c7 +background: #272822 // #161616 cursor: #c7c7c7 cursor text: #feffff selection: #c1ddff