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.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/config/color.h b/src/config/color.h
index fe0c6e63..304e862e 100644
--- a/src/config/color.h
+++ b/src/config/color.h
@@ -47,18 +47,16 @@ typedef enum {
     COLOR_PROFILE_BLUE_BLINDNESS,
 } color_profile;
 
-struct color_def
-{
-    uint16_t h;
-    uint8_t s, l;
-    const char* name;
+struct color_def {
+    uint16_t h; uint8_t s, l;
+    const char *name;
 };
 extern const struct color_def color_names[];
 
 /* hash string to color pair */
-int color_pair_cache_hash_str(const char* str, color_profile profile);
+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);
+int color_pair_cache_get(const char *pair_name);
 /* clear cache */
 void color_pair_cache_reset(void);