Add custom theme

Nakidai 2024-03-27 14:12:28 +03:00
parent 08af9ae272
commit fcbd987f4b
Signed by: nakidai
GPG Key ID: 18AD605FDA13FE5A
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";