summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrafa_99 <raroma09@gmail.com>2022-01-12 23:01:56 +0000
committerrafa_99 <raroma09@gmail.com>2022-01-12 23:01:56 +0000
commitc9af6350f76f3b430eef9b6861b1e3095ef2db2c (patch)
tree7d55020b83a30856bc6d201dc269c27bd20f8cb7
parent4f0778a7ec1474fffd8140a4b5a20e83de057885 (diff)
Added stock color that were wrongly updated
-rw-r--r--colors.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/colors.h b/colors.h
index f9bd1cc..0a4fdf0 100644
--- a/colors.h
+++ b/colors.h
@@ -1,7 +1,9 @@
-static const char norm_fg[] = "#b99cb5";
-static const char norm_bg[] = "#0a0c16";
-static const char norm_border[] = "#0a0c16";
+/* Norm Colors */
+static const char norm_fg[] = "#bbbbbb";
+static const char norm_bg[] = "#222222";
+static const char norm_border[] = "#444444";
-static const char sel_fg[] = "#b99cb5";
-static const char sel_bg[] = "#933A52";
-static const char sel_border[] = "#b99cb5";
+/* Sel Colors */
+static const char sel_fg[] = "#eeeeee";
+static const char sel_bg[] = "#005577";
+static const char sel_border[] = "#005577";