diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2018-05-05 01:17:24 +0530 |
---|---|---|
committer | Samuel Holland <samuel@sholland.org> | 2018-05-05 10:08:49 -0500 |
commit | 55ec3046d1858e441cadbddf8467c4dbb9fd0a74 (patch) | |
tree | 625668e92adc4c5fee0007b04ebd05fd5402be49 /app/src/main/res | |
parent | 6bd4f7495da6ab3abc3ad068438c590f011a83f6 (diff) |
styles: Propagate WireGuard blue in UI
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/values/colors.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/values/styles.xml | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml index 5a6ee17f..6d1a3c2e 100644 --- a/app/src/main/res/values/colors.xml +++ b/app/src/main/res/values/colors.xml @@ -1,6 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <resources> + <color name="color_primary">#ed2c3e50</color> <!-- WireGuard blue, but lighter --> <color name="list_item_activated">#cfd8dc</color> <!-- Blue Grey 200 --> <color name="list_item_ripple">#808e95</color> <!-- Blue Grey 200 dark --> <color name="wireguard_brand_red">#871719</color> + <color name="wireguard_brand_blue">#2c3e50</color> </resources> diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml index ae6d0574..f018bee7 100644 --- a/app/src/main/res/values/styles.xml +++ b/app/src/main/res/values/styles.xml @@ -2,7 +2,11 @@ <resources xmlns:android="http://schemas.android.com/apk/res/android"> <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> + <item name="android:navigationBarColor">@color/wireguard_brand_blue</item> + <item name="android:statusBarColor">@color/wireguard_brand_blue</item> <item name="colorAccent">@color/wireguard_brand_red</item> + <item name="colorPrimary">@color/color_primary</item> + <item name="colorPrimaryDark">@color/wireguard_brand_blue</item> </style> <style name="SettingsTheme" parent="AppTheme"> |