theme-settings.xml

 1<?xml version="1.0" encoding="utf-8"?>
 2<resources xmlns:tools="http://schemas.android.com/tools">
 3
 4    <string name="theme">automatic</string>
 5    <string-array name="themes" tools:ignore="InconsistentArrays">
 6        <item>@string/pref_theme_automatic</item>
 7        <item>@string/pref_theme_light</item>
 8        <item>@string/pref_theme_dark</item>
 9        <item>@string/pref_theme_obsidian</item>
10        <item>@string/pref_theme_oledblack</item>
11        <item>@string/pref_theme_custom</item>
12    </string-array>
13    <string-array name="themes_values" tools:ignore="InconsistentArrays">
14		<item>automatic</item>
15		<item>light</item>
16		<item>dark</item>
17		<item>obsidian</item>
18		<item>oledblack</item>
19		<item>custom</item>
20	</string-array>
21
22</resources>