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