summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew <saintruler@gmail.com>2020-04-29 15:57:59 +0400
committerAndrew <saintruler@gmail.com>2020-04-29 15:57:59 +0400
commit6927662c5281f379827a24c543a801f417b98b93 (patch)
tree54cb4ebee1ef542abeb2af8640ede1e727e80bc8
parentf33a44bb7acca0ea6798398d2fa92445376d23df (diff)
Changed color scheme to gruvbox dark
-rw-r--r--config.h50
1 files changed, 23 insertions, 27 deletions
diff --git a/config.h b/config.h
index 4f7aa87..e9240b5 100644
--- a/config.h
+++ b/config.h
@@ -84,42 +84,38 @@ char *termname = "xterm-256color";
unsigned int tabspaces = 8;
/* bg opacity */
-float alpha = 0.85;
+float alpha = 0.95;
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
- "#282a2e",
- "#a54242",
- "#8c9440",
- "#de935f",
- "#5f819d",
- "#85678f",
- "#5e8d87",
- "#707880",
-
- "#373b41",
- "#cc6666",
- "#b5bd68",
- "#f0c674",
- "#81a2be",
- "#b294bb",
- "#8abeb7",
- "#c5c8c6",
-
- [255] = 0,
-
- "#cccccc",
- "#555555",
- "#1d1f21",
+ /* 8 normal colors */
+ "#32302f",
+ "#cc241d",
+ "#98971a",
+ "#d79921",
+ "#458588",
+ "#b16286",
+ "#689d6a",
+ "#a89984",
+
+ /* 8 bright colors */
+ "#928374",
+ "#fb4934",
+ "#b8bb26",
+ "#fabd2f",
+ "#83a598",
+ "#d3869b",
+ "#8ec07c",
+ "#ebdbb2",
};
/*
* Default colors (colorname index)
* foreground, background, cursor, reverse cursor
*/
-unsigned int defaultfg = 256;
-unsigned int defaultbg = 258;
-static unsigned int defaultcs = 256;
+unsigned int defaultfg = 15;
+unsigned int defaultbg = 0;
+static unsigned int defaultcs = 15;
static unsigned int defaultrcs = 257;
/*