--- title: 'Liquid objects: settings' description: >- Allows you to access all of the theme's settings from the [`settings_schema.json` file](/themes/architecture/config/settings-schema-json). api_name: liquid source_url: html: 'https://shopify.dev/docs/api/liquid/objects/settings' md: 'https://shopify.dev/docs/api/liquid/objects/settings.md' --- # settings Allows you to access all of the theme's settings from the [`settings_schema.json` file](https://shopify.dev/themes/architecture/config/settings-schema-json). *** Tip To learn about the available setting types, refer to [Input settings](https://shopify.dev/themes/architecture/settings/input-settings). *** ### Directly accessible in * Global ### Reference a setting value ```liquid {% if settings.favicon != blank %} {% endif %} ``` ##### Code ``` {% if settings.favicon != blank %} {% endif %} ``` ##### Data ``` { "settings": { "favicon": null } } ``` ## Output ```html ```