diff options
author | stefan <stefan@s00.xyz> | 2023-04-17 12:47:22 -0400 |
---|---|---|
committer | stefan <stefan@s00.xyz> | 2023-04-17 12:47:22 -0400 |
commit | aa975def33e14a19ebce25731f0051f5d27c6123 (patch) | |
tree | 380a959c2ca3f657c8799583d598b9a44693e2a6 /base16-default-light.h | |
parent | 644a54d987f75dc9036904c4f1ef320fe7fdec7d (diff) | |
download | st-aa975def33e14a19ebce25731f0051f5d27c6123.tar.gz |
stuff and things
Diffstat (limited to 'base16-default-light.h')
-rw-r--r-- | base16-default-light.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/base16-default-light.h b/base16-default-light.h new file mode 100644 index 0000000..69ae2e1 --- /dev/null +++ b/base16-default-light.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[] = { + "#181818", /* base00 */ + "#ab4642", /* base08 */ + "#a1b56c", /* base0B */ + "#f7ca88", /* base0A */ + "#7cafc2", /* base0D */ + "#ba8baf", /* base0E */ + "#86c1b9", /* base0C */ + "#d8d8d8", /* base05 */ + + "#585858", /* base03 */ + "#ab4642", /* base08 */ + "#a1b56c", /* base0B */ + "#f7ca88", /* base0A */ + "#7cafc2", /* base0D */ + "#ba8baf", /* base0E */ + "#86c1b9", /* base0C */ + "#f8f8f8", /* base07 */ + + [255] = 0, + + "#181818", + "#e8e8e8", + "#383838", + "#f8f8f8", +}; + +unsigned int defaultfg = 258; +unsigned int defaultbg = 259; +unsigned int defaultcs = 256; +static unsigned int defaultrcs = 257; |