Add standard background color for dark theme as #121212
This commit is contained in:
parent
0356687ee0
commit
e31add2adf
2 changed files with 9 additions and 2 deletions
|
@ -6,12 +6,18 @@
|
||||||
<item name="colorPrimary">@color/colorPrimaryDark</item>
|
<item name="colorPrimary">@color/colorPrimaryDark</item>
|
||||||
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
||||||
<item name="colorAccent">@color/colorAccent</item>
|
<item name="colorAccent">@color/colorAccent</item>
|
||||||
<item name="lightestBackGround">@color/white</item>
|
<item name="android:windowBackground">@color/darkgrey</item>
|
||||||
|
<item name="lightestBackGround">@color/darkgrey</item>
|
||||||
<item name="lightestFontColor">@color/white</item>
|
<item name="lightestFontColor">@color/white</item>
|
||||||
<item name="standardVectorGraphic">@color/black</item>
|
<item name="standardVectorGraphic">@color/white</item>
|
||||||
<item name="winScreenPedestalColor">@color/middleblue</item>
|
<item name="winScreenPedestalColor">@color/middleblue</item>
|
||||||
<item name="backgroundSurroundingDialog">@color/transparent</item>
|
<item name="backgroundSurroundingDialog">@color/transparent</item>
|
||||||
<item name="actionBarTheme">@style/ToolbarStyle</item>
|
<item name="actionBarTheme">@style/ToolbarStyle</item>
|
||||||
|
<item name="rankingStarSelected">@color/lightblue</item>
|
||||||
|
<item name="rankingStarNotSelected">@color/middlegrey</item>
|
||||||
|
<item name="activeButtonColor">@color/lightblue</item>
|
||||||
|
<item name="inactiveButtonColor">@color/middlegrey</item>
|
||||||
|
<item name="highlightedButtonBorder">@color/yellow</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="ToolbarStyle" parent="Widget.AppCompat.ActionBar">
|
<style name="ToolbarStyle" parent="Widget.AppCompat.ActionBar">
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
<color name="yellow">#f6d126</color>
|
<color name="yellow">#f6d126</color>
|
||||||
<color name="white">#ffffff</color>
|
<color name="white">#ffffff</color>
|
||||||
<color name="black">#000000</color>
|
<color name="black">#000000</color>
|
||||||
|
<color name="darkgrey">#121212</color>
|
||||||
|
|
||||||
<!-- dots inactive colors -->
|
<!-- dots inactive colors -->
|
||||||
<color name="dot_dark_screen">#026499</color>
|
<color name="dot_dark_screen">#026499</color>
|
||||||
|
|
Loading…
Reference in a new issue