commit 94787c40be9b66152da0b7d517750613ddb70690
parent 580cfd25f79a92ad6ab023e6567548e744b607d9
Author: Jake Koroman <jakekoroman@proton.me>
Date: Fri, 7 Feb 2025 15:42:08 -0500
config.def.h: change default font to Iosevka and added THEME_SIMPLE_LIGHT
Diffstat:
1 file changed, 31 insertions(+), 2 deletions(-)
diff --git a/config.def.h b/config.def.h
@@ -6,8 +6,8 @@
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
static char *fonts[] = {
- "Liberation Mono:pixelsize=12:antialias=true:autohint=true", /* normal font */
- "Liberation Mono:pixelsize=24:antialias=true:autohint=true" /* big font */
+ "Iosevka:size=12:antialias=true:autohint=true", /* normal font */
+ "Iosevka:size=24:antialias=true:autohint=true" /* big font */
};
static int curfont = 0;
static int borderpx = 2;
@@ -16,6 +16,7 @@ static int borderpx = 2;
* available themes
* THEME_DEFAULT
* THEME_DEFAULT_LIGHT
+ * THEME_SIMPLE_LIGHT
* THEME_SOLARIZED
* THEME_GRUBER
* THEME_GRUVBOX
@@ -177,6 +178,34 @@ static const char *colorname[] = {
"#555555",
"black", /* default foreground colour */
"white", /* default background colour */
+#elif defined(THEME_SIMPLE_LIGHT)
+ /* 8 normal colors */
+ "black",
+ "red3",
+ "green3",
+ "yellow3",
+ "blue2",
+ "magenta3",
+ "cyan3",
+ "gray90",
+
+ /* 8 bright colors */
+ "gray50",
+ "red",
+ "green",
+ "yellow",
+ "#5c5cff",
+ "magenta",
+ "cyan",
+ "white",
+
+ [255] = 0,
+
+ /* more colors can be added after 255 to use with DefaultXX */
+ "#eea2ad",
+ "#555555",
+ "#1a1a1a", /* default foreground colour */
+ "#e5e5e5", /* default background colour */
#elif defined(THEME_SOLARIZED)
/* solarized dark */
"#073642", /* 0: black */