> 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.
