<?xml version="1.0" encoding="utf-8" ?>
<resources>

  <style name="MainTheme" parent="MainTheme.Base">
  </style>
  <!-- Base theme applied no matter what API -->
  <style name="MainTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
    <!--If you are using revision 22.1 please use just windowNoTitle. Without android:-->
    <item name="windowNoTitle">true</item>
    <!--We will be using the toolbar so no need to show ActionBar-->
    <item name="windowActionBar">false</item>
    <!-- Set theme colors from http://www.google.com/design/spec/style/color.html#color-color-palette -->
    <!-- colorPrimary is used for the default action bar background
     Was set to sharee.bike color #009899 until switching to gray for theming reasons (needs to look nice with both thmes sharee.bike and Konrad-sample theme) -->
    <item name="colorPrimary">#a5a5a5</item>
    <!-- colorPrimaryDark is used for the status bar
    Was set to sharee.bike like color #006666 until switching to black for theming reasons (needs to look nice with both thmes sharee.bike and Konrad-sample theme) -->
    <item name="colorPrimaryDark">#262626</item>
    <!-- colorAccent is used as the default value for colorControlActivated
         which is used to tint widgets 
         value was #FF4081 (kind of pink) up to 3.0.219 -->
    <item name="colorAccent">#3647df</item>
    <!-- You can also set colorControlNormal, colorControlActivated
         colorControlHighlight and colorSwitchThumbNormal. -->
    <item name="windowActionModeOverlay">true</item>

    <item name="android:datePickerDialogTheme">@style/AppCompatDialogStyle</item>

    <item name="android:textAllCaps">false</item>
  </style>

  <style name="AppCompatDialogStyle" parent="Theme.AppCompat.Light.Dialog">
    <!--value was #FF4081 (kind of pink) up to 3.0.219  -->
    <item name="colorAccent">#3647df</item>
  </style>
</resources>