about summary refs log tree commit diff stats
path: root/src/config/color.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/config/color.h')
-rw-r--r--src/config/color.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/config/color.h b/src/config/color.h
index 6a5cf4a9..202e87c6 100644
--- a/src/config/color.h
+++ b/src/config/color.h
@@ -41,6 +41,12 @@
 
 #include <stdint.h>
 
+typedef enum {
+    COLOR_PROFILE_DEFAULT,
+    COLOR_PROFILE_REDGREEN,
+    COLOR_PROFILE_BLUE,
+} color_profile;
+
 struct color_def {
     uint16_t h; uint8_t s, l;
     const char *name;
@@ -48,7 +54,7 @@ struct color_def {
 extern const struct color_def color_names[];
 
 /* hash string to color pair */
-int color_pair_cache_hash_str(const char *str);
+int color_pair_cache_hash_str(const char *str, color_profile profile);
 /* parse fg_bg string to color pair */
 int color_pair_cache_get(const char *pair_name);
 /* clear cache */