diff options
| author | Mitchell Riedstra <mitch@riedstra.dev> | 2021-10-30 00:10:48 -0400 |
|---|---|---|
| committer | Mitchell Riedstra <mitch@riedstra.dev> | 2021-10-30 00:10:48 -0400 |
| commit | 4778b82d9cd25a9adb4bf5de1f2228116033a5ac (patch) | |
| tree | a71ad00bb11ad8571c704f4cbc17b454655b704b | |
| parent | 84e86f92283dc5c2d9e174126b33209dd2a3d9be (diff) | |
| download | st-demo.tar.gz st-demo.tar.xz | |
Appropriate font and colors for demodemo
| -rw-r--r-- | config.h | 35 |
1 files changed, 18 insertions, 17 deletions
@@ -8,7 +8,8 @@ // static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true"; // static char *font = "scientifica:pixelsize=10:antialias=false:autohint=false"; // static char *font = "curie:style=Italic:pixelsize=10:antialias=false:autohint=false"; -static char *font = "scientifica:style=Bold:pixelsize=10:antialias=false:autohint=false"; +// static char *font = "scientifica:style=Bold:pixelsize=10:antialias=false:autohint=false"; +static char *font = "Terminus (TTF):pixelsize=18:antialias=false:autohint=false"; static int borderpx = 2; /* @@ -100,24 +101,24 @@ 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", + "#3b4252", /* black */ + "#bf616a", /* red */ + "#a3be8c", /* green */ + "#ebcb8b", /* yellow */ + "#81a1c1", /* blue */ + "#b48ead", /* magenta */ + "#88c0d0", /* cyan */ + "#e5e9f0", /* white */ /* 8 bright colors */ - "gray50", - "red", - "green", - "yellow", - "#5c5cff", - "magenta", - "cyan", - "white", + "#4c566a", /* black */ + "#bf616a", /* red */ + "#a3be8c", /* green */ + "#ebcb8b", /* yellow */ + "#81a1c1", /* blue */ + "#b48ead", /* magenta */ + "#8fbcbb", /* cyan */ + "#eceff4", /* white */ [255] = 0, |
