change font and colours
This commit is contained in:
parent
545f0c44a1
commit
d2826b519d
54
config.def.h
54
config.def.h
@ -5,7 +5,7 @@
|
|||||||
*
|
*
|
||||||
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
|
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
|
||||||
*/
|
*/
|
||||||
static char *font = "Liberation Mono:pixelsize=13:antialias=true:autohint=true";
|
static char *font = "Iosevka Term Extended:pixelsize=14:antialias=true:autohint=true";
|
||||||
static int borderpx = 2;
|
static int borderpx = 2;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -95,42 +95,40 @@ unsigned int tabspaces = 8;
|
|||||||
|
|
||||||
/* Terminal colors (16 first used in escape sequence) */
|
/* Terminal colors (16 first used in escape sequence) */
|
||||||
static const char *colorname[] = {
|
static const char *colorname[] = {
|
||||||
/* 8 normal colors */
|
|
||||||
"black",
|
|
||||||
"red3",
|
|
||||||
"green3",
|
|
||||||
"yellow3",
|
|
||||||
"blue2",
|
|
||||||
"magenta3",
|
|
||||||
"cyan3",
|
|
||||||
"gray90",
|
|
||||||
|
|
||||||
/* 8 bright colors */
|
/* 8 normal colors */
|
||||||
"gray50",
|
[0] = "#1d1f21", /* black */
|
||||||
"red",
|
[1] = "#cc342b", /* red */
|
||||||
"green",
|
[2] = "#198844", /* green */
|
||||||
"yellow",
|
[3] = "#fba922", /* yellow */
|
||||||
"#5c5cff",
|
[4] = "#3971ed", /* blue */
|
||||||
"magenta",
|
[5] = "#a36ac7", /* magenta */
|
||||||
"cyan",
|
[6] = "#3971ed", /* cyan */
|
||||||
"white",
|
[7] = "#c5c8c6", /* white */
|
||||||
|
|
||||||
[255] = 0,
|
/* 8 bright colors */
|
||||||
|
[8] = "#969896", /* black */
|
||||||
|
[9] = "#cc342b", /* red */
|
||||||
|
[10] = "#198844", /* green */
|
||||||
|
[11] = "#fba922", /* yellow */
|
||||||
|
[12] = "#3971ed", /* blue */
|
||||||
|
[13] = "#a36ac7", /* magenta */
|
||||||
|
[14] = "#3971ed", /* cyan */
|
||||||
|
[15] = "#ffffff", /* white */
|
||||||
|
|
||||||
/* more colors can be added after 255 to use with DefaultXX */
|
/* special colors */
|
||||||
"#cccccc",
|
[256] = "#1d1f21", /* background */
|
||||||
"#555555",
|
[257] = "#c5c8c6", /* foreground */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Default colors (colorname index)
|
* Default colors (colorname index)
|
||||||
* foreground, background, cursor, reverse cursor
|
* foreground, background, cursor, reverse cursor
|
||||||
*/
|
*/
|
||||||
unsigned int defaultfg = 7;
|
unsigned int defaultfg = 257;
|
||||||
unsigned int defaultbg = 0;
|
unsigned int defaultbg = 256;
|
||||||
static unsigned int defaultcs = 256;
|
static unsigned int defaultcs = 257;
|
||||||
static unsigned int defaultrcs = 257;
|
static unsigned int defaultrcs = 256;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Default shape of cursor
|
* Default shape of cursor
|
||||||
|
|||||||
Reference in New Issue
Block a user