* Settings screen is now based on the Android SharedPreferences * Added function key configuration on the Settings screen * Added a setting for toggling the on-screen buttons * Added a dark/light theme setting * Improved translations * Fixed a problem with launching the Settings screen directly from the Android settings * Fixed ignoring keys not actually ignoring them properly
17 lines
565 B
XML
17 lines
565 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
<!-- Light theme -->
|
|
<color name="button_text">#242424</color>
|
|
|
|
<color name="candidate_background">#CECECE</color>
|
|
<color name="candidate_color">#202020</color>
|
|
<color name="candidate_selected">#AAAAAA</color>
|
|
<color name="candidate_separator">#888888</color>
|
|
|
|
<!-- Dark theme -->
|
|
<color name="dark_button_text">#C0C0C0</color>
|
|
|
|
<color name="dark_candidate_background">#333333</color>
|
|
<color name="dark_candidate_color">#CCCCCC</color>
|
|
<color name="dark_candidate_selected">#555555</color>
|
|
</resources>
|