| Index: athena/system/time_view.cc
|
| diff --git a/athena/system/time_view.cc b/athena/system/time_view.cc
|
| index e32cb26ed91841200344e69ae0f9d23661484f5a..84aeec48e8cc79601bea22f044a3015466353d27 100644
|
| --- a/athena/system/time_view.cc
|
| +++ b/athena/system/time_view.cc
|
| @@ -17,9 +17,11 @@ const int kTimerSlopSeconds = 1;
|
|
|
| } // namespace
|
|
|
| -TimeView::TimeView() {
|
| +TimeView::TimeView(SystemUI::ColorScheme color_scheme) {
|
| SetHorizontalAlignment(gfx::ALIGN_LEFT);
|
| - SetEnabledColor(SK_ColorWHITE);
|
| + SetEnabledColor((color_scheme == SystemUI::COLOR_SCHEME_LIGHT)
|
| + ? SK_ColorWHITE
|
| + : SK_ColorDKGRAY);
|
| SetAutoColorReadabilityEnabled(false);
|
| SetFontList(gfx::FontList().DeriveWithStyle(gfx::Font::BOLD));
|
|
|
|
|