summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.h (renamed from config.def.h)49
1 files changed, 23 insertions, 26 deletions
diff --git a/config.def.h b/config.h
index 7a399bc..4f7aa87 100644
--- a/config.def.h
+++ b/config.h
@@ -5,7 +5,7 @@
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
-static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true";
+static char *font = "Input Mono:pixelsize=16:antialias=true:autohint=true";
static int borderpx = 2;
/*
@@ -63,7 +63,8 @@ static unsigned int cursorthickness = 2;
static int bellvolume = 0;
/* default TERM value */
-char *termname = "st-256color";
+// char *termname = "st-256color";
+char *termname = "xterm-256color";
/*
* spaces per tab
@@ -83,44 +84,40 @@ char *termname = "st-256color";
unsigned int tabspaces = 8;
/* bg opacity */
-float alpha = 0.7;
+float alpha = 0.85;
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
- /* 8 normal colors */
- "black",
- "red3",
- "green3",
- "yellow3",
- "blue2",
- "magenta3",
- "cyan3",
- "gray90",
-
- /* 8 bright colors */
- "gray50",
- "red",
- "green",
- "yellow",
- "#5c5cff",
- "magenta",
- "cyan",
- "white",
+ "#282a2e",
+ "#a54242",
+ "#8c9440",
+ "#de935f",
+ "#5f819d",
+ "#85678f",
+ "#5e8d87",
+ "#707880",
+
+ "#373b41",
+ "#cc6666",
+ "#b5bd68",
+ "#f0c674",
+ "#81a2be",
+ "#b294bb",
+ "#8abeb7",
+ "#c5c8c6",
[255] = 0,
- /* more colors can be added after 255 to use with DefaultXX */
"#cccccc",
"#555555",
- "black",
+ "#1d1f21",
};
-
/*
* Default colors (colorname index)
* foreground, background, cursor, reverse cursor
*/
-unsigned int defaultfg = 7;
+unsigned int defaultfg = 256;
unsigned int defaultbg = 258;
static unsigned int defaultcs = 256;
static unsigned int defaultrcs = 257;