From 4778b82d9cd25a9adb4bf5de1f2228116033a5ac Mon Sep 17 00:00:00 2001 From: Mitchell Riedstra Date: Sat, 30 Oct 2021 00:10:48 -0400 Subject: Appropriate font and colors for demo --- config.h | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/config.h b/config.h index fa90d67..18f8d50 100644 --- a/config.h +++ b/config.h @@ -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, -- cgit v1.2.3