# Design

To change the design, you can go to `client\html\index.html` and follow the easy instructions at the top. There you can choose from 6 predefined designs.

If you want your own colors, you can follow tutorial below.

You can also change the whole design, if you edit `index.html` and `main.css`, but we **can't provide any support with that**.

### Custom color design

To add your own design, simply create a new *.css* file at `client\html\style\themes\` and paste this inside:

```css
:root {
    --color-white:      ?
    --color-black:      ?
    --color-primary:    ?
    --color-secondary:  ?
    --color-light:      ?
    --color-border:     ?
    --color-accent:     ?
    --color-success:    ?
    --color-error:      ?
    --color-text:       ?
    --color-highlight:  ?
    --slider-dot-color: ?
}
```

Then you can replace the "?" with colors you want your design to have.

* for example: `#000, red, rgb(255, 123, 321)` and more [here 🔗](https://www.w3schools.com/colors/default.asp)

If you want some inspiration, you can look at `client\html\style\themes\dark.css`


---

# 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://documentation.rcore.cz/paid-resources/rcore_tattoos/design.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.
