Auxio/app/src/main/res/values/arrays.xml
OxygenCobalt 2dc7ba3420 Implement theme customization
Implement the ability to change the theme to auto/light/dark.
2020-11-28 16:17:54 -07:00

13 lines
No EOL
399 B
XML

<?xml version="1.0" encoding="utf-8"?>
<resources>
<array name="theme_entries">
<item>@string/label_settings_theme_auto</item>
<item>@string/label_settings_theme_light</item>
<item>@string/label_settings_theme_dark</item>
</array>
<array name="theme_values">
<item>AUTO</item>
<item>LIGHT</item>
<item>DARK</item>
</array>
</resources>