More colours beyond colorPrimary.

Signed-off-by: Nico Alt <nicoalt@posteo.org>
This commit is contained in:
Peter Serwylo 2015-04-22 00:03:13 +10:00 committed by Nico Alt
parent d94e8a4ad2
commit 6452d2da96
3 changed files with 24 additions and 11 deletions

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppThemeDark" parent="AppBaseThemeDark">
<!-- customizations that are not API-level specific go here. -->
<item name="android:colorEdgeEffect">@color/fdroid_blue</item>
<item name="android:colorControlActivated">@color/fdroid_green</item>
<item name="android:colorControlHighlight">@color/fdroid_green</item>
</style>
<style name="AppThemeLight" parent="AppBaseThemeLight">
<!-- customizations that are not API-level specific go here. -->
<item name="android:colorEdgeEffect">@color/fdroid_blue</item>
</style>
</resources>

View File

@ -4,6 +4,10 @@
<color name="unsigned">#ffCC0000</color> <color name="unsigned">#ffCC0000</color>
<color name="unverified">#ff999999</color> <color name="unverified">#ff999999</color>
<color name="fdroid_blue">#FF6097C5</color>
<color name="fdroid_blue_dark">#ff4b7195</color>
<color name="fdroid_green">#FFAAD024</color>
<color name="swap_light_blue">#27aae1</color> <color name="swap_light_blue">#27aae1</color>
<color name="swap_light_blue_pressed">#ff98cce1</color> <color name="swap_light_blue_pressed">#ff98cce1</color>
<color name="swap_blue">#1c6bbc</color> <color name="swap_blue">#1c6bbc</color>

View File

@ -3,23 +3,16 @@
<style name="AppBaseThemeDark" parent="Theme.AppCompat"> <style name="AppBaseThemeDark" parent="Theme.AppCompat">
<!-- backward-compatibility theme options go here --> <!-- backward-compatibility theme options go here -->
<!-- ActionBar Color --> <item name="colorPrimary">@color/fdroid_blue</item>
<!-- "F-Droid Green" -/-> <item name="colorPrimaryDark">@color/fdroid_blue_dark</item>
<item name="colorPrimary">#FFAAD024</item>-->
<!-- "F-Droid Blue -->
<item name="colorPrimary">#FF6097C5</item>
</style> </style>
<style name="AppBaseThemeLight" parent="Theme.AppCompat.Light.DarkActionBar"> <style name="AppBaseThemeLight" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- backward-compatibility theme options go here --> <!-- backward-compatibility theme options go here -->
<!-- ActionBar Color --> <item name="colorPrimary">@color/fdroid_blue</item>
<!-- "F-Droid Green" -/-> <item name="colorPrimaryDark">@color/fdroid_blue_dark</item>
<item name="colorPrimary">#FFAAD024</item>-->
<!-- "F-Droid Blue -->
<item name="colorPrimary">#FF6097C5</item>
</style> </style>
<color name="black">#FF000000</color> <color name="black">#FF000000</color>