Hi,
Im trying to create an app with extension and i want to add support for color_schemes instead of adding a color field for each item in the section.
But i am receiving the following error:
Invalid tag 'schema': settings: with id="color_schemes" is invalid
Code:
{
"name": "Name",
"target": "section",
"stylesheet": "my-css.css",
"class": "section-wrapper",
"settings": [
{
"type": "text",
"id": "header_text",
"label": "Header Text",
"default": "Some Text"
},
{
"type": "inline_richtext",
"id": "text",
"label": "Description"
},
{
"type": "url",
"id": "button_url",
"label": "Button URL",
"default": "/collections"
},
{
"type": "text",
"id": "button_text",
"label": "Button Text",
"default": "Shop now"
},
{
"type": "color_scheme",
"id": "color_scheme",
"default": "scheme_1",
"label": "Color Scheme"
}
]
}
I am using Dawn theme on my dev store, and when i go to Themes → Customize → Theme Settings → Colors, i can see the schemes, but yet i cant use color_scheme in my extension.
