From a809a7f6fda8272693149b39ab249d8ff50bc8fb Mon Sep 17 00:00:00 2001 From: Jason Wen Date: Thu, 14 Sep 2023 15:39:37 -0400 Subject: [PATCH] ui: 15% opacity drop shadow with Feature Status (#273) --- selfdrive/ui/qt/onroad.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/ui/qt/onroad.cc b/selfdrive/ui/qt/onroad.cc index ca0e7021f59745..b4223713a5bcd2 100644 --- a/selfdrive/ui/qt/onroad.cc +++ b/selfdrive/ui/qt/onroad.cc @@ -1466,7 +1466,7 @@ void AnnotatedCameraWidget::drawFeatureStatusText(QPainter &p, int x, int y) { const int text_height = 34; const int drop_shadow_size = 2; QColor text_color = Qt::white; - QColor shadow_color = Qt::black; + QColor shadow_color = blackColor(38); p.setFont(InterFont(32, QFont::Bold));