BobStore/res/values/styles.xml

37 lines
1.3 KiB
XML
Raw Normal View History

2013-11-03 16:12:22 +01:00
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AppBaseThemeDark" parent="Theme.AppCompat">
2013-11-03 16:12:22 +01:00
<!-- backward-compatibility theme options go here -->
</style>
<style name="AppBaseThemeLight" parent="Theme.AppCompat.Light">
<!-- backward-compatibility theme options go here -->
</style>
<style name="AppBaseThemeLightWithDarkActionBar" parent="Theme.AppCompat.Light.DarkActionBar">
2013-11-03 16:12:22 +01:00
<!-- backward-compatibility theme options go here -->
</style>
<color name="black">#FF000000</color>
<color name="white">#FFFFFFFF</color>
<color name="red">#FFFF0000</color>
2013-11-03 16:12:22 +01:00
<style name="AboutDialogLight" parent="@android:style/Theme.Dialog">
<item name="@android:windowBackground">@color/black</item>
<item name="@android:textColor">@color/white</item>
</style>
<style name="AppThemeDark" parent="AppBaseThemeDark">
<!-- customizations that are not API-level specific go here. -->
</style>
<style name="AppThemeLight" parent="AppBaseThemeLight">
<!-- customizations that are not API-level specific go here. -->
</style>
<style name="AppThemeLightWithDarkActionBar" parent="AppBaseThemeLightWithDarkActionBar">
<!-- customizations that are not API-level specific go here. -->
</style>
2013-11-03 16:12:22 +01:00
</resources>