blob: 36a5302e5464c599e6d3e36a7e134da9008cd180 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2014 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<resources>
<style name="BaseTheme" parent="@style/Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">#E0E0E0</item>
<item name="colorPrimaryDark">#616161</item>
<!-- The same blue color as the host-online icon. -->
<item name="colorAccent">#4285F4</item>
</style>
<style name="BaseTheme.NavigationDrawer" parent="@style/BaseTheme">
<item name="windowNoTitle">true</item>
<!--suppress NewApi -->
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<!-- The status bar is normally fully opaque and rendered above the
activity. Make it fully transparent to allow the DrawerLayout to
control the rendering of the status bar background -->
<!--suppress NewApi -->
<item name="android:statusBarColor">@android:color/transparent</item>
</style>
<style name="EmptyStateText" parent="@android:style/TextAppearance">
<item name="android:textColor">#616161</item>
<item name="android:textSize">22sp</item>
</style>
<style name="EmptyStateText.Detail" parent="EmptyStateText">
<item name="android:textSize">18sp</item>
</style>
<style name="EmptyStateText.Hyperlink" parent="@style/Widget.AppCompat.Button.Borderless">
<item name="android:textColor">#4285F4</item>
<item name="android:textSize">18sp</item>
</style>
<style name="NavigationTextStyle">
<item name="android:textColor">#212121</item>
<item name="android:fontFamily">sans-serif-medium</item>
</style>
<style name="ToolbarStyle">
<item name="android:background">?attr/colorPrimary</item>
<!--suppress NewApi -->
<item name="android:elevation">4dp</item>
<item name="contentInsetStart">@dimen/toolbar_content_inset_start</item>
<item name="titleTextAppearance">@style/ToolbarStyle.Title</item>
</style>
<style name="ToolbarStyle.Title" parent="TextAppearance.Widget.AppCompat.Toolbar.Title">
<item name="android:textSize">20sp</item>
</style>
</resources>