st

simple terminal

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

commit 2a8fdb8d7c2e0aae93428bcbe75d0389636eb99f
parent e04b7d92b430452a9d5130dc1b2b80058c6f9b3b
Author: Jul <jul@9o.is>
Date:   Sat, 24 Jan 2026 08:20:28 -0500

customize color scheme and font

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

diff --git a/config.h b/config.h @@ -5,7 +5,7 @@ * * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ -static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true"; +static char *font = "Fira Mono:regular:size=18:antialias=true:autohint=true"; static int borderpx = 2; /* @@ -96,32 +96,32 @@ unsigned int tabspaces = 8; /* Terminal colors (16 first used in escape sequence) */ static const char *colorname[] = { /* 8 normal colors */ - "black", - "red3", - "green3", - "yellow3", - "blue2", - "magenta3", - "cyan3", - "gray90", + "#313244", + "#f38ba8", + "#a6e3a1", + "#f9e2af", + "#89b4fa", + "#b4befe", + "#94e2d5", + "#a6adc8", /* 8 bright colors */ - "gray50", - "red", - "green", - "yellow", - "#5c5cff", - "magenta", - "cyan", - "white", + "#6c7086", + "#f38ba8", + "#a6e3a1", + "#f9e2af", + "#89b4fa", + "#b4befe", + "#94e2d5", + "#cdd6f4", [255] = 0, /* more colors can be added after 255 to use with DefaultXX */ "#cccccc", "#555555", - "gray90", /* default foreground colour */ - "black", /* default background colour */ + "#cdd6f4", /* default foreground colour */ + "#181825", /* default background colour */ };