# Config Settings

## Color Settings

You can add all kinds of colors here as you like. To add a new color, copy a color, rename it and use it. For example, you have added a new color called pink and you want to use it, all you have to do is write pink at the end of the export as shown below

```lua
    exports["frkn-text"]:openTextUi(item,v.position,3,"green")
```

```lua
FRKN = {
    vehicleControl = true ,-- if this is turned on, the vehicle control menu you see at the bottom will be available on your server 
    --vehicle control : https://ibb.co/6RbFRs2
    colorData = {
        blue = {
            background = "rgb(50, 56, 68)",
            keybox = "background: radial-gradient(83% 83% at 50% 50%,rgb(1, 104, 76),rgb(7, 197, 153));",
            border = "1px solid #08c098",
            color = "#08c098",
            iconcolor = "#08c098",
            filterShadow = "drop-shadow(0px 0px 10px #08c098)"
        },
        white = {
            background = "rgb(50, 56, 68)",
            keybox = "radial-gradient(83% 83% at 50% 50%,rgb(255, 255, 255),rgb(100, 97, 97));",
            border = "1px solid #ffffff",
            color = "black",
            iconcolor = "white",
            filterShadow = "drop-shadow(0px 0px 10px white)"
        },
        pink = {
            background = "rgb(50, 56, 68)",
            keybox = "radial-gradient(83% 83% at 50% 50%,rgb(156, 49, 83),rgb(249, 95, 141))",
            border = "1px solid #F95F8D",
            color = "white",
            iconcolor = "#c00892",
            filterShadow = "drop-shadow(0px 0px 10px #F95F8D)"
        }
    },
}
```

## Vehicle Control

```lua
 FRKN = {
    vehicleControl = true ,-- if this is turned on, the vehicle control menu you see at the bottom will be available on your server 
    --vehicle control : https://ibb.co/6RbFRs2
    colorData = {
        blue = {
            background = "rgb(50, 56, 68)",
            keybox = "background: radial-gradient(83% 83% at 50% 50%,rgb(1, 104, 76),rgb(7, 197, 153));",
            border = "1px solid #08c098",
            color = "#08c098",
            iconcolor = "#08c098",
            filterShadow = "drop-shadow(0px 0px 10px #08c098)"
        },
        white = {
            background = "rgb(50, 56, 68)",
            keybox = "radial-gradient(83% 83% at 50% 50%,rgb(255, 255, 255),rgb(100, 97, 97));",
            border = "1px solid #ffffff",
            color = "black",
            iconcolor = "white",
            filterShadow = "drop-shadow(0px 0px 10px white)"
        },
        pink = {
            background = "rgb(50, 56, 68)",
            keybox = "radial-gradient(83% 83% at 50% 50%,rgb(156, 49, 83),rgb(249, 95, 141))",
            border = "1px solid #F95F8D",
            color = "white",
            iconcolor = "#c00892",
            filterShadow = "drop-shadow(0px 0px 10px #F95F8D)"
        }
    },
}
```

:warning: If you want the car control feature you see at the bottom and in the script video to be active, you have to make vehicleControl true.)

<figure><img src="/files/0oio76evfzIskiNfsuJX" alt=""><figcaption></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.0resmon.org/0resmon/0resmon-1/frkn-resources/frkn-drawtext/config-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.
