From 26b573c1d0aad180867af13674743a59aadd0d9f Mon Sep 17 00:00:00 2001 From: Joey Lao Date: Mon, 12 Jun 2017 16:39:10 -0700 Subject: [PATCH] Make lead car text a little brighter --- selfdrive/ui/ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/ui/ui.c b/selfdrive/ui/ui.c index c0b129f33a..da676a8d91 100644 --- a/selfdrive/ui/ui.c +++ b/selfdrive/ui/ui.c @@ -694,7 +694,7 @@ static void ui_draw_world(UIState *s) { (int)(scene->lead_d_rel), lead_v_rel); } nvgFontSize(s->vg, 96.0f); - nvgFillColor(s->vg, nvgRGBA(128, 128, 0, 192)); + nvgFillColor(s->vg, nvgRGBA(200, 200, 0, 192)); nvgTextAlign(s->vg, NVG_ALIGN_CENTER | NVG_ALIGN_TOP); nvgText(s->vg, 1920 / 2 - 20, 40, radar_str, NULL);