summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpryazha <pryadeiniv@mail.ru>2025-02-19 22:28:58 +0500
committerpryazha <pryadeiniv@mail.ru>2025-02-19 22:28:58 +0500
commit8021ed85bfd50210968826c77e76c37613f31cd9 (patch)
tree9fdaaa6882c2a93c5a0e1637fc8cad4f2e275c90
parent53a8373c7785ba3be8aee5eefa56f97065e6a2a8 (diff)
change font and gruvbox themeHEADmaster
-rw-r--r--config.h6
-rw-r--r--gruvbox.h7
2 files changed, 9 insertions, 4 deletions
diff --git a/config.h b/config.h
index 3d38880..99227a0 100644
--- a/config.h
+++ b/config.h
@@ -5,9 +5,8 @@
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
-static char *font = "Iosevka:size=15";
-/* static char *font = "DepartureMono Nerd Font:size=13"; */
-/* static char *font = "Monocraft:size=15"; */
+static char *font = "Iosevka:pixelsize=21:antialias=true:autohint=true";
+/* static char *font = "Monocraft:pixelsize=18:antialias=true:autohint=true"; */
static int borderpx = 2;
/*
@@ -97,6 +96,7 @@ unsigned int tabspaces = 8;
#include "miku.h"
/* #include "srcery.h" */
+/* #include "gruvbox.h" */
/*
* Default shape of cursor
diff --git a/gruvbox.h b/gruvbox.h
index 1f62023..16ef070 100644
--- a/gruvbox.h
+++ b/gruvbox.h
@@ -1,7 +1,7 @@
/* Gruvbox colorscheme */
static const char *colorname[] = {
/* 8 normal colors */
- [0] = "#282828", /* black */
+ [0] = "#1c1c1c", /* black */
[1] = "#cc241d", /* red */
[2] = "#98971a", /* green */
[3] = "#d79921", /* yellow */
@@ -20,3 +20,8 @@ static const char *colorname[] = {
[14] = "#8ec07c", /* cyan */
[15] = "#ebdbb2", /* white */
};
+
+unsigned int defaultfg = 15;
+unsigned int defaultbg = 0;
+unsigned int defaultcs = 15;
+static unsigned int defaultrcs = 257;