summaryrefslogtreecommitdiff
path: root/Source/Android/app/src/main/res/values/styles.xml
blob: bec7fc0035069520a07ce8975a3bbb47c7508e14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?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>

    <!-- Same as above, but use default action bar, and mandate margins. -->
    <style name="DolphinSettingsBase" parent="android:Theme.Material.Light.DarkActionBar">
        <item name="android:colorPrimary">@color/dolphin_blue</item>
        <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">
        <item name="android:colorAccent">@color/dolphin_accent_gamecube</item>
    </style>

    <style name="DolphinWiiware" parent="DolphinBase">
        <item name="android:colorAccent">@color/dolphin_accent_wiiware</item>
    </style>

    <!-- Inherit from the Base Dolphin Settings Theme-->
    <style name="DolphinSettingsWii" parent="DolphinSettingsBase">
        <item name="android:colorAccent">@color/dolphin_accent_wii</item>
    </style>

    <style name="DolphinSettingsGamecube" parent="DolphinSettingsBase">
        <item name="android:colorAccent">@color/dolphin_accent_gamecube</item>
    </style>

    <style name="DolphinSettingsWiiware" parent="DolphinSettingsBase">
        <!--   theme UI controls like checkboxes and text fields -->
        <item name="android:colorAccent">@color/dolphin_accent_wiiware</item>
    </style>

    <!-- Themes for Dialogs -->
    <style name="DolphinDialogBase" parent="android:Theme.Material.Light.Dialog">
        <item name="android:colorPrimary">@color/dolphin_blue</item>
        <item name="android:colorPrimaryDark">@color/dolphin_blue_dark</item>
    </style>

    <!-- Inherit from the Base Dolphin Dialog Theme-->
    <style name="DolphinDialogWii" parent="DolphinDialogBase">
        <item name="android:colorAccent">@color/dolphin_accent_wii</item>
    </style>

    <style name="DolphinDialogGamecube" parent="DolphinDialogBase">
        <item name="android:colorAccent">@color/dolphin_accent_gamecube</item>
    </style>

    <style name="DolphinDialogWiiware" parent="DolphinDialogBase">
        <item name="android:colorAccent">@color/dolphin_accent_wiiware</item>
    </style>

    <style name="DolphinEmulationBase" parent="android:Theme.Material.Light.DarkActionBar">
        <item name="android:colorPrimary">@color/dolphin_blue</item>
        <item name="android:colorPrimaryDark">@color/dolphin_blue_dark</item>
        <item name="android:windowTranslucentNavigation">true</item>
    </style>

    <!-- Inherit from the Base Dolphin Emulation Theme-->
    <style name="DolphinEmulationWii" parent="DolphinEmulationBase">
        <item name="android:colorAccent">@color/dolphin_accent_wii</item>
    </style>

    <style name="DolphinEmulationGamecube" parent="DolphinEmulationBase">
        <item name="android:colorAccent">@color/dolphin_accent_gamecube</item>
    </style>

    <style name="DolphinEmulationWiiware" parent="DolphinEmulationBase">
        <item name="android:colorAccent">@color/dolphin_accent_wiiware</item>
    </style>
</resources>