Correcting dark mode color
This commit is contained in:
parent
180b2eecde
commit
7af2ff2bb4
4 changed files with 11 additions and 4 deletions
|
@ -33,5 +33,8 @@
|
||||||
<item name="rectSelector">@drawable/rect_selector</item>
|
<item name="rectSelector">@drawable/rect_selector</item>
|
||||||
<item name="android:actionOverflowButtonStyle">@style/Widget.ActionButton.Overflow</item>
|
<item name="android:actionOverflowButtonStyle">@style/Widget.ActionButton.Overflow</item>
|
||||||
<item name="android:windowLightNavigationBar">false</item>
|
<item name="android:windowLightNavigationBar">false</item>
|
||||||
|
<!--Manual setting colors-->
|
||||||
|
<item name="colorPrimary">@color/darkColorPrimary</item>
|
||||||
|
<item name="colorSurface">@color/darkColorSurface</item>
|
||||||
</style>
|
</style>
|
||||||
</resources>
|
</resources>
|
|
@ -31,6 +31,8 @@
|
||||||
<item name="roundSelector">@drawable/round_selector</item>
|
<item name="roundSelector">@drawable/round_selector</item>
|
||||||
<item name="rectSelector">@drawable/rect_selector</item>
|
<item name="rectSelector">@drawable/rect_selector</item>
|
||||||
<item name="android:actionOverflowButtonStyle">@style/Widget.ActionButton.Overflow</item>
|
<item name="android:actionOverflowButtonStyle">@style/Widget.ActionButton.Overflow</item>
|
||||||
<item name="android:windowLightNavigationBar">false</item>
|
<!--Manual setting colors-->
|
||||||
|
<item name="colorPrimary">@color/darkColorPrimary</item>
|
||||||
|
<item name="colorSurface">@color/darkColorSurface</item>
|
||||||
</style>
|
</style>
|
||||||
</resources>
|
</resources>
|
|
@ -19,14 +19,14 @@
|
||||||
<color name="darkColorPrimary">#202124</color>
|
<color name="darkColorPrimary">#202124</color>
|
||||||
<color name="darkColorOnPrimary">#ffffff</color>
|
<color name="darkColorOnPrimary">#ffffff</color>
|
||||||
<color name="darkColorSecondary">#202124</color>
|
<color name="darkColorSecondary">#202124</color>
|
||||||
<color name="darkColorBackground">#121212</color>
|
<color name="darkColorBackground">#202124</color>
|
||||||
<color name="darkColorSurface">#3C4043</color>
|
<color name="darkColorSurface">#17181a</color>
|
||||||
|
|
||||||
<color name="blackColorPrimary">#000000</color>
|
<color name="blackColorPrimary">#000000</color>
|
||||||
<color name="blackColorOnPrimary">#ffffff</color>
|
<color name="blackColorOnPrimary">#ffffff</color>
|
||||||
<color name="blackColorSecondary">#000000</color>
|
<color name="blackColorSecondary">#000000</color>
|
||||||
<color name="blackColorBackground">#000000</color>
|
<color name="blackColorBackground">#000000</color>
|
||||||
<color name="blackColorSurface">#000000</color>
|
<color name="blackColorSurface">#17181a</color>
|
||||||
|
|
||||||
<color name="transparent">#00000000</color>
|
<color name="transparent">#00000000</color>
|
||||||
<!-- card colors -->
|
<!-- card colors -->
|
||||||
|
|
|
@ -39,6 +39,8 @@
|
||||||
<item name="materialAlertDialogTheme">@style/MaterialAlertDialogTheme</item>
|
<item name="materialAlertDialogTheme">@style/MaterialAlertDialogTheme</item>
|
||||||
<item name="materialButtonStyle">@style/MaterialButtonTheme</item>
|
<item name="materialButtonStyle">@style/MaterialButtonTheme</item>
|
||||||
|
|
||||||
|
<!--Manual setting colors-->
|
||||||
|
<item name="colorSurface">@color/darkColorSurface</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="Theme.RetroMusic.Base.Black" parent="Theme.MaterialComponents.NoActionBar">
|
<style name="Theme.RetroMusic.Base.Black" parent="Theme.MaterialComponents.NoActionBar">
|
||||||
|
|
Loading…
Reference in a new issue