diff options
author | Harsh Shandilya <harsh@prjkt.io> | 2018-05-03 23:41:37 +0530 |
---|---|---|
committer | Samuel Holland <samuel@sholland.org> | 2018-05-05 10:08:24 -0500 |
commit | add6959914d4f5e94f03f6429f583c251aab347e (patch) | |
tree | 044bd8f7c5e470c3568b83b88854d457e0b3cb66 /app/src/main/res/layout | |
parent | 2602e1e87726f5a21cd61f5d78f4c7946b723ac5 (diff) |
styles: Propagate WireGuard red in UI
Signed-off-by: Harsh Shandilya <harsh@prjkt.io>
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" /> |