From 340076c5dfa5eb01b9b9dc5883275e2631f2ab10 Mon Sep 17 00:00:00 2001 From: Dita Aji Pratama Date: Sun, 22 Dec 2024 18:05:13 +0700 Subject: [PATCH] Change a theme color --- config.h | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/config.h b/config.h index 40ea3c8..9b3c0aa 100644 --- a/config.h +++ b/config.h @@ -7,15 +7,28 @@ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ static const char *fonts[] = { "monospace:size=10" }; static const char dmenufont[] = "monospace:size=10"; + 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_blue1[] = "#102D4F"; +static const char col_blue2[] = "#00537A"; +static const char col_yellow1[] = "#F5A201"; +static const char col_yellow2[] = "#FFBA42"; +static const char col_blush[] = "#F8E5EE"; + +static const char col_dark1[] = "#162736"; +static const char col_dark2[] = "#203449"; +static const char col_dark3[] = "#708594"; +static const char col_white[] = "#FFFFFF"; + static const char *colors[][3] = { /* fg bg border */ - [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, - [SchemeSel] = { col_gray4, col_cyan, col_cyan }, + [SchemeNorm] = { col_white, col_dark1, col_dark1 }, + [SchemeSel ] = { col_white, col_dark3, col_dark3 }, }; /* tagging */