summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--base16-default-light.h43
-rw-r--r--base16-google-light.h43
-rw-r--r--config.def.h4
-rw-r--r--seoul256.h40
4 files changed, 128 insertions, 2 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;
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;
diff --git a/config.def.h b/config.def.h
index 5f65527..95f8b79 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 = "Iosevka NF:size=15:antialias=true:autohint=true";
+static char *font = "RobotoMono Nerd Font: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-default-dark.h"
+#include "base16-google-light.h"
/*
* Default shape of cursor
diff --git a/seoul256.h b/seoul256.h
new file mode 100644
index 0000000..fb56852
--- /dev/null
+++ b/seoul256.h
@@ -0,0 +1,40 @@
+/* Terminal colors (16 first used in escape sequence) */
+static const char *colorname[] = {
+
+ /* 8 normal colors */
+ [0] = "#4e4e4e", /* black */
+ [1] = "#af5f5f", /* red */
+ [2] = "#5f885f", /* green */
+ [3] = "#af8760", /* yellow */
+ [4] = "#5f87ae", /* blue */
+ [5] = "#875f87", /* magenta */
+ [6] = "#5f8787", /* cyan */
+ [7] = "#938f8f", /* white */
+
+ /* 8 bright colors */
+ [8] = "#3a3a3a", /* black */
+ [9] = "#870100", /* red */
+ [10] = "#005f00", /* green */
+ [11] = "#d8865f", /* yellow */
+ [12] = "#0087af", /* blue */
+ [13] = "#87025f", /* magenta */
+ [14] = "#008787", /* cyan */
+ [15] = "#3a3a3a", /* white */
+
+ /* special colors */
+ [256] = "#dadada", /* background */
+ [257] = "#4e4e4e", /* foreground */
+ [258] = "#4e4e4e", /* cursor */
+ [259] = "#dadada", /* cursor-inverse */
+
+};
+
+
+/*
+ * Default colors (colorname index)
+ * foreground, background, cursor, reverse cursor
+ */
+unsigned int defaultbg = 256;
+unsigned int defaultfg = 257;
+unsigned int defaultcs = 258;
+unsigned int defaultrcs = 259;
© 2025 Stefan Weigl-Bosker