Improved font color in dark theme
This commit is contained in:
parent
9967ed9923
commit
f66781eac6
@ -20,7 +20,7 @@
|
||||
android:textAlignment="center"
|
||||
android:gravity="center"
|
||||
android:textSize="20sp"
|
||||
android:textColor="#4a4a4a"
|
||||
android:textColor="?attr/lightGrayTextColor"
|
||||
app:layout_constraintLeft_toLeftOf="parent"
|
||||
app:layout_constraintRight_toRightOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
@ -44,7 +44,7 @@
|
||||
android:textSize="15sp"
|
||||
android:textAlignment="center"
|
||||
android:gravity="center"
|
||||
android:textColor="#5B5B5B"
|
||||
android:textColor="?attr/lightGrayTextColor"
|
||||
app:layout_constraintTop_toBottomOf="@+id/button"
|
||||
app:layout_constraintRight_toRightOf="parent"
|
||||
app:layout_constraintLeft_toLeftOf="parent"
|
||||
|
@ -29,7 +29,7 @@
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/empty_state"
|
||||
android:tint="?attr/mainTabSwapSplashTint"
|
||||
android:scaleType="fitXY"
|
||||
android:scaleType="fitCenter"
|
||||
android:visibility="gone" />
|
||||
|
||||
<android.support.v7.widget.RecyclerView
|
||||
|
@ -10,5 +10,6 @@
|
||||
<attr name="installedApps" format="color" />
|
||||
<attr name="detailPanel" format="reference" />
|
||||
<attr name="appListItem" format="color" />
|
||||
<attr name="lightGrayTextColor" format="color" />
|
||||
</declare-styleable>
|
||||
</resources>
|
||||
|
@ -21,6 +21,7 @@
|
||||
<item name="installedApps">#ffffff</item>
|
||||
<item name="detailPanel">@drawable/details_panel_donate_background_dark</item>
|
||||
<item name="appListItem">#ffffff</item>
|
||||
<item name="lightGrayTextColor">#a6a6a6</item>
|
||||
</style>
|
||||
|
||||
<style name="AppBaseThemeLight" parent="Theme.AppCompat.Light.NoActionBar">
|
||||
@ -43,6 +44,7 @@
|
||||
<item name="installedApps">#424242</item>
|
||||
<item name="detailPanel">@drawable/details_panel_donate_background_light</item>
|
||||
<item name="appListItem">#424242</item>
|
||||
<item name="lightGrayTextColor">#4a4a4a</item>
|
||||
</style>
|
||||
|
||||
<style name="AppThemeDark" parent="AppBaseThemeDark">
|
||||
@ -116,7 +118,7 @@
|
||||
<item name="android:gravity">center</item>
|
||||
<item name="android:padding">48dp</item>
|
||||
<item name="android:textSize">20sp</item>
|
||||
<item name="android:textColor">#4a4a4a</item>
|
||||
<item name="android:textColor">?attr/lightGrayTextColor</item>
|
||||
</style>
|
||||
|
||||
<style name="SwapTheme.Wizard" parent="Theme.AppCompat.Light.NoActionBar">
|
||||
|
Loading…
x
Reference in New Issue
Block a user