Skip to content

Instantly share code, notes, and snippets.

@redbluenat
Created October 17, 2019 15:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save redbluenat/ea102a7fbe8bd28560ac6c821fedfb2e to your computer and use it in GitHub Desktop.
Save redbluenat/ea102a7fbe8bd28560ac6c821fedfb2e to your computer and use it in GitHub Desktop.
<resources>
<style name="SplashTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowFullscreen">true</item>
<item name="android:background">@drawable/splash_screen_light</item>
</style>
<style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
<!-- Customize your theme here. -->
<item name="android:textColor">#000000</item>
<item name="colorAccent">#1e9f21</item>
</style>
<style name="LightTheme" parent="AppTheme">
<item name="textColor">#000000</item>
<item name="colorAccent">#1e9f21</item>
<item name="backgroundColor">#ffffff</item>
</style>
<style name="DarkTheme" parent="AppTheme">
<item name="textColor">#ffffff</item>
<item name="colorAccent">#1e9f21</item>
<item name="backgroundColor">#000000</item>
</style>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment