update dark colours

This commit is contained in:
Ray Elliott 2020-04-08 11:07:24 +01:00
parent e930b1c062
commit ae0a25b0ad
2 changed files with 5 additions and 5 deletions

View File

@ -1,15 +1,15 @@
foreground #ea7607
background #170808
background #2d2d2d
cursor #ffbd08
cursor_text_color #141414
selection_foreground #ffffff
selection_background #170808
selection_background #2d2d2d
url_color #ffbd08
color0 #2b1f17
color0 #3d3131
color8 #544343
color1 #a60000

View File

@ -1,7 +1,7 @@
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
[0] = "#2b1f17", /* black */
[0] = "#3d3131", /* black */
[1] = "#a60000", /* red */
[2] = "#d6651a", /* green */
[3] = "#d5cd36", /* yellow */
@ -23,7 +23,7 @@ static const char *colorname[] = {
/* more colors can be added after 255 to use with DefaultXX */
[256] = "#170808", /* background */
[256] = "#2d2d2d", /* background */
[257] = "#ea7607", /* foreground */
};