From ae0a25b0ad6413476b5cfd319e60be32adbe30ce Mon Sep 17 00:00:00 2001 From: ray Date: Wed, 8 Apr 2020 11:07:24 +0100 Subject: [PATCH] update dark colours --- autumn-fire/kitty.conf | 6 +++--- autumn-fire/st.h | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/autumn-fire/kitty.conf b/autumn-fire/kitty.conf index e5bb53b..c28c3d6 100644 --- a/autumn-fire/kitty.conf +++ b/autumn-fire/kitty.conf @@ -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 diff --git a/autumn-fire/st.h b/autumn-fire/st.h index b311999..b6451f7 100644 --- a/autumn-fire/st.h +++ b/autumn-fire/st.h @@ -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 */ };