# Themes

It is possible to customize the look and feel of Bitcart UI by overriding some CSS variables.

Currently it is supported for store POS only.

A list of possible css variables: <https://github.com/bitcart/bitcart-store/blob/master/assets/bulma-generated/generated-bulma-vars.sass>

Guide to customizing the theme:

1. Create a css file changing some theme variables

{% code title="theme.css" %}

```css
:root {
  --brand-color: #162d50;
  --primary: var(--brand-color) !important;
  --success: var(--brand-color) !important;
  --link: var(--brand-color) !important;
}
```

{% endcode %}

2. Upload theme file to file storage of your instance

<figure><img src="/files/iSyVPi6J5Kpd7zsYjbwP" alt=""><figcaption></figcaption></figure>

3. Copy download URL and use it in store theme URL setting in stores page

<figure><img src="/files/G5oiRWEuDgP4K8XYeAyR" alt=""><figcaption></figcaption></figure>

4. Enjoy updated theme colors!

<figure><img src="/files/2jBKDFPSdv9v6i8dsgN8" alt=""><figcaption><p>New colors applied</p></figcaption></figure>


---

# 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://docs.bitcart.ai/guides/themes.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.
