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