<?xml version="1.0" encoding="utf-8"?>
<resources> 
   <style name="WindowTitleBackground">     
        <item name="android:background">@color/titlebackgroundcolor</item>                   
    </style>
    
    <!--
        Base application theme, dependent on API level. This theme is replaced
        by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
    -->
    <style name="AppBaseTheme" parent="android:Theme.Light">
        <!--
            Theme customizations available in newer API levels can go in
            res/values-vXX/styles.xml, while customizations related to
            backward-compatibility can go here.
        -->
    </style>

    <!-- Application theme. -->
    <!-- <style name="AppTheme" parent="AppBaseTheme"> -->
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
    <!-- </style> -->
    
    <!-- Application theme. -->
    <style name="AppTheme" parent="android:Theme">
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
        <item type="attr" name="colorPrimary">@color/colorPrimary</item>
        <item type="attr" name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item type="attr" name="buttonStyle">@style/Button</item>
        <item type="attr" name="colorAccent">@color/colorAccent</item>
    </style>

    <style name="Button" parent="android:Widget.Button"> <!--android:Widget.AppCompat.Button.Colored"> -->
        <!--colorAccent defined in AppTheme-->
        <!-- <item name="android:colorControlHighlight">@android:color/black</item> -->
        <!-- <item name="android:colorControlHighlight">@android:color/black</item> -->
        <item name="android:colorBackground">@android:color/black</item>
        <item name="android:textColor">@android:color/white</item>
        <item name="android:textSize">20sp</item>
    </style>    

    <style name="ButtonPINNumber" parent="Button">
        <!--<item name="android:colorAccent">@color/colorPinNumber</item>-->
        <item name="android:background">@color/colorPinNumber</item>
    </style>

    <style name="ButtonPINCancel" parent="Button">
        <!--<item name="android:colorAccent">#FF0000</item>-->
        <item name="android:background">#FF0000</item>
    </style>

    <style name="ButtonPINClear" parent="Button">
        <!--<item name="android:colorAccent">#CCCC00</item>-->
        <item name="android:background">#CCCC00</item>
    </style>

    <style name="ButtonPINConfirm" parent="Button">
        <!--<item name="android:colorAccent">#00BB00</item>-->
        <item name="android:background">#00BB00</item>
    </style>
    
    <style name="generalnotitle" parent="android:Theme.Dialog">
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:gravity"></item>
    </style>

    <style name="Theme.Transparent" parent="android:Theme">
        <item name="android:windowIsTranslucent">true</item>
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:windowContentOverlay">@null</item>
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowIsFloating">true</item>
        <item name="android:backgroundDimEnabled">false</item>
    </style>
</resources>
