mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-09-18 10:50:05 +00:00
27 lines
1.2 KiB
XML
27 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
<!-- inherit from the material theme -->
|
|
<style name="DolphinBase" parent="android:Theme.Material.Light.NoActionBar">
|
|
<!-- Main theme colors -->
|
|
<!-- your app branding color for the app bar -->
|
|
<item name="android:colorPrimary">@color/dolphin_blue</item>
|
|
<!-- darker variant for the status bar and contextual app bars -->
|
|
<item name="android:colorPrimaryDark">@color/dolphin_blue_dark</item>
|
|
</style>
|
|
|
|
<!-- Inherit from the Base Dolphin Theme-->
|
|
<style name="DolphinWii" parent="DolphinBase">
|
|
<!-- theme UI controls like checkboxes and text fields -->
|
|
<item name="android:colorAccent">@color/dolphin_accent_wii</item>
|
|
</style>
|
|
|
|
<style name="DolphinGamecube" parent="DolphinBase">
|
|
<!-- theme UI controls like checkboxes and text fields -->
|
|
<item name="android:colorAccent">@color/dolphin_accent_gamecube</item>
|
|
</style>
|
|
|
|
<style name="DolphinWiiware" parent="DolphinBase">
|
|
<!-- theme UI controls like checkboxes and text fields -->
|
|
<item name="android:colorAccent">@color/dolphin_accent_wiiware</item>
|
|
</style>
|
|
</resources> |