Android: Add dark theme

This commit is contained in:
Connor McLaughlin
2020-12-29 01:37:20 +10:00
parent 59b9e4b2ef
commit cbcb8b4b89
7 changed files with 63 additions and 8 deletions

View File

@ -440,4 +440,14 @@
<item>it-IT</item>
<item>nl-NL</item>
</string-array>
<string-array name="settings_theme_entries">
<item>Follow System</item>
<item>Light</item>
<item>Dark</item>
</string-array>
<string-array name="settings_theme_values">
<item>follow_system</item>
<item>light</item>
<item>dark</item>
</string-array>
</resources>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#008577</color>
<color name="colorPrimaryDark">#00574B</color>
<color name="colorPrimary">#6200EE</color>
<color name="colorPrimaryDark">#3700B3</color>
<color name="colorAccent">#D81B60</color>
<color name="black_overlay">#66000000</color>

View File

@ -159,4 +159,5 @@
<string name="touchscreen_controller_stop_editing">Stop Editing</string>
<string name="touchscreen_controller_reset_layout">Reset Layout</string>
<string name="emulation_activity_touchscreen_controller_not_active">Touchscreen controller is not active.</string>
<string name="settings_theme">Theme</string>
</resources>

View File

@ -1,10 +1,10 @@
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<style name="AppTheme" parent="Theme.AppCompat.DayNight.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/design_default_color_primary</item>
<item name="colorPrimaryDark">@color/design_default_color_primary_dark</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
@ -15,7 +15,7 @@
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.DayNight" />
<style name="FullscreenTheme" parent="AppTheme">
<item name="android:actionBarStyle">@style/FullscreenActionBarStyle</item>