diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2018-05-03 23:41:37 +0530 |
---|---|---|
committer | Samuel Holland <samuel@sholland.org> | 2018-05-05 10:08:24 -0500 |
commit | 6bd4f7495da6ab3abc3ad068438c590f011a83f6 (patch) | |
tree | 044bd8f7c5e470c3568b83b88854d457e0b3cb66 /app/src/main/res/layout | |
parent | fd571c53ce20897969e957158097c2f16206d73d (diff) |
styles: Propagate WireGuard red in UI
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/tunnel_list_fragment.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/src/main/res/layout/tunnel_list_fragment.xml b/app/src/main/res/layout/tunnel_list_fragment.xml index 5d6a5ce9..3dc7fa0c 100644 --- a/app/src/main/res/layout/tunnel_list_fragment.xml +++ b/app/src/main/res/layout/tunnel_list_fragment.xml @@ -35,6 +35,8 @@ android:layout_height="wrap_content" android:layout_gravity="bottom|end" android:layout_margin="8dp" + app:fab_addButtonColorNormal="@color/wireguard_brand_red" + app:fab_addButtonColorPressed="@color/wireguard_brand_red" app:fab_labelStyle="@style/fab_label" app:fab_labelsPosition="left" app:layout_dodgeInsetEdges="bottom"> @@ -44,6 +46,8 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="@{fragment::onRequestCreateConfig}" + app:fab_colorNormal="@color/wireguard_brand_red" + app:fab_colorPressed="@color/wireguard_brand_red" app:fab_icon="@drawable/ic_action_edit" app:fab_size="mini" app:fab_title="@string/create_empty" /> @@ -53,6 +57,8 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="@{fragment::onRequestImportConfig}" + app:fab_colorNormal="@color/wireguard_brand_red" + app:fab_colorPressed="@color/wireguard_brand_red" app:fab_icon="@drawable/ic_action_open" app:fab_size="mini" app:fab_title="@string/create_from_file" /> |