Created
May 18, 2020 12:50
-
-
Save dexiouz/b82db063d84d0d1c4bd4f962ee08f3c4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<resources> | |
<!-- Base application theme. --> | |
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> | |
<!-- Customize your theme here. --> | |
<item name="android:textColor">#000000</item> | |
<item name="android:datePickerDialogTheme">@style/Dialog.Theme</item> | |
<item name="android:timePickerDialogTheme">@style/Dialog.Theme</item> | |
</style> | |
<!-- Configuration for Dialog.theme. --> | |
<style name="Dialog.Theme" parent="Theme.AppCompat.Light.Dialog"> | |
<!-- BackgroundColor of the date modal --> | |
<item name="colorAccent">#0066F5</item> | |
<!-- textColor of the date modal --> | |
<item name="android:textColorPrimary">#000000</item> | |
</style> | |
<!-- Configuration for Splash screen. --> | |
<style name="SplashTheme" parent="Theme.AppCompat.Light.NoActionBar"> | |
<item name="android:windowBackground">@drawable/background_splash</item> | |
<item name="android:statusBarColor">@color/white</item> | |
</style> | |
</resources> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment