Some new colors + more lightweight coloring vim plugin.

This commit is contained in:
Bartek Stalewski 2022-04-29 19:02:59 +02:00
parent c718047723
commit 5ccf664210
3 changed files with 8 additions and 9 deletions

View file

@ -16,8 +16,8 @@ static const int topbar = 1; /* 0 means bottom bar */
static const int user_bh = 0; /* 0 means that dwm will calculate bar height, >= 1 means dwm will user_bh as bar height */
static const char *fonts[] = { "RobotoMono Nerd Font:style=Medium:pixelsize=13" };
static const char normfgcolor[] = "#bbbbbb";
static const char col_fg[] = "#c7c7c7";
static const char col_bg[] = "#161616";
static const char col_fg[] = "#f8f8f2";
static const char col_bg[] = "#272822";
static const char col_bd[] = "#161616";
static const char col_fg_sel[] = "#ffffff";
static const char col_bg_sel[] = "#005577";

View file

@ -116,8 +116,9 @@ static const char *colorname[] = {
[255] = 0,
/* more colors can be added after 255 to use with DefaultXX */
//"#f8f8f2",
"#c7c7c7", /* 256 -> foreground */
"#161616", /* 257 -> background */
"#272822", /* 257 -> background */
"#c7c7c7", /* 258 -> cursor */
"#161616", /* 259 -> cursor text */
};