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";