# UI Customize

#### Change the app main color&#x20;

1. Open <mark style="color:orange;">`lib/config.dart`</mark> the file in the project.
2. You can change the most of the color components in this section

```
//App main color
const maincolor = 0xFF3FC1BE;
```

#### Change the app logo and splash screen

1. To change the **logo,** replace the logo.png in the following folder <mark style="color:red;">assets/images/</mark>
2. Open <mark style="color:orange;">`lib/images.dart`</mark> in the project folder and cross check your logo image name
3. Your logo must be 466 \* 97

```
const String constLogo = 'assets/images/name of your image.extension
```

1. To change the **Splashscreen** replace the splashscreen.png in the following folder <mark style="color:red;">assets/images/</mark>
2. Open <mark style="color:orange;">`lib/images.dart`</mark> in the project folder and cross check your splashscreen image name
3. Your logo must be 829 \* 1792

```
const String constSplashScreen = 'assets/images/name of your splashscreen.extension
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://mobiledocs.themeparrot.com/woocommerce-mobile-app/bookstore/ui-customize.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
