diff options
Diffstat (limited to 'core/pref.h')
-rw-r--r-- | core/pref.h | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/core/pref.h b/core/pref.h index 90a442b9c..093d346b4 100644 --- a/core/pref.h +++ b/core/pref.h @@ -66,6 +66,12 @@ enum unit_system_values { PERSONALIZE }; +enum headerstyle_color_values { + MEDIUMBLUE, + LIGHTBLUE, + BLACK +}; + // ********** PREFERENCES ********** // This struct is kept global for all of ssrf // most of the fields are loaded from git as @@ -100,11 +106,12 @@ struct preferences { dive_computer_prefs_t dive_computer4; // ********** Display ************* - bool display_invalid_dives; - const char *divelist_font; - double font_size; - double mobile_scale; - bool show_developer; + bool display_invalid_dives; + const char *divelist_font; + double font_size; + double mobile_scale; + bool show_developer; + enum headerstyle_color_values headerstyle_color; // ********** Equipment tab ******* const char *default_cylinder; |