Add custom theme

master
Nakidai 2024-03-27 14:12:28 +03:00 committed by Nakidai
parent 9b5bde5fd9
commit b56373b848
Signed by: nakidai
GPG Key ID: C6BF6082F42307C0
2 changed files with 10 additions and 1 deletions

View File

@ -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 },

9
theme.h Normal file
View File

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