23 lines
1007 B
XML
23 lines
1007 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
<!-- Dark theme for your application -->
|
|
<style name="Theme.WittrailAndroid.Dark" parent="Theme.AppCompat.DayNight.NoActionBar">
|
|
<!-- Window background -->
|
|
<item name="android:windowBackground">@color/dark_background</item>
|
|
<item name="android:colorBackground">@color/dark_background</item>
|
|
<!-- Primary brand color -->
|
|
<item name="colorPrimary">@color/red</item>
|
|
<!-- Primary brand color variant -->
|
|
<item name="colorPrimaryDark">@color/red</item>
|
|
<!-- Accent color -->
|
|
<item name="colorAccent">@color/dark_accent</item>
|
|
<!-- Surface and onPrimary colors can be used by Material components -->
|
|
<item name="android:textColorPrimary">@color/red</item>
|
|
</style>
|
|
|
|
<!-- Base application theme -->
|
|
<style name="Theme.WittrailAndroid" parent="Theme.AppCompat.Light.NoActionBar">
|
|
<!-- Customize your light theme here -->
|
|
</style>
|
|
</resources>
|