> For the complete documentation index, see [llms.txt](https://arckytech.gitbook.io/arckys-region-map-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://arckytech.gitbook.io/arckys-region-map-guide/settings-file/ui-settings/text-color-settings.md).

# Text Color Settings

## Overview

This section offers a few Settings related to changing the color of Text on the Region Map UI.

You can use [a tool like this](https://www.rapidtables.com/convert/color/rgb-to-hex.html) to convert the Color you want to the correct RGB values.

***

Change the Color used for the Region and District Name Text.

```ruby
REGION_TEXT_MAIN = Color.new(248, 248, 248)
REGION_TEXT_SHADOW = Color.new(0, 0, 0)
```

Possible value:

* 3 numbers between 0 and 255.

***

Change the Color used for the Location Name Text.

```ruby
LOCATION_TEXT_MAIN = Color.new(248, 248, 248)
LOCATION_TEXT_SHADOW = Color.new(0, 0, 0)
```

Possible value:

* 3 numbers between 0 and 255.

***

Change the Color used for the Point of Interest Text.

```ruby
POI_TEXT_MAIN = Color.new(248, 248, 248)
POI_TEXT_SHADOW = Color.new(0, 0, 0)
```

Possible value:

* 3 numbers between 0 and 255.

***

Change the Color used for the Mode Name Text.

```ruby
MODE_TEXT_MAIN = Color.new(248, 248, 248)
MODE_TEXT_SHADOW = Color.new(0, 0, 0)
```

Possible value:

* 3 numbers between 0 and 255.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://arckytech.gitbook.io/arckys-region-map-guide/settings-file/ui-settings/text-color-settings.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.
