# 3. Data Module

**`color_dict`**

A dictionary mapping color names to color objects.

* **Type:**

  * `dict`

```python

color_dict = {
    "red": (255, 0, 0),
    "green": (0, 255, 0),
    "blue": (0, 0, 255)
}

```

This reference should help you understand the various components and methods available in VortexEngine. For more detailed usage, consult the specific method documentation or examples provided.


---

# 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://manis-organization-2.gitbook.io/vortexdocs/vortex-engine/api-reference/3.-data-module.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.
