diff --git a/src/host.cpp b/src/host.cpp index 5b843420f..f09081e85 100644 --- a/src/host.cpp +++ b/src/host.cpp @@ -874,7 +874,8 @@ void print_version() is_release = false; } #endif - col() << SBOLD(S256_FG(T_PEACH_FUZZ, PACKAGE_STRING << + + col() << SBOLD(S256_FG(T_TOMATO, PACKAGE_STRING << (is_release ? "" : "+"))) << " (" << get_version_details() << ")\n"; } diff --git a/src/main.cpp b/src/main.cpp index 3def1f9cb..b72ea903c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -311,7 +311,7 @@ print_fps(const char *prefix, steady_clock::time_point *t0, int *frames, const char *fps_col = fps_perc >= MIN_FPS_PERC_WARN ? "" : fps_perc >= MIN_FPS_PERC_WARN2 ? T256_FG_SYM(T_ARCTIC_LIME) - : T256_FG_SYM(T_DARKER_ORANGE); + : T256_FG_SYM(T_SADDLE_BROWN); log_msg(LOG_LEVEL_INFO, TERM_BOLD TERM_BG_BLACK TERM_FG_BRIGHT_GREEN "%s" TERM_RESET " %d frames in %g seconds = " TERM_BOLD diff --git a/src/utils/color_out.h b/src/utils/color_out.h index c0de168fe..5e15d1961 100644 --- a/src/utils/color_out.h +++ b/src/utils/color_out.h @@ -60,9 +60,9 @@ #define TERM_BG_BLACK "\033[40m" #define TERM_BG_RESET "\033[49m" // 256 color palette -#define T_DARKER_ORANGE 130 // (3,1,0) +#define T_SADDLE_BROWN 130 // (3,1,0) #define T_ARCTIC_LIME 190 // (4,5,0) -#define T_PEACH_FUZZ 209 // (5,2,1) +#define T_TOMATO 209 // (5,2,1) #define T256_FG_SYM(col) "\033[38;5;" STRINGIFY(col) "m" #define T256_FG(col, x) T256_FG_SYM(col) x TERM_FG_RESET #define S256_FG(col, x) T256_FG(col, << x <<)