--- config.h 2014-07-25 15:58:00.561540851 -0300 +++ /home/henrique/Sources/st/config.h 2014-07-25 15:51:16.793572945 -0300 @@ -5,7 +5,7 @@ * * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ -static char font[] = "Liberation Mono:pixelsize=12:antialias=false:autohint=false"; +static char font[] = "Terminus:pixelsize=14:antialias=false:autohint=false"; static int borderpx = 2; static char shell[] = "/bin/sh"; @@ -52,29 +52,30 @@ /* Terminal colors (16 first used in escape sequence) */ static const char *colorname[] = { /* 8 normal colors */ - "black", - "red3", - "green3", - "yellow3", - "blue2", - "magenta3", - "cyan3", - "gray90", + "#1a1818", + "#E84F4F", + "#B8D68C", + "#E1AA5D", + "#7DC1CF", + "#9B64FB", + "#6D878D", + "#dddddd", /* 8 bright colors */ - "gray50", - "red", - "green", - "yellow", - "#5c5cff", - "magenta", - "cyan", - "white", + "#404040", + "#D23D3D", + "#A0CF5D", + "#F39D21", + "#4E9FB1", + "#8542FF", + "#42717B", + "#dddddd", [255] = 0, /* more colors can be added after 255 to use with DefaultXX */ "#cccccc", + "#333333", }; @@ -82,7 +83,7 @@ * Default colors (colorname index) * foreground, background, cursor */ -static unsigned int defaultfg = 7; +static unsigned int defaultfg = 15; static unsigned int defaultbg = 0; static unsigned int defaultcs = 256;