ui: apply purple theme (twi is best color)

This commit is contained in:
Vincent Breitmoser
2014-05-06 19:18:32 +02:00
parent e0985878d7
commit 797aeaf6e8
231 changed files with 572 additions and 28 deletions

View File

@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated with http://android-holo-colors.com -->
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="ButtonKeychainTheme" parent="android:Widget.Holo.Light.Button">
<item name="android:background">@drawable/keychaintheme_btn_default_holo_light</item>
</style>
<style name="ImageButtonKeychainTheme" parent="android:Widget.Holo.Light.ImageButton">
<item name="android:background">@drawable/keychaintheme_btn_default_holo_light</item>
</style>
<style name="SpinnerKeychainTheme" parent="android:Widget.Holo.Light.Spinner">
<item name="android:background">@drawable/keychaintheme_spinner_background_holo_light</item>
<item name="android:dropDownSelector">@drawable/keychaintheme_list_selector_holo_light</item>
</style>
<style name="ProgressBarKeychainTheme" parent="android:Widget.Holo.Light.ProgressBar.Horizontal">
<item name="android:progressDrawable">@drawable/keychaintheme_progress_horizontal_holo_light</item>
<item name="android:indeterminateDrawable">@drawable/keychaintheme_progress_indeterminate_horizontal_holo_light</item>
</style>
<style name="SectionHeader">
<item name="android:drawableBottom">@drawable/section_header</item>
<item name="android:drawablePadding">4dp</item>
<item name="android:layout_marginTop">8dp</item>
<item name="android:paddingLeft">4dp</item>
<item name="android:textAllCaps">true</item>
<item name="android:textColor">@color/emphasis</item>
<item name="android:textSize">14sp</item>
</style>
</resources>

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated with http://android-holo-colors.com -->
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="KeychainTheme" parent="@style/_KeychainTheme"/>
<style name="_KeychainTheme" parent="Theme.AppCompat.Light">
<item name="android:editTextBackground">@drawable/keychaintheme_edit_text_holo_light</item>
<item name="android:listChoiceIndicatorMultiple">@drawable/keychaintheme_btn_check_holo_light</item>
<item name="android:buttonStyle">@style/ButtonKeychainTheme</item>
<item name="android:imageButtonStyle">@style/ImageButtonKeychainTheme</item>
<item name="android:dropDownSpinnerStyle">@style/SpinnerKeychainTheme</item>
<item name="android:progressBarStyleHorizontal">@style/ProgressBarKeychainTheme</item>
<item name="android:listChoiceBackgroundIndicator">@drawable/keychaintheme_list_selector_holo_light</item>
<item name="android:activatedBackgroundIndicator">@drawable/keychaintheme_activated_background_holo_light</item>
</style>
</resources>