Change Color
change application main color
to change the app color, you can see on the res/values/colors.xml
Enter your color code inside each of strings tag :
<!--app main color-->
<color name="colorPrimary">#E91E63</color>
<color name="colorPrimaryDark">#AD1457</color>
<color name="colorAccent">#f94d87</color>
<color name="colorBackgroundLight">#FFFFFF</color>
<!--dark theme color-->
<color name="colorStatusBarDark">#0F1D24</color>
<color name="colorToolbarDark">#222D36</color>
<color name="colorBackgroundDark">#101D24</color>

Last updated
Was this helpful?