Change Color

  1. to change the app color, you can see on the res/values/colors.xml

  2. Enter your color code inside each of strings tag :

colors.xml
    <!--app main color-->
    <color name="colorPrimary">#2196F3</color>
    <color name="colorPrimaryDark">#1D81D1</color>
    <color name="colorAccent">#52c9ff</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