diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-12-18 12:42:08 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-12-20 10:51:18 -0800 |
commit | 7ed861fb9fe92c3ce290c5deef51e912565dc282 (patch) | |
tree | 65d19a1fd4e555b9202daa90e8b023a8fdcd36bb /mobile-widgets/themeinterface.cpp | |
parent | d0d867d80a9d3748ff89eaab823993cea6196152 (diff) | |
download | subsurface-7ed861fb9fe92c3ce290c5deef51e912565dc282.tar.gz |
mobile/UI: better dive list color for dark theme
While the text name is 'light primary color' it really has to be a dark
blueish color to fit with the theme.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/themeinterface.cpp')
-rw-r--r-- | mobile-widgets/themeinterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/themeinterface.cpp b/mobile-widgets/themeinterface.cpp index 28de58828..87fcd3d88 100644 --- a/mobile-widgets/themeinterface.cpp +++ b/mobile-widgets/themeinterface.cpp @@ -37,7 +37,7 @@ static const QColor DARK_DARKER_PRIMARY_COLOR = "#303F9f"; static const QColor DARK_DARKER_PRIMARY_TEXT_COLOR = "#ECECEC"; static const QColor DARK_DRAWER_COLOR = "#424242"; static const QColor DARK_LIGHT_DRAWER_COLOR = "#FFFFFF"; -static const QColor DARK_LIGHT_PRIMARY_COLOR = "#C5CAE9"; +static const QColor DARK_LIGHT_PRIMARY_COLOR = "#303050"; static const QColor DARK_LIGHT_PRIMARY_TEXT_COLOR = "#ECECEC"; static const QColor DARK_PRIMARY_COLOR = "#3F51B5"; static const QColor DARK_PRIMARY_TEXT_COLOR = "#ECECEC"; |