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-google-light.h | |
parent | 644a54d987f75dc9036904c4f1ef320fe7fdec7d (diff) | |
download | st-aa975def33e14a19ebce25731f0051f5d27c6123.tar.gz |
stuff and things
Diffstat (limited to 'base16-google-light.h')
-rw-r--r-- | base16-google-light.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/base16-google-light.h b/base16-google-light.h new file mode 100644 index 0000000..cd6710a --- /dev/null +++ b/base16-google-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[] = { + "#ffffff", /* base00 */ + "#cc342b", /* base08 */ + "#198844", /* base0B */ + "#fba922", /* base0A */ + "#3971ed", /* base0D */ + "#a36ac7", /* base0E */ + "#3971ed", /* base0C */ + "#373b41", /* base05 */ + + "#b4b7b4", /* base00 */ + "#cc342b", /* base08 */ + "#198844", /* base0B */ + "#fba922", /* base0A */ + "#3971ed", /* base0D */ + "#a36ac7", /* base0E */ + "#3971ed", /* base0C */ + "#1d1f21", /* base05 */ + + [255] = 0, + + "#373b41", + "#ffffff", + "#373b41", + "#ffffff", +}; + +unsigned int defaultfg = 258; +unsigned int defaultbg = 259; +unsigned int defaultcs = 256; +static unsigned int defaultrcs = 257; |