From b56373b848d5cb8c0a0dd986ecd5906e75288e62 Mon Sep 17 00:00:00 2001 From: Nakidai Date: Wed, 27 Mar 2024 14:12:28 +0300 Subject: [PATCH] Add custom theme --- config.h | 2 +- theme.h | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 theme.h diff --git a/config.h b/config.h index e897ff6..df7abbe 100644 --- a/config.h +++ b/config.h @@ -21,7 +21,7 @@ static const int sidepad = 5; static const char *fonts[] = { "monospace:size=10", "fontawesome:size=12", "NotoColorEmoji:size=12" }; static const char dmenufont[] = "monospace:size=10"; -#include "frappe.h" +#include "theme.h" static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_fg, col_bg, col_bg }, diff --git a/theme.h b/theme.h new file mode 100644 index 0000000..b75ea6b --- /dev/null +++ b/theme.h @@ -0,0 +1,9 @@ +/* + * MIT License + * Copyright (c) 2021 Catppuccin +*/ + +static const char col_bg[] = "#212733"; +static const char col_fg[] = "#C1BDCE"; +static const char col_actwin[] = "#A46DAC"; +static const char col_actbg[] = "#313C55";