This commit is contained in:
Bartek Stalewski 2022-05-08 19:29:01 +02:00
parent 352b28b8d0
commit 94866cb9f3
2 changed files with 6 additions and 7 deletions

View File

@ -116,9 +116,8 @@ static const char *colorname[] = {
[255] = 0, [255] = 0,
/* more colors can be added after 255 to use with DefaultXX */ /* more colors can be added after 255 to use with DefaultXX */
//"#f8f8f2", "#272822", /* 256 -> background */
"#c7c7c7", /* 256 -> foreground */ "#c7c7c7", /* 257 -> foreground */
"#272822", /* 257 -> background */
"#c7c7c7", /* 258 -> cursor */ "#c7c7c7", /* 258 -> cursor */
"#161616", /* 259 -> cursor text */ "#161616", /* 259 -> cursor text */
}; };
@ -128,8 +127,8 @@ 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 = 256; unsigned int defaultbg = 256;
unsigned int defaultbg = 257; unsigned int defaultfg = 257;
unsigned int defaultcs = 258; unsigned int defaultcs = 258;
static unsigned int defaultrcs = 259; static unsigned int defaultrcs = 259;

View File

@ -1,6 +1,6 @@
# ftpd monokai # ftpd monokai
foreground: #c7c7c7 foreground: #f8f8f2 // #c7c7c7
background: #161616 background: #272822 // #161616
cursor: #c7c7c7 cursor: #c7c7c7
cursor text: #feffff cursor text: #feffff
selection: #c1ddff selection: #c1ddff