about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorkurb42 <kurb42@riseup.net>2021-11-12 23:28:10 -0300
committerkurb42 <kurb42@riseup.net>2021-11-12 23:28:10 -0300
commit91397b776e43b70cc1ee6a7049fffd0aeecc9fff (patch)
treef26f554bc688cb008f55ecc31ae6e08a30cb65f4
parent32e556d083712bad1e11c97530abbe7b6c2525de (diff)
downloaddots-91397b776e43b70cc1ee6a7049fffd0aeecc9fff.tar.gz
colorscheme update
-rw-r--r--home/kurb42/.Xdefaults2
-rw-r--r--home/kurb42/.config/suckless/dmenu/config.def.h4
-rw-r--r--home/kurb42/.config/suckless/dwm/config.def.h14
3 files changed, 10 insertions, 10 deletions
diff --git a/home/kurb42/.Xdefaults b/home/kurb42/.Xdefaults
index 4f4a3aa..158b106 100644
--- a/home/kurb42/.Xdefaults
+++ b/home/kurb42/.Xdefaults
@@ -1,5 +1,5 @@
 ! -- Colors -- !
-URxvt.foreground:   #ffffff
+URxvt.foreground:   #ad7fa8
 URxvt.background:   #000000
 URxvt.fading: 35
 
diff --git a/home/kurb42/.config/suckless/dmenu/config.def.h b/home/kurb42/.config/suckless/dmenu/config.def.h
index 285c879..543a96b 100644
--- a/home/kurb42/.config/suckless/dmenu/config.def.h
+++ b/home/kurb42/.config/suckless/dmenu/config.def.h
@@ -9,8 +9,8 @@ static const char *fonts[] = {
 static const char *prompt      = NULL;      /* -p  option; prompt to the left of input field */
 static const char *colors[SchemeLast][2] = {
 	/*     fg         bg       */
-        [SchemeNorm] = { "#c0c0c0", "#202020" },
-        [SchemeSel] = { "#f0f0f0", "#404040" },
+        [SchemeNorm] = { "#ffffff", "#000000" },
+        [SchemeSel] = { "#000000", "#ad7fa8" },
 	[SchemeOut] = { "#000000", "#00ffff" },
 };
 /* -l option; if nonzero, dmenu uses vertical list with given number of lines */
diff --git a/home/kurb42/.config/suckless/dwm/config.def.h b/home/kurb42/.config/suckless/dwm/config.def.h
index ecd5ce0..7b89745 100644
--- a/home/kurb42/.config/suckless/dwm/config.def.h
+++ b/home/kurb42/.config/suckless/dwm/config.def.h
@@ -6,15 +6,15 @@ static const unsigned int snap      = 32;       /* snap pixel */
 static const int showbar            = 1;        /* 0 means no bar */
 static const int topbar             = 1;        /* 0 means bottom bar */
 static const char *fonts[]          = { "UbuntuMono Nerd Font:size=10" };
-static const char col_gray1[]       = "#202020";
-static const char col_gray2[]       = "#404040";
-static const char col_gray3[]       = "#c0c0c0";
-static const char col_gray4[]       = "#f0f0f0";
-static const char col_cyan[]        = "#a0a0aa";
+static const char col_gray1[]       = "#000000";
+static const char col_gray2[]       = "#ffffff";
+static const char col_gray3[]       = "#ad7fa8";
+static const char col_gray4[]       = "#75507b";
+static const char col_cyan[]        = "#333333";
 static const char *colors[][3]      = {
   /*               fg         bg         border   */
-  [SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
-  [SchemeSel]  = { col_gray4, col_gray2, col_cyan  },
+  [SchemeNorm] = { col_gray2, col_gray1, col_gray4 },
+  [SchemeSel]  = { col_gray1, col_gray3, col_gray3 },
 };
 
 /* tagging */