Skip to content

Commit

Permalink
For TFL examples, unify the theme of app bar.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 276284196
  • Loading branch information
lintian06 authored and Copybara-Service committed Oct 23, 2019
1 parent cfbed2b commit 6ef2938
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#98999b</color>
<color name="colorPrimaryDark">#404041</color>
<color name="colorAccent">#d2d0d1</color>
<color name="colorPrimary">#ffa800</color>
<color name="colorPrimaryDark">#ff6f00</color>
<color name="colorAccent">#425066</color>

<color name="semi_transparent">#66000000</color>
</resources>
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#98999b</color>
<color name="colorPrimaryDark">#404041</color>
<color name="colorAccent">#d2d0d1</color>
<color name="colorPrimary">#ffa800</color>
<color name="colorPrimaryDark">#ff6f00</color>
<color name="colorAccent">#425066</color>

<color name="semi_transparent">#66000000</color>
</resources>
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Expand Up @@ -28,12 +28,12 @@
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_alignParentTop="true"
android:background="@color/toolbar_bg">
android:background="@android:color/white">

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/tfl2_logo" />
android:src="@drawable/tfl2_logo_dark" />
</androidx.appcompat.widget.Toolbar>

<TextView
Expand All @@ -42,7 +42,7 @@
android:layout_height="wrap_content"
android:layout_below="@+id/toolbar"
android:layout_gravity="top"
android:background="#455B64"
android:background="@color/colorPrimary"
android:padding="10dp"
android:text="Say one of the words below!"
android:textAlignment="center"
Expand Down
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#303C42</color>
<color name="colorPrimaryDark">#1a2125</color>
<color name="colorAccent">#596b74</color>
<color name="colorPrimary">#ffa800</color>
<color name="colorPrimaryDark">#ff6f00</color>
<color name="colorAccent">#425066</color>

<color name="semi_transparent">#66000000</color>
<color name="toolbar_bg">#303C42</color>
<color name="toolbar_bg">#ffffff</color>
</resources>

0 comments on commit 6ef2938

Please sign in to comment.