summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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";