diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2020-04-26 04:30:26 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2020-04-26 04:30:26 +0530 |
commit | 6b1164ad8ddbc40adaf10ad9658c11ce2e8cb68b (patch) | |
tree | d65da7e67ed04b9298850155ef55b5f754b4fdf0 | |
parent | c68a5c776bba2619830102f2c229403750ea6f3f (diff) |
ui: switch up dark theme system bars colors
The status bar color had a subtle transparency applied which caused
inconsistencies, and the navigation bar color was the wrong shade of
gray.
Reported-by: Danny Lin <danny@kdrag0n.dev>
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
-rw-r--r-- | ui/src/main/res/values-night/colors.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/src/main/res/values-night/colors.xml b/ui/src/main/res/values-night/colors.xml index e1015da8..586486da 100644 --- a/ui/src/main/res/values-night/colors.xml +++ b/ui/src/main/res/values-night/colors.xml @@ -12,8 +12,8 @@ <!-- Theme variables --> <color name="list_multiselect_background">#1aeeeeee</color> - <color name="status_bar_color">#21242424</color> - <color name="navigation_bar_color">#aa242424</color> + <color name="status_bar_color">@color/primary_color</color> + <color name="navigation_bar_color">#aa212121</color> <!-- Log viewer tag colors --> <color name="debug_tag_color">#aaaaaa</color> |