> For the complete documentation index, see [llms.txt](https://android-ebook-app.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://android-ebook-app.gitbook.io/docs/android-studio/change-color.md).

# 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 :

{% code title="colors.xml" %}

```markup
    <!--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>
```

{% endcode %}
