diff options
author | stefan <stefan@s00.xyz> | 2023-05-01 21:28:11 -0400 |
---|---|---|
committer | stefan <stefan@s00.xyz> | 2023-05-01 21:28:11 -0400 |
commit | db25a83fb4a480127a5b20abc67167730fb8fa95 (patch) | |
tree | 35b996adb5a4a0ef71caa0751ca58064b40ff25a | |
parent | 27d9a559386cb025e6f5a621fd7f6a3f678f3cd8 (diff) | |
download | st-db25a83fb4a480127a5b20abc67167730fb8fa95.tar.gz |
-rw-r--r-- | base16-gruvbox-medium.h | 43 | ||||
-rw-r--r-- | config.def.h | 4 |
2 files changed, 45 insertions, 2 deletions
diff --git a/base16-gruvbox-medium.h b/base16-gruvbox-medium.h new file mode 100644 index 0000000..5743f36 --- /dev/null +++ b/base16-gruvbox-medium.h @@ -0,0 +1,43 @@ +/* +* base16-default-dark-theme.h +* +* Base16: (https://github.com/chriskempson/base16) +* +* Authors: +* +* Scheme: Chris Kempson (http://chriskempson.com) +* Template: Honza Pokorny <me@honza.ca> +* +*/ + +static const char *colorname[] = { + "#282828", /* base00 */ + "#fb4934", /* base08 */ + "#b8bb26", /* base0B */ + "#fabd2f", /* base0A */ + "#83a598", /* base0D */ + "#d3869b", /* base0E */ + "#8ec07c", /* base0C */ + "#d5c4a1", /* base05 */ + + "#665c54", /* base03 */ + "#fb4934", /* base08 */ + "#b8bb26", /* base0B */ + "#fabd2f", /* base0A */ + "#83a598", /* base0D */ + "#d3869b", /* base0E */ + "#8ec07c", /* base0C */ + "#fbf1c7", /* base07 */ + + [255] = 0, + + "#ebdbb2", + "#282828", + "#ebdbb2", + "#282828", +}; + +unsigned int defaultfg = 258; +unsigned int defaultbg = 259; +unsigned int defaultcs = 256; +static unsigned int defaultrcs = 257; diff --git a/config.def.h b/config.def.h index 2b5331e..ad2971e 100644 --- a/config.def.h +++ b/config.def.h @@ -5,7 +5,7 @@ * * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ -static char *font = "RobotoMono Nerd Font:pixelsize=15:antialias=true:autohint=true"; +static char *font = "fixed:pixelsize=15:antialias=true:autohint=true"; static int borderpx = 5; /* @@ -106,7 +106,7 @@ char *termname = "xterm-256color"; unsigned int tabspaces = 8; /* Terminal colors (16 first used in escape sequence) */ -#include "base16-gruvbox-dark-hard.h" +#include "base16-gruvbox-medium.h" /* * Default shape of cursor |