80 lines
2.0 KiB
Diff
80 lines
2.0 KiB
Diff
|
diff --git a/config.def.h b/config.h
|
||
|
index 651c990..def38b0 100644
|
||
|
--- a/config.def.h
|
||
|
+++ b/config.h
|
||
|
@@ -5,10 +5,10 @@
|
||
|
*
|
||
|
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
|
||
|
*/
|
||
|
-static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true";
|
||
|
+static char *font = "Hack:pixelsize=16:antialias=true:autohint=true";
|
||
|
/* Spare fonts */
|
||
|
static char *font2[] = {
|
||
|
-/* "Inconsolata for Powerline:pixelsize=12:antialias=true:autohint=true", */
|
||
|
+ "JoyPixels:pixelsize=14:antialias=true:autohint=true",
|
||
|
/* "Hack Nerd Font Mono:pixelsize=11:antialias=true:autohint=true", */
|
||
|
};
|
||
|
|
||
|
@@ -105,32 +105,30 @@ 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",
|
||
|
+ "#3b4252", /* black */
|
||
|
+ "#bf616a", /* red */
|
||
|
+ "#a3be8c", /* green */
|
||
|
+ "#ebcb8b", /* yellow */
|
||
|
+ "#81a1c1", /* blue */
|
||
|
+ "#b48ead", /* magenta */
|
||
|
+ "#88c0d0", /* cyan */
|
||
|
+ "#e5e9f0", /* white */
|
||
|
|
||
|
/* 8 bright colors */
|
||
|
- "gray50",
|
||
|
- "red",
|
||
|
- "green",
|
||
|
- "yellow",
|
||
|
- "#5c5cff",
|
||
|
- "magenta",
|
||
|
- "cyan",
|
||
|
- "white",
|
||
|
+ "#4c566a", /* black */
|
||
|
+ "#bf616a", /* red */
|
||
|
+ "#a3be8c", /* green */
|
||
|
+ "#ebcb8b", /* yellow */
|
||
|
+ "#81a1c1", /* blue */
|
||
|
+ "#b48ead", /* magenta */
|
||
|
+ "#8fbcbb", /* cyan */
|
||
|
+ "#eceff4", /* white */
|
||
|
|
||
|
[255] = 0,
|
||
|
|
||
|
/* more colors can be added after 255 to use with DefaultXX */
|
||
|
- "#cccccc",
|
||
|
- "#555555",
|
||
|
- "gray90", /* default foreground colour */
|
||
|
- "black", /* default background colour */
|
||
|
+ "#d8dee9", /* default foreground colour */
|
||
|
+ "#2e3440", /* default background colour */
|
||
|
};
|
||
|
|
||
|
|
||
|
@@ -138,8 +136,8 @@ static const char *colorname[] = {
|
||
|
* Default colors (colorname index)
|
||
|
* foreground, background, cursor, reverse cursor
|
||
|
*/
|
||
|
-unsigned int defaultfg = 258;
|
||
|
-unsigned int defaultbg = 259;
|
||
|
+unsigned int defaultfg = 256;
|
||
|
+unsigned int defaultbg = 257;
|
||
|
unsigned int defaultcs = 256;
|
||
|
static unsigned int defaultrcs = 257;
|
||
|
|