dmenu-solarized-light-5.0.diff (936B)
1 From 056331da9c6a72b90b32766840eb69e17f33cce8 Mon Sep 17 00:00:00 2001 2 From: Harsh Parekh <harsh_parekh@outlook.com> 3 Date: Mon, 21 Sep 2020 19:59:56 -0400 4 Subject: [PATCH] Apply solarized light colour scheme to dmenu. 5 6 --- 7 config.def.h | 4 ++-- 8 1 file changed, 2 insertions(+), 2 deletions(-) 9 10 diff --git a/config.def.h b/config.def.h 11 index 1edb647..7645e7f 100644 12 --- a/config.def.h 13 +++ b/config.def.h 14 @@ -9,8 +9,8 @@ static const char *fonts[] = { 15 static const char *prompt = NULL; /* -p option; prompt to the left of input field */ 16 static const char *colors[SchemeLast][2] = { 17 /* fg bg */ 18 - [SchemeNorm] = { "#bbbbbb", "#222222" }, 19 - [SchemeSel] = { "#eeeeee", "#005577" }, 20 + [SchemeNorm] = { "#657b83", "#fdf6e3" }, 21 + [SchemeSel] = { "#657b83", "#eee8d5"}, 22 [SchemeOut] = { "#000000", "#00ffff" }, 23 }; 24 /* -l option; if nonzero, dmenu uses vertical list with given number of lines */ 25 -- 26 2.28.0 27