diff options
| author | sinanmohd <pcmsinan@gmail.com> | 2021-09-06 12:13:23 +0530 | 
|---|---|---|
| committer | sinanmohd <pcmsinan@gmail.com> | 2021-09-06 12:13:23 +0530 | 
| commit | acf6c9ecf3c4f91d115e5a1c0a9b83671dd998c6 (patch) | |
| tree | 1f24e8e808dad84414de76090cc4898fed719af3 | |
| parent | 2e502e60d978c6121f9c57cfcd4ba1e0955b3a0e (diff) | |
color, noto emoji
| -rw-r--r-- | config.def.h | 51 | 
1 files changed, 26 insertions, 25 deletions
| diff --git a/config.def.h b/config.def.h index 5f7ce6e..09fd323 100644 --- a/config.def.h +++ b/config.def.h @@ -8,8 +8,8 @@  static char *font = "JetBrains Mono:pixelsize=12:antialias=true:autohint=true";  /* Spare fonts */  static char *font2[] = { -	"JetBrainsMono Nerd Font Mono:pixelsize=12:antialias=true:autohint=true", -	"JoyPixels:pixelsize=10:antialias=true:autohint=true" +	"JetBrainsMono Nerd Font Mono:pixelsize=14:antialias=true:autohint=true", +	"Noto Color Emoji:pixelsize=10:antialias=true:autohint=true"  /*	"Hack Nerd Font Mono:pixelsize=11:antialias=true:autohint=true", */  }; @@ -106,31 +106,32 @@ float alpha = 0.8;  /* Terminal colors (16 first used in escape sequence) */  static const char *colorname[] = {  	/* 8 normal colors */ -	"black", -	"red3", -	"green3", -	"yellow3", -	"blue2", -	"magenta3", -	"cyan3", -	"gray90", +	"#22212f", /* black   */ +	"#bf616a", /* red     */ +	"#a3be8c", /* green   */ +	"#ebcb8b", /* yellow  */ +//	"#81a1c1", /* blue    */ +	"#6071a9", /* blue    */ +	"#b48ead", /* magenta */ +	"#88c0d0", /* cyan    */ +	"#ced3e2", /* white   */  	/* 8 bright colors */ -	"gray50", -	"red", -	"green", -	"yellow", -	"#6071a9", -	"magenta", -	"cyan", -	"white", +	"#6071a9", /* black   */ +	"#bf616a", /* red     */ +	"#a3be8c", /* green   */ +	"#ebcb8b", /* yellow  */ +	"#6071a9", /* blue    */ +//	"#81a1c1", /* blue    */ +	"#b48ead", /* magenta */ +	"#8fbcbb", /* cyan    */ +	"#ced3e2", /* white   */  	[255] = 0,  	/* more colors can be added after 255 to use with DefaultXX */ -	"#cccccc", -	"#555555", -	"#22212f", +       "#22212f", /* background */ +       "#ced3e2", /* foreground */  }; @@ -138,10 +139,10 @@ static const char *colorname[] = {   * Default colors (colorname index)   * foreground, background, cursor, reverse cursor   */ -unsigned int defaultfg = 7; -unsigned int defaultbg = 258; -static unsigned int defaultcs = 256; -static unsigned int defaultrcs = 257; +unsigned int defaultfg = 257; +unsigned int defaultbg = 256; +static unsigned int defaultcs = 257; +static unsigned int defaultrcs = 256;  /*   * Default shape of cursor | 
