Change color scheme on my defaul st configuration. Add xsmall.

This commit is contained in:
Jonathan Bernard
2016-10-21 13:23:07 -05:00
parent f3d29a400e
commit abcaf43e10
5 changed files with 921 additions and 51 deletions

View File

@@ -5,8 +5,8 @@
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
static char font[] = "AverageMono:pixelsize=36";
//static char font[] = "Terminus:pixelsize=36";
//static char font[] = "AverageMono:pixelsize=36";
static char font[] = "Terminus:pixelsize=32";
//static char font[] = "Inconsolata:pixelsize=28";
//static char font[] = "Cousine:pixelsize=28";
@@ -77,23 +77,23 @@ static unsigned int tabspaces = 4;
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
"#101010", // black
"#9e1828", // red
"#008800", // green
"#968a38", // yellow
"#414171", // blue
"#963c59", // magenta
"#418179", // cyan
"#d6d6d6", // white
"#232323", // black
"#b02a35", // red
"#009600", // green
"#a79a48", // yellow
"#535584", // blue
"#a8516c", // magenta
"#50928c", // cyan
"#cacaca", // white
/* 8 bright colors */
"#666666", // grey (bright black)
"#cf6171", // bright red
"#7cbc8c", // bright green
"#fff796", // bright yellow
"#4186be", // bright blue
"#cf9ebe", // bright magenta
"#71bebe", // bright cyan
"#797979", // grey (bright black)
"#da7884", // bright red
"#8dc69e", // bright green
"#fff7a6", // bright yellow
"#5099ca", // bright blue
"#d9b0ca", // bright magenta
"#82c9ca", // bright cyan
"#ffffff", // bright white
[255] = 0,