Inability to define colour schemes

Topic summary

A user is experiencing an issue customizing header colors in Shopify’s Dawn theme while using a third-party page builder. The theme customizer displays an error message preventing color scheme modifications.

Attempted Solution:

  • Another user suggested following a video tutorial on changing color schemes
  • The original poster attempted to modify the theme’s JSON settings file directly

Current Status:

  • The user reports encountering a “huge error on the last line” of their JSON code
  • They’ve shared a code snippet from what appears to be cart settings configuration
  • The code includes a typo: "sho w_vendor" (space in the middle)
  • The discussion remains unresolved, with no confirmation whether the JSON error is related to the original color scheme issue or if fixing the syntax will resolve the customization problem
Summarized with AI on October 29. AI used: claude-sonnet-4-5-20250929.

I am currently using an alternative application to build my page, though I am using the basic dawn theme for the global header, as well as the checkout page. Problem is, when I am attempting to customize my header, the message below pops up. This does not allow me to customize the colours of my header, and I’m wondering if anyone may know the solution.

This is at the top of the header

Hello there @ACF_1 You should try the process in this video to change your color scheme https://m.youtube.com/watch?v=oC2Iz2r9ons&pp=0gcJCdgAo7VqN5tD

Let me know what results this brings for you

Hi, just wondering if you could check my code, I am not familiar with using JSON, and I have this huge error on the last line::

“name”: “t:settings_schema.cart.name”,
“settings”: [
{
“type”: “select”,
“id”: “cart_type”,
“options”: [
{
“value”: “drawer”,
“label”: “t:settings_schema.cart.settings.cart_type.drawer.label”
},
{
“value”: “page”,
“label”: “t:settings_schema.cart.settings.cart_type.page.label”
},
{
“value”: “notification”,
“label”: “t:settings_schema.cart.settings.cart_type.notification.label”
}
],
“default”: “notification”,
“label”: “t:settings_schema.cart.settings.cart_type.label”
},
{
“type”: “checkbox”,
“id”: “show_vendor”,
“label”: “t:settings_schema.cart.settings.show_vendor.label”,
“default”: false
},
{
“type”: “checkbox”,
“id”: “show_cart_note”,
“label”: “t:settings_schema.cart.settings.show_cart_note.label”,
“default”: false
},
{
“type”: “header”,
“content”: “t:settings_schema.cart.settings.cart_drawer.header”
},
{
“type”: “collection”,
“id”: “cart_drawer_collection”,
“label”: “t:settings_schema.cart.settings.cart_drawer.collection.label”,
“info”: “t:settings_schema.cart.settings.cart_drawer.collection.info”
},
{
“type”: “color_scheme”,
“id”: “cart_color_scheme”,
“label”: “t:sections.all.colors.label”,
“default”: “scheme-1”
}
]
}
]