config.def.h: Changed colours and font (WIP)

This commit is contained in:
2025-11-29 23:56:03 -05:00
parent e5db8641d0
commit 24537d73d0

View File

@@ -1,18 +1,23 @@
/* See LICENSE file for copyright and license details. */ /* See LICENSE file for copyright and license details. */
/* appearance */ /* appearance */
static const unsigned int borderpx = 1; /* border pixel of windows */ static const unsigned int borderpx = 2; /* border pixel of windows */
static const unsigned int gappx = 5; /* gaps between windows */ static const unsigned int gappx = 6; /* gaps between windows */
static const unsigned int snap = 32; /* snap pixel */ static const unsigned int snap = 32; /* snap pixel */
static const int showbar = 1; /* 0 means no bar */ static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */ static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "monospace:size=10" }; static const char *fonts[] = { "JetBrainsMono Nerd Font:size=14" };
static const char dmenufont[] = "monospace:size=10"; static const char dmenufont[] = "monospace:size=10";
static const char col_gray1[] = "#222222"; // background colour
static const char col_gray1[] = "#440E50";
// inactive window border colour
static const char col_gray2[] = "#444444"; static const char col_gray2[] = "#444444";
// font colour
static const char col_gray3[] = "#bbbbbb"; static const char col_gray3[] = "#bbbbbb";
// current tag and current window font colour
static const char col_gray4[] = "#eeeeee"; static const char col_gray4[] = "#eeeeee";
static const char col_cyan[] = "#005577"; // Top bar second colour and active window border colour
static const char col_cyan[] = "#1F0B4B";
static const char *colors[][3] = { static const char *colors[][3] = {
/* fg bg border */ /* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },