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 22 matching lines...) Expand all Loading... |
33 </style> | 33 </style> |
34 <style name="EmptyStateText.Hyperlink" parent="@style/Widget.AppCompat.Butto
n.Borderless"> | 34 <style name="EmptyStateText.Hyperlink" parent="@style/Widget.AppCompat.Butto
n.Borderless"> |
35 <item name="android:textColor">#4285F4</item> | 35 <item name="android:textColor">#4285F4</item> |
36 <item name="android:textSize">18sp</item> | 36 <item name="android:textSize">18sp</item> |
37 </style> | 37 </style> |
38 | 38 |
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 |
| 44 <style name="ToolbarStyle"> |
| 45 <item name="android:background">?attr/colorPrimary</item> |
| 46 <item name="android:elevation">4dp</item> |
| 47 <item name="contentInsetStart">@dimen/toolbar_content_inset_start</item> |
| 48 </style> |
43 </resources> | 49 </resources> |
OLD | NEW |