Use darker primary colors for the Dark theme

Primary colors of the Light theme are too bright for the Dark theme.
This commit is contained in:
relan 2015-10-29 18:26:39 +03:00
parent 92713acdce
commit 96091b00d5
2 changed files with 3 additions and 2 deletions

View File

@ -7,6 +7,7 @@
<color name="fdroid_blue">#ff1976d2</color>
<color name="fdroid_blue_dark">#ff0d47a1</color>
<color name="fdroid_blue_darkest">#ff042570</color>
<color name="fdroid_green">#ff8ab000</color>
<color name="fdroid_night">#ff222222</color>
<color name="fdroid_night_dark">#ff111111</color>

View File

@ -4,8 +4,8 @@
<style name="AppBaseThemeDark" parent="Theme.AppCompat">
<!-- backward-compatibility theme options go here -->
<item name="colorPrimary">@color/fdroid_blue</item>
<item name="colorPrimaryDark">@color/fdroid_blue_dark</item>
<item name="colorPrimary">@color/fdroid_blue_dark</item>
<item name="colorPrimaryDark">@color/fdroid_blue_darkest</item>
<item name="colorAccent">@color/fdroid_green</item>
<item name="android:textColorLink">@color/fdroid_green</item>
<item name="alertDialogTheme">@style/AlertDialogThemeDark</item>