From 038b28c5f22ee76d69a5ce60be1c430c5912263d Mon Sep 17 00:00:00 2001 From: Omar Saleem Date: Sat, 16 Oct 2021 12:42:45 -0400 Subject: [PATCH] updating text labels to be brighter (#4) * adjusting text to be one notch brighter, base0 -> base1, base01 -> base0 * adjusting sublabel text to use base00 instead, its in between base01 and base0 --- menu/drivers/ozone.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/menu/drivers/ozone.c b/menu/drivers/ozone.c index 2742cf3246..0a5ee6cb65 100644 --- a/menu/drivers/ozone.c +++ b/menu/drivers/ozone.c @@ -1282,7 +1282,7 @@ ozone_theme_t ozone_theme_solarized_dark = { /* Float colors for quads and icons */ COLOR_HEX_TO_FLOAT(0x839496, 1.0f), /* header_footer_separator */ - COLOR_HEX_TO_FLOAT(0x839496, 1.0f), /* text */ + COLOR_HEX_TO_FLOAT(0x93A1A1, 1.0f), /* text */ COLOR_HEX_TO_FLOAT(0x073642, 1.0f), /* selection */ COLOR_HEX_TO_FLOAT(0x2AA198, 1.0f), /* selection_border */ COLOR_HEX_TO_FLOAT(0x073642, 1.0f), /* entries_border */ @@ -1291,9 +1291,9 @@ ozone_theme_t ozone_theme_solarized_dark = { COLOR_HEX_TO_FLOAT(0x002B36, 1.0f), /* message_background */ /* RGBA colors for text */ - 0x839496FF, /* text_rgba */ + 0x93A1A1FF, /* text_rgba */ 0x2AA198FF, /* text_selected_rgba */ - 0x586E75FF, /* text_sublabel_rgba */ + 0x657B83FF, /* text_sublabel_rgba */ /* Screensaver 'tint' (RGB24) */ 0x073642, /* screensaver_tint */