From b14af08e9e1addf5487f3e5d98ad949e2aa5ac22 Mon Sep 17 00:00:00 2001 From: Erick Ahmed Date: Tue, 13 Jan 2026 22:22:39 +0100 Subject: [PATCH] Use Catppuccin Mocha color pallette --- config.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/config.h b/config.h index 848e4fd..4e9c9e5 100644 --- a/config.h +++ b/config.h @@ -10,15 +10,15 @@ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ static const char *fonts[] = { FONT }; static const char dmenufont[] = FONT; -static const char col_gray1[] = "#222222"; -static const char col_gray2[] = "#444444"; -static const char col_gray3[] = "#bbbbbb"; -static const char col_gray4[] = "#eeeeee"; -static const char col_cyan[] = "#005577"; +static const char col_gray1[] = "#1e1e2e"; +static const char col_gray2[] = "#45475a"; +static const char col_gray3[] = "#6c7086"; +static const char col_gray4[] = "#a6adc8"; +static const char col_lavender[] = "#b4befe"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, - [SchemeSel] = { col_gray4, col_cyan, col_cyan }, + [SchemeSel] = { col_gray1, col_lavender, col_lavender }, }; /* tagging */ @@ -61,7 +61,7 @@ static const Layout layouts[] = { /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ -static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; +static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_lavender, "-sf", col_gray4, NULL }; static const char *termcmd[] = { "st", NULL }; static const Key keys[] = {