Fix color typo

This commit is contained in:
2024-06-03 14:13:53 +01:00
parent f1fe92f480
commit 30a380646e
3 changed files with 19 additions and 11 deletions

View File

@@ -15,8 +15,8 @@ static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "JetBrainsMono NF:size=20" };
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { "ebdbb2", "282828", "1d2021" },
[SchemeSel] = { "282828", "ebdbb2", "ebdbb2" },
[SchemeNorm] = { "#ebdbb2", "#282828", "#1d2021" },
[SchemeSel] = { "#282828", "#ebdbb2", "#ebdbb2" },
};
/* tagging */

View File

@@ -3,25 +3,20 @@
#include "exitdwm.c"
/* appearance */
static const unsigned int borderpx = 2; /* border pixel of windows */
static const unsigned int borderpx = 4; /* border pixel of windows */
static const unsigned int snap = 32; /* snap pixel */
static const unsigned int systraypinning = 0; /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor X */
static const unsigned int systrayonleft = 0; /* 0: systray in the right corner, >0: systray on left of status text */
static const unsigned int systrayonleft = 1; /* 0: systray in the right corner, >0: systray on left of status text */
static const unsigned int systrayspacing = 2; /* systray spacing */
static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display systray on the first monitor, False: display systray on the last monitor*/
static const int showsystray = 1; /* 0 means no systray */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "JetBrainsMono NF:size=20" };
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 *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
[SchemeSel] = { col_gray4, col_cyan, col_cyan },
[SchemeNorm] = { "#ebdbb2", "#282828", "#1d2021" },
[SchemeSel] = { "#282828", "#ebdbb2", "#ebdbb2" },
};
/* tagging */