<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="colorAccent">#000000</color>
    <color name="white">#ffffff</color>
    <item name="launch_screen" type="drawable">
        @drawable/launch_screen
    </item>
    <item name="launch_screen_bottom" type="drawable">
        @drawable/launch_screen_bottom
    </item>
    <item name="launch_screen" type="layout">
        @layout/launch_screen
    </item>
    <style name="SplashScreen_SplashAnimation">
        <item name="android:windowExitAnimation">@android:anim/fade_out</item>
    </style>
    <style name="SplashScreen_SplashTheme" parent="Theme.AppCompat.NoActionBar">
        <item name="android:windowAnimationStyle">@style/SplashScreen_SplashAnimation</item>
    </style>
    <style name="TransparentProgressDialog" parent="Theme.AppCompat.Dialog">
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:colorBackgroundCacheHint">@null</item>
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowIsFloating">true</item>
        <item name="backgroundColor">@android:color/transparent</item>
    </style>
    <style name="adSplash" parent="SplashScreen_SplashTheme">
        <item name="android:windowFullscreen">true</item>
        <item name="android:windowBackground">@drawable/launch_screen</item>
        <item name="android:windowTranslucentStatus">false</item>
        <item name="android:windowTranslucentNavigation">false</item>
    </style>
</resources>