summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstefan <stefan@s00.xyz>2023-04-30 15:52:26 -0400
committerstefan <stefan@s00.xyz>2023-04-30 15:52:26 -0400
commit27d9a559386cb025e6f5a621fd7f6a3f678f3cd8 (patch)
treee9a5f4013975bfbf85beefc42619b94263e6f8e8
parentaa975def33e14a19ebce25731f0051f5d27c6123 (diff)
downloadst-27d9a559386cb025e6f5a621fd7f6a3f678f3cd8.tar.gz
colorschemes n stuff
-rw-r--r--base16-gruvbox-dark-hard.h43
-rw-r--r--base16-windows-highcontrast.h43
-rw-r--r--config.def.h2
3 files changed, 87 insertions, 1 deletions
diff --git a/base16-gruvbox-dark-hard.h b/base16-gruvbox-dark-hard.h
new file mode 100644
index 0000000..c165cad
--- /dev/null
+++ b/base16-gruvbox-dark-hard.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[] = {
+ "#1d2021", /* 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,
+
+ "#d5c4a1",
+ "#1d2021",
+ "#d5c4a1",
+ "#1d2021",
+};
+
+unsigned int defaultfg = 258;
+unsigned int defaultbg = 259;
+unsigned int defaultcs = 256;
+static unsigned int defaultrcs = 257;
diff --git a/base16-windows-highcontrast.h b/base16-windows-highcontrast.h
new file mode 100644
index 0000000..8b0fb65
--- /dev/null
+++ b/base16-windows-highcontrast.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[] = {
+ "#000000", /* base00 */
+ "#fc5454", /* base08 */
+ "#54fc54", /* base0B */
+ "#fcfc54", /* base0A */
+ "#5454fc", /* base0D */
+ "#fc54fc", /* base0E */
+ "#54fcfc", /* base0C */
+ "#c0c0c0", /* base05 */
+
+ "#545454", /* base03 */
+ "#fc5454", /* base08 */
+ "#54fc54", /* base0B */
+ "#fcfc54", /* base0A */
+ "#5454fc", /* base0D */
+ "#fc54fc", /* base0E */
+ "#54fcfc", /* base0C */
+ "#fcfcfc", /* base07 */
+
+ [255] = 0,
+
+ "#f0f0f0",
+ "#181818",
+ "#f0f0f0",
+ "#000000",
+};
+
+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 95f8b79..2b5331e 100644
--- a/config.def.h
+++ b/config.def.h
@@ -106,7 +106,7 @@ char *termname = "xterm-256color";
unsigned int tabspaces = 8;
/* Terminal colors (16 first used in escape sequence) */
-#include "base16-google-light.h"
+#include "base16-gruvbox-dark-hard.h"
/*
* Default shape of cursor
© 2025 Stefan Weigl-Bosker