styles: Propagate WireGuard blue in UI

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2018-05-05 01:17:24 +05:30 committed by Samuel Holland
parent 6bd4f7495d
commit 55ec3046d1
2 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<resources> <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_activated">#cfd8dc</color> <!-- Blue Grey 200 -->
<color name="list_item_ripple">#808e95</color> <!-- Blue Grey 200 dark --> <color name="list_item_ripple">#808e95</color> <!-- Blue Grey 200 dark -->
<color name="wireguard_brand_red">#871719</color> <color name="wireguard_brand_red">#871719</color>
<color name="wireguard_brand_blue">#2c3e50</color>
</resources> </resources>

View File

@ -2,7 +2,11 @@
<resources xmlns:android="http://schemas.android.com/apk/res/android"> <resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> <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="colorAccent">@color/wireguard_brand_red</item>
<item name="colorPrimary">@color/color_primary</item>
<item name="colorPrimaryDark">@color/wireguard_brand_blue</item>
</style> </style>
<style name="SettingsTheme" parent="AppTheme"> <style name="SettingsTheme" parent="AppTheme">