# settings

> The settings Liquid object, which gives a Shoplazza theme access to every theme setting defined in settings_schema.json, and how to reference one value.

Allows you to access all of the theme's settings from the [settings\_schema.json](/docs/theme/architecture/config/settings-schema-json) file.

:::tip
To learn about the available setting types, refer to [Input settings](/docs/theme/architecture/settings/input-settings).
:::

## Reference a setting value

```liquid title="Code"
{% if settings.color_primary %}
  <meta name="theme-color" content="{{ settings.color_primary }}">
{% endif %}
```

```html title="Output"
<meta name="theme-color" content="#E24E2D">
```
