From 20b4740fadea9f14ff67cf64fcefff6ac8e516ce Mon Sep 17 00:00:00 2001 From: tavo-wasd Date: Sat, 8 Apr 2023 10:18:45 -0600 Subject: [PATCH] colors --- config.def.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.def.h b/config.def.h index e0b0af5..676b4c5 100644 --- a/config.def.h +++ b/config.def.h @@ -16,13 +16,13 @@ static const char col_gray3[] = "#bbbbbb"; static const char col_gray4[] = "#eeeeee"; static const char col_cyan[] = "#005577"; /* custom colors */ -static const char col_purple[] = "#d3869b"; -static const char col_ggrey[] = "#121212"; +static const char col_main[] = "#83a598"; +static const char col_second[] = "#121212"; static const char *colors[][3] = { /* --------------- */ /* fg bg border */ - [SchemeNorm] = { col_purple,col_ggrey, col_ggrey }, - [SchemeSel] = { col_ggrey, col_purple,col_purple}, + [SchemeNorm] = { col_main, col_second,col_second }, + [SchemeSel] = { col_second,col_main, col_main }, }; /* tagging */