st

simple terminal

git clone https://9o.is/git/st.git

commit c8275c92cd62533db66dcb25e67fb07bd631cd05
parent 3772ab9f78639ff76ed3c28d27e4a341d32b116a
Author: Jul <jul@9o.is>
Date:   Mon, 26 Jan 2026 04:39:08 -0500

change to grayscale base colors

Diffstat:
Mconfig.h | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/config.h b/config.h @@ -96,32 +96,32 @@ unsigned int tabspaces = 8; /* Terminal colors (16 first used in escape sequence) */ static const char *colorname[] = { /* 8 normal colors */ - "#313244", + "#616162", "#f38ba8", "#a6e3a1", "#f9e2af", "#89b4fa", "#b4befe", "#94e2d5", - "#a6adc8", + "#aaaaaa", /* 8 bright colors */ - "#6c7086", + "#848485", "#f38ba8", "#a6e3a1", "#f9e2af", "#89b4fa", "#b4befe", "#94e2d5", - "#cdd6f4", + "#e3e3e3", [255] = 0, /* more colors can be added after 255 to use with DefaultXX */ "#cccccc", "#555555", - "#cdd6f4", /* default foreground colour */ - "#181825", /* default background colour */ + "#e3e3e3", /* default foreground colour */ + "#131314", /* default background colour */ };