<?xml version="1.0" encoding="utf-8"?>
<!--
  Copyright (C) 2013 Aurélien Chabot <aurelien@chabot.fr>

  This file is part of DroidUPNP.

  DroidUPNP is free software: you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation, either version 3 of the License, or
  (at your option) any later version.

  DroidUPNP is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with DroidUPNP.  If not, see <http://www.gnu.org/licenses/>.
-->
<resources xmlns:android="http://schemas.android.com/apk/res/android">

	<color name="blue">#379293</color>
	<color name="blue_dark">#1C7475</color>
	<color name="blue_trans">#77379293</color>
	<color name="grey">#DDDDDD</color>
	<color name="greyer">#AACCCCCC</color>
	<color name="light_grey">#E5E5E5</color>
	<color name="dark">#444444</color>
	<color name="darker">#222222</color>

	<drawable name="play">@drawable/ic_action_play</drawable>
	<drawable name="pause">@drawable/ic_action_pause</drawable>
	<drawable name="stop">@drawable/ic_action_stop</drawable>
	<drawable name="volume">@drawable/ic_action_volume_on</drawable>
	<drawable name="volume_mute">@drawable/ic_action_volume_muted</drawable>

	<!-- Drawer style -->
	<style name="drawer">
		<item name="android:background">@color/light_grey</item>
	</style>

	<style name="DrawerText" parent="@android:style/TextAppearance">
		<item name="android:textColor">@color/darker</item>
	</style>

	<style name="deviceListLabel">
		<item name="android:textColor">@color/dark</item>
	</style>

	<style name="deviceListSeparator">
		<item name="android:background">@color/dark</item>
	</style>

	<!-- Content browsing style -->
	<style name="contentdirectory">
		<item name="android:background">@color/grey</item>
	</style>

	<style name="browsingItemText" parent="@android:style/TextAppearance">
		<item name="android:textColor">@color/darker</item>
		<item name="android:textSize">12sp</item>
	</style>

	<style name="browsingItemTitle" parent="@style/browsingItemText">
		<item name="android:textSize">16sp</item>
	</style>

	<style name="browsingItemSubtitle" parent="@style/browsingItemText">
	</style>

	<style name="browsingItemCount" parent="@style/browsingItemText">
		<item name="android:textColor">@color/blue</item>
		<item name="android:textStyle">bold</item>
	</style>

	<!-- Renderer style -->
	<style name="renderer">
		<item name="android:background">?android:attr/colorBackground</item>
	</style>

	<style name="rendererText" parent="@android:style/TextAppearance">
		<item name="android:textColor">@android:color/black</item>
	</style>

	<style name="rendererTitle" parent="@style/rendererText">
		<item name="android:textSize">18sp</item>
	</style>

	<style name="rendererSubtitle" parent="@style/rendererText">
		<item name="android:textStyle">italic</item>
		<item name="android:textSize">15sp</item>
	</style>

	<!-- The app theme -->
	<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
		<item name="colorPrimary">@color/blue</item>
		<item name="colorPrimaryDark">@color/blue_dark</item>
		<item name="colorAccent">@color/blue</item>
	</style>


	<style name="ToolbarTheme" parent="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
		<item name="android:textColorPrimary">@android:color/white</item>
		<item name="actionMenuTextColor">@android:color/black</item>
		<item name="colorAccent">@color/blue</item>
	</style>

	<style name="AlertDialogCustom" parent="Theme.AppCompat.Light.Dialog.Alert">
		<!-- Used for the buttons -->
		<item name="colorAccent">#ffffff</item>
		<!-- Used for the title and text -->
		<item name="android:textColorPrimary">#7E92A8</item>
		<!-- Used for the background -->
		<item name="android:background">#000000</item>
	</style>

</resources>
