# Settings

You can use the `settings_schema.json` file to configure the theme settings that the user has access to using the theme editor.

### About settings\_schema.json

The `settings_schema.json` file is located in the `config` directory of a theme. It controls the organization and content of the menu in the theme editor.

The `settings_schema.json` file contains the definitions for your theme settings, grouped into sections according to the setting type.

Here's an example of a `settings` definition for two input settings of type `color`in the `settings_schema.json` file:

```yaml
[
  {
    "name": "Colors",
    "settings": [
      {
        "type": "color",
        "id": "color_borders",
        "label": "Border colors",
        "default": "#e5e5e5"
      },
      {
        "type": "color",
        "id": "color_body_text",
        "label": "Body text",
        "default": "#333333"
      }
    ]
  }
]
```

The `settings_schema.json` file is validated before being saved to make sure it follows the correct format.


---

# 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://themes.kajabi.com/liquid/core-concepts/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.
