From 1001f193fd076cba12bd1ec9f113c144b37d8689 Mon Sep 17 00:00:00 2001 From: Madeleine Date: Thu, 9 Mar 2023 19:50:32 +0000 Subject: [PATCH] fix themes --- config.h | 4 ++-- themes/mydark.h | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 themes/mydark.h diff --git a/config.h b/config.h index 44a237d..3d4026e 100644 --- a/config.h +++ b/config.h @@ -1,8 +1,8 @@ /* See LICENSE file for copyright and license details. */ /* appearance */ -static const char font[] = "Iosevka:pixelsize=14:antialias=true:autohint=true"; -#include "/home/spy/.config/cols/tabbed.h" +static const char font[] = "Iosevka Nerd Font:pixelsize=14:antialias=true:autohint=true"; +#include "themes/mydark.h" static const char before[] = "<"; static const char after[] = ">"; static const char titletrim[] = "..."; diff --git a/themes/mydark.h b/themes/mydark.h new file mode 100644 index 0000000..ddd3d3c --- /dev/null +++ b/themes/mydark.h @@ -0,0 +1,6 @@ +static const char* normbgcolor = "#121317"; +static const char* normfgcolor = "#D6DEEB"; +static const char* selbgcolor = "#313439"; +static const char* selfgcolor = "#D6DEEB"; +static const char* urgbgcolor = "#1E222A"; +static const char* urgfgcolor = "#D6DEEB";