recovery: Set the INFO color to the recovery/fastboot light color
The default color clashes with the new recovery logo.
Currently no text is rendered with the INFO color, but that will
change in a future commit.
Change-Id: I737528e0c0a5202532e59d99ca57268478c87965
diff --git a/recovery_ui/screen_ui.cpp b/recovery_ui/screen_ui.cpp
index 94fc33a..ed6ae19 100644
--- a/recovery_ui/screen_ui.cpp
+++ b/recovery_ui/screen_ui.cpp
@@ -566,7 +566,10 @@
void ScreenRecoveryUI::SetColor(UIElement e) const {
switch (e) {
case UIElement::INFO:
- gr_color(249, 194, 0, 255);
+ if (fastbootd_logo_enabled_)
+ gr_color(0xfd, 0xd8, 0x35, 255);
+ else
+ gr_color(0xf8, 0x90, 0xff, 255);
break;
case UIElement::HEADER:
if (fastbootd_logo_enabled_)