Improve about page on dark theme

Julien LepillerSat Jul 31 15:43:07+0200 2021

000c5c9

Improve about page on dark theme

app/src/main/res/layout/activity_about.xml

1818
            android:layout_height="wrap_content"
1919
            android:layout_gravity="center"
2020
            android:text="@string/data_licenses"
21-
            android:textColor="@color/colorPrimaryDark"
21+
            android:textColor="@color/colorTitle"
2222
            android:textSize="@dimen/title_size" />
2323
2424
        <TextView

2626
            android:layout_height="wrap_content"
2727
            android:layout_marginTop="16dp"
2828
            android:text="@string/action_about"
29-
            android:textColor="@color/colorPrimaryDark"
29+
            android:textColor="@color/colorTitle"
3030
            android:textSize="@dimen/title_size" />
3131
3232
        <TextView

8888
            android:id="@+id/mozc_button"
8989
            android:padding="8dp"
9090
            android:layout_marginTop="8dp"
91-
            android:background="@color/colorPrimaryDark"
91+
            android:background="@color/colorPrimary"
9292
            android:textColor="@color/colorGrey" />
9393
9494
        <TextView

9696
            android:layout_height="wrap_content"
9797
            android:layout_marginTop="16dp"
9898
            android:text="@string/license"
99-
            android:textColor="@color/colorPrimaryDark"
99+
            android:textColor="@color/colorTitle"
100100
            android:textSize="@dimen/title_size" />
101101
102102
        <TextView

110110
            android:layout_height="wrap_content"
111111
            android:text="@string/data_licenses"
112112
            android:layout_marginTop="16dp"
113-
            android:textColor="@color/colorPrimaryDark"
113+
            android:textColor="@color/colorTitle"
114114
            android:textSize="@dimen/title_size" />
115115
116116
        <TextView

125125
            android:layout_height="wrap_content"
126126
            android:layout_marginTop="16dp"
127127
            android:text="@string/erdrg_title"
128-
            android:textColor="@color/design_default_color_primary_dark"
128+
            android:textColor="@color/colorSubtitle"
129129
            android:textSize="@dimen/subtitle_size" />
130130
131131
        <TextView

200200
            android:layout_height="wrap_content"
201201
            android:layout_marginTop="16dp"
202202
            android:text="@string/wadoku_title"
203-
            android:textColor="@color/design_default_color_primary_dark"
203+
            android:textColor="@color/colorSubtitle"
204204
            android:textSize="@dimen/subtitle_size" />
205205
206206
        <TextView

220220
            android:layout_height="wrap_content"
221221
            android:layout_marginTop="16dp"
222222
            android:text="@string/jibiki_title"
223-
            android:textColor="@color/design_default_color_primary_dark"
223+
            android:textColor="@color/colorSubtitle"
224224
            android:textSize="@dimen/subtitle_size" />
225225
226226
        <TextView

app/src/main/res/values-night/colors.xml

22
<resources>
33
    <color name="colorPrimary">#008577</color>
44
    <color name="colorPrimaryDark">#00574B</color>
5-
    <color name="colorAccent">#D81B60</color>
5+
    <color name="colorTitle">#00dac3</color>
6+
    <color name="colorSubtitle">#5474dd</color>
7+
    <color name="colorAccent">#F83B80</color>
68
    <color name="colorWhite">#000000</color>
79
    <color name="colorGrey">#111111</color>
810
    <color name="colorUpdate">#F4DE96</color>

1012
    <color name="colorDarkGrey">#2a2a2a</color>
1113
    <color name="colorTextGrey">#909090</color>
1214
    <color name="colorBlack">#505050</color>
13-
    <color name="colorLang">#925424</color>
15+
    <color name="colorLang">#e78539</color>
1416
</resources>

app/src/main/res/values/colors.xml

22
<resources>
33
    <color name="colorPrimary">#008577</color>
44
    <color name="colorPrimaryDark">#00574B</color>
5+
    <color name="colorTitle">#00574B</color>
6+
    <color name="colorSubtitle">#3700B3</color>
57
    <color name="colorAccent">#D81B60</color>
68
    <color name="colorWhite">#FFFFFF</color>
79
    <color name="colorGrey">#EEF2EE</color>