| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 | 2 |
| 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. | 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <resources> | 8 <resources> |
| 9 <style name="BaseTheme" parent="@style/Theme.AppCompat.Light.NoActionBar"> | 9 <style name="BaseTheme" parent="@style/Theme.AppCompat.Light.NoActionBar"> |
| 10 <item name="colorPrimary">#E0E0E0</item> | 10 <item name="colorPrimary">#E0E0E0</item> |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 <style name="NavigationTextStyle"> | 39 <style name="NavigationTextStyle"> |
| 40 <item name="android:textColor">#212121</item> | 40 <item name="android:textColor">#212121</item> |
| 41 <item name="android:fontFamily">sans-serif-medium</item> | 41 <item name="android:fontFamily">sans-serif-medium</item> |
| 42 </style> | 42 </style> |
| 43 | 43 |
| 44 <style name="ToolbarStyle"> | 44 <style name="ToolbarStyle"> |
| 45 <item name="android:background">?attr/colorPrimary</item> | 45 <item name="android:background">?attr/colorPrimary</item> |
| 46 <!--suppress NewApi --> | 46 <!--suppress NewApi --> |
| 47 <item name="android:elevation">4dp</item> | 47 <item name="android:elevation">4dp</item> |
| 48 <item name="contentInsetStart">@dimen/toolbar_content_inset_start</item> | 48 <item name="contentInsetStart">@dimen/toolbar_content_inset_start</item> |
| 49 <item name="titleTextAppearance">@style/ToolbarStyle.Title</item> |
| 50 </style> |
| 51 |
| 52 <style name="ToolbarStyle.Title" parent="TextAppearance.Widget.AppCompat.Too
lbar.Title"> |
| 53 <item name="android:textSize">20sp</item> |
| 49 </style> | 54 </style> |
| 50 </resources> | 55 </resources> |
| OLD | NEW |