diff --git a/assets/collapsible-content.css b/assets/collapsible-content.css index 28a371358f7..232ce8da717 100644 --- a/assets/collapsible-content.css +++ b/assets/collapsible-content.css @@ -70,7 +70,7 @@ border-top: 0; } -.collapsible-row-layout .accordion:not(:first-child):not(.color-background-1) { +.collapsible-row-layout .accordion:not(:first-child):not(.color-scheme-1) { margin-top: 1rem; } diff --git a/assets/component-card.css b/assets/component-card.css index eb841680ace..d4081f00c9d 100644 --- a/assets/component-card.css +++ b/assets/component-card.css @@ -68,7 +68,7 @@ } /* Needed for gradient continuity with or without animation so that transparent PNG images come up as we would expect */ -.card__inner.color-background-1 { +.card__inner.color-scheme-1 { background: transparent; } diff --git a/assets/section-footer.css b/assets/section-footer.css index 97a564ed6c8..11aa7529b2a 100644 --- a/assets/section-footer.css +++ b/assets/section-footer.css @@ -2,7 +2,7 @@ border-top: 0.1rem solid rgba(var(--color-foreground), 0.08); } -.footer:not(.color-background-1) { +.footer:not(.color-scheme-1) { border-top: none; } diff --git a/assets/section-image-banner.css b/assets/section-image-banner.css index a5a2c548aef..28ed04c2849 100644 --- a/assets/section-image-banner.css +++ b/assets/section-image-banner.css @@ -331,7 +331,7 @@ } .banner:not(.banner--mobile-bottom) .field__input, - .banner--mobile-bottom:not(.banner--stacked) .banner__box.color-background-1 { + .banner--mobile-bottom:not(.banner--stacked) .banner__box.color-scheme-1 { background: transparent; } } diff --git a/config/settings_data.json b/config/settings_data.json index 1feccea7ae2..0f7a06db992 100644 --- a/config/settings_data.json +++ b/config/settings_data.json @@ -4,7 +4,7 @@ "Default": { "logo_width": 90, "color_schemes": { - "background-1": { + "scheme-1": { "settings": { "background": "#FFFFFF", "background_gradient": "", @@ -15,7 +15,7 @@ "shadow": "#121212" } }, - "background-2": { + "scheme-2": { "settings": { "background": "#F3F3F3", "background_gradient": "", @@ -26,7 +26,7 @@ "shadow": "#121212" } }, - "inverse": { + "scheme-3": { "settings": { "background": "#242833", "background_gradient": "", @@ -37,7 +37,7 @@ "shadow": "#121212" } }, - "accent-1": { + "scheme-4": { "settings": { "background": "#121212", "background_gradient": "", @@ -48,7 +48,7 @@ "shadow": "#121212" } }, - "accent-2": { + "scheme-5": { "settings": { "background": "#334FB4", "background_gradient": "", @@ -92,7 +92,7 @@ "card_style": "standard", "card_image_padding": 0, "card_text_alignment": "left", - "card_color_scheme": "background-2", + "card_color_scheme": "scheme-2", "card_border_thickness": 0, "card_border_opacity": 10, "card_corner_radius": 0, @@ -103,7 +103,7 @@ "collection_card_style": "standard", "collection_card_image_padding": 0, "collection_card_text_alignment": "left", - "collection_card_color_scheme": "background-2", + "collection_card_color_scheme": "scheme-2", "collection_card_border_thickness": 0, "collection_card_border_opacity": 10, "collection_card_corner_radius": 0, @@ -114,7 +114,7 @@ "blog_card_style": "standard", "blog_card_image_padding": 0, "blog_card_text_alignment": "left", - "blog_card_color_scheme": "background-2", + "blog_card_color_scheme": "scheme-2", "blog_card_border_thickness": 0, "blog_card_border_opacity": 10, "blog_card_corner_radius": 0, @@ -151,8 +151,8 @@ "drawer_shadow_blur": 5, "badge_position": "bottom left", "badge_corner_radius": 40, - "sale_badge_color_scheme": "accent-2", - "sold_out_badge_color_scheme": "inverse", + "sale_badge_color_scheme": "scheme-5", + "sold_out_badge_color_scheme": "scheme-3", "social_twitter_link": "", "social_facebook_link": "", "social_pinterest_link": "", @@ -174,13 +174,13 @@ "main-password-header": { "type": "main-password-header", "settings": { - "color_scheme": "background-1" + "color_scheme": "scheme-1" } }, "main-password-footer": { "type": "main-password-footer", "settings": { - "color_scheme": "background-1" + "color_scheme": "scheme-1" } } } diff --git a/config/settings_schema.json b/config/settings_schema.json index 37a0d4bcc72..4b30279b1ab 100644 --- a/config/settings_schema.json +++ b/config/settings_schema.json @@ -539,7 +539,7 @@ "type": "color_scheme", "id": "card_color_scheme", "label": "t:sections.all.colors.label", - "default": "background-2" + "default": "scheme-2" }, { "type": "header", @@ -674,7 +674,7 @@ "type": "color_scheme", "id": "collection_card_color_scheme", "label": "t:sections.all.colors.label", - "default": "background-2" + "default": "scheme-2" }, { "type": "header", @@ -809,7 +809,7 @@ "type": "color_scheme", "id": "blog_card_color_scheme", "label": "t:sections.all.colors.label", - "default": "background-2" + "default": "scheme-2" }, { "type": "header", @@ -1258,13 +1258,13 @@ "type": "color_scheme", "id": "sale_badge_color_scheme", "label": "t:settings_schema.badges.settings.sale_badge_color_scheme.label", - "default": "accent-2" + "default": "scheme-5" }, { "type": "color_scheme", "id": "sold_out_badge_color_scheme", "label": "t:settings_schema.badges.settings.sold_out_badge_color_scheme.label", - "default": "inverse" + "default": "scheme-3" } ] }, @@ -1462,7 +1462,7 @@ "type": "color_scheme", "id": "cart_color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" } ] } diff --git a/sections/announcement-bar.liquid b/sections/announcement-bar.liquid index 6b6f2d90d85..31db1f58257 100644 --- a/sections/announcement-bar.liquid +++ b/sections/announcement-bar.liquid @@ -231,7 +231,7 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "default": "accent-1" + "default": "scheme-4" }, { "type": "checkbox", diff --git a/sections/collage.liquid b/sections/collage.liquid index 19706ab5d84..ae7da8c9b3a 100644 --- a/sections/collage.liquid +++ b/sections/collage.liquid @@ -333,7 +333,7 @@ "id": "color_scheme", "label": "t:sections.all.colors.label", "info": "t:sections.all.colors.has_cards_info", - "default": "background-1" + "default": "scheme-1" }, { "type": "header", diff --git a/sections/collapsible-content.liquid b/sections/collapsible-content.liquid index 9acb813ed6e..a2d923d2c0c 100644 --- a/sections/collapsible-content.liquid +++ b/sections/collapsible-content.liquid @@ -190,14 +190,14 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "color_scheme", "id": "container_color_scheme", "label": "t:sections.collapsible_content.settings.container_color_scheme.label", "info": "t:sections.collapsible_content.settings.container_color_scheme.info", - "default": "background-2" + "default": "scheme-2" }, { "type": "checkbox", diff --git a/sections/collection-list.liquid b/sections/collection-list.liquid index b94cdac159d..828f9f7e448 100644 --- a/sections/collection-list.liquid +++ b/sections/collection-list.liquid @@ -200,7 +200,7 @@ "id": "color_scheme", "label": "t:sections.all.colors.label", "info": "t:sections.all.colors.has_cards_info", - "default": "background-1" + "default": "scheme-1" }, { "type": "checkbox", diff --git a/sections/contact-form.liquid b/sections/contact-form.liquid index 99d4f4eb919..e545933c533 100644 --- a/sections/contact-form.liquid +++ b/sections/contact-form.liquid @@ -172,7 +172,7 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "header", diff --git a/sections/custom-liquid.liquid b/sections/custom-liquid.liquid index 7faf4560003..869a5b795d4 100644 --- a/sections/custom-liquid.liquid +++ b/sections/custom-liquid.liquid @@ -33,7 +33,7 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "header", diff --git a/sections/email-signup-banner.liquid b/sections/email-signup-banner.liquid index 4c76172f80c..464637c9ea2 100644 --- a/sections/email-signup-banner.liquid +++ b/sections/email-signup-banner.liquid @@ -267,7 +267,7 @@ "id": "color_scheme", "label": "t:sections.all.colors.label", "info": "t:sections.email-signup-banner.settings.color_scheme.info", - "default": "background-1" + "default": "scheme-1" }, { "type": "header", diff --git a/sections/featured-blog.liquid b/sections/featured-blog.liquid index 7829f704527..d96a8762f10 100644 --- a/sections/featured-blog.liquid +++ b/sections/featured-blog.liquid @@ -244,7 +244,7 @@ "id": "color_scheme", "label": "t:sections.all.colors.label", "info": "t:sections.all.colors.has_cards_info", - "default": "background-1" + "default": "scheme-1" }, { "type": "checkbox", diff --git a/sections/featured-collection.liquid b/sections/featured-collection.liquid index c582f39b19c..ff209cf64bb 100644 --- a/sections/featured-collection.liquid +++ b/sections/featured-collection.liquid @@ -294,7 +294,7 @@ "id": "color_scheme", "label": "t:sections.all.colors.label", "info": "t:sections.all.colors.has_cards_info", - "default": "background-1" + "default": "scheme-1" }, { "type": "header", diff --git a/sections/featured-product.liquid b/sections/featured-product.liquid index aaaf76c8c39..207c97ee24d 100644 --- a/sections/featured-product.liquid +++ b/sections/featured-product.liquid @@ -1513,7 +1513,7 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "checkbox", diff --git a/sections/footer-group.json b/sections/footer-group.json index aba81fbe1eb..a9263d9b541 100644 --- a/sections/footer-group.json +++ b/sections/footer-group.json @@ -33,7 +33,7 @@ "footer-2" ], "settings": { - "color_scheme": "background-1", + "color_scheme": "scheme-1", "newsletter_enable": true, "newsletter_heading": "Subscribe to our emails", "show_social": true, diff --git a/sections/footer.liquid b/sections/footer.liquid index f00cdd7c888..889a4f0dba2 100644 --- a/sections/footer.liquid +++ b/sections/footer.liquid @@ -484,7 +484,7 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "header", diff --git a/sections/header-group.json b/sections/header-group.json index 438add1530f..a9ac3a08a0d 100644 --- a/sections/header-group.json +++ b/sections/header-group.json @@ -10,7 +10,7 @@ "settings": { "text": "Welcome to our store", "text_alignment": "center", - "color_scheme": "background-1", + "color_scheme": "scheme-1", "link": "" } } @@ -22,7 +22,7 @@ "header": { "type": "header", "settings": { - "color_scheme": "background-1", + "color_scheme": "scheme-1", "logo_position": "middle-left", "menu": "main-menu", "menu_type_desktop": "dropdown", diff --git a/sections/header.liquid b/sections/header.liquid index 0c44123e82f..a9551ddccb7 100644 --- a/sections/header.liquid +++ b/sections/header.liquid @@ -591,13 +591,13 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "color_scheme", "id": "menu_color_scheme", "label": "t:sections.header.settings.menu_color_scheme.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "header", diff --git a/sections/image-banner.liquid b/sections/image-banner.liquid index 2eaad5ef4e0..126dad84f85 100644 --- a/sections/image-banner.liquid +++ b/sections/image-banner.liquid @@ -294,7 +294,7 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "header", diff --git a/sections/image-with-text.liquid b/sections/image-with-text.liquid index fcb92495d97..0a24e48a351 100644 --- a/sections/image-with-text.liquid +++ b/sections/image-with-text.liquid @@ -242,13 +242,13 @@ "type": "color_scheme", "id": "section_color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "color_scheme", "id": "color_scheme", "label": "t:sections.multirow.settings.container_color_scheme.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "header", diff --git a/sections/main-cart-footer.liquid b/sections/main-cart-footer.liquid index af6654c4ece..78a3967e8bc 100644 --- a/sections/main-cart-footer.liquid +++ b/sections/main-cart-footer.liquid @@ -141,7 +141,7 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "range", diff --git a/sections/main-cart-items.liquid b/sections/main-cart-items.liquid index 4799a835efd..8ce645d9553 100644 --- a/sections/main-cart-items.liquid +++ b/sections/main-cart-items.liquid @@ -458,7 +458,7 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "header", diff --git a/sections/main-collection-banner.liquid b/sections/main-collection-banner.liquid index e9b814c8005..832ee0da323 100644 --- a/sections/main-collection-banner.liquid +++ b/sections/main-collection-banner.liquid @@ -71,7 +71,7 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" } ] } diff --git a/sections/main-collection-product-grid.liquid b/sections/main-collection-product-grid.liquid index a863001d748..918dd69b0b8 100644 --- a/sections/main-collection-product-grid.liquid +++ b/sections/main-collection-product-grid.liquid @@ -210,7 +210,7 @@ "id": "color_scheme", "label": "t:sections.all.colors.label", "info": "t:sections.all.colors.has_cards_info", - "default": "background-1" + "default": "scheme-1" }, { "type": "header", diff --git a/sections/main-password-footer.liquid b/sections/main-password-footer.liquid index 745f46358a4..65d59ed491a 100644 --- a/sections/main-password-footer.liquid +++ b/sections/main-password-footer.liquid @@ -110,7 +110,7 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" } ] } diff --git a/sections/main-password-header.liquid b/sections/main-password-header.liquid index 1342744d5e4..e0fac2d54f8 100644 --- a/sections/main-password-header.liquid +++ b/sections/main-password-header.liquid @@ -110,7 +110,7 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" } ] } diff --git a/sections/main-product.liquid b/sections/main-product.liquid index 20e9ce466c3..a5dd8eb105e 100644 --- a/sections/main-product.liquid +++ b/sections/main-product.liquid @@ -2012,7 +2012,7 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "header", diff --git a/sections/multicolumn.liquid b/sections/multicolumn.liquid index fa21082ed02..293780a6306 100644 --- a/sections/multicolumn.liquid +++ b/sections/multicolumn.liquid @@ -323,7 +323,7 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "header", diff --git a/sections/multirow.liquid b/sections/multirow.liquid index d49ed6f8a70..2d242bd05a4 100644 --- a/sections/multirow.liquid +++ b/sections/multirow.liquid @@ -282,13 +282,13 @@ "type": "color_scheme", "id": "section_color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "color_scheme", "id": "row_color_scheme", "label": "t:sections.multirow.settings.container_color_scheme.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "header", diff --git a/sections/newsletter.liquid b/sections/newsletter.liquid index b4988a38afb..d9e510dc6e1 100644 --- a/sections/newsletter.liquid +++ b/sections/newsletter.liquid @@ -127,7 +127,7 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "checkbox", diff --git a/sections/page.liquid b/sections/page.liquid index 9f61c0e1306..24eccbc68b0 100644 --- a/sections/page.liquid +++ b/sections/page.liquid @@ -73,7 +73,7 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "header", diff --git a/sections/quick-order-list.liquid b/sections/quick-order-list.liquid index 1a78b2b1e49..af5f1070ba0 100644 --- a/sections/quick-order-list.liquid +++ b/sections/quick-order-list.liquid @@ -294,7 +294,7 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "header", diff --git a/sections/related-products.liquid b/sections/related-products.liquid index 610e0d31144..683668bc9c0 100644 --- a/sections/related-products.liquid +++ b/sections/related-products.liquid @@ -111,8 +111,8 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "info": "t:sections.all.colors.has_cards_info", - "default": "background-1" + "info": "t:sections.image-banner.settings.color_scheme.info", + "default": "scheme-1" }, { "type": "header", diff --git a/sections/rich-text.liquid b/sections/rich-text.liquid index 3210b5ecb8b..4a2914ce57b 100644 --- a/sections/rich-text.liquid +++ b/sections/rich-text.liquid @@ -148,7 +148,7 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "checkbox", diff --git a/sections/slideshow.liquid b/sections/slideshow.liquid index a2d048bf428..0b5738076a1 100644 --- a/sections/slideshow.liquid +++ b/sections/slideshow.liquid @@ -548,7 +548,7 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "header", diff --git a/sections/video.liquid b/sections/video.liquid index 624918ea904..17b14532c9c 100644 --- a/sections/video.liquid +++ b/sections/video.liquid @@ -239,7 +239,7 @@ "type": "color_scheme", "id": "color_scheme", "label": "t:sections.all.colors.label", - "default": "background-1" + "default": "scheme-1" }, { "type": "header", diff --git a/templates/cart.json b/templates/cart.json index 00ff37e5833..c830dd0464e 100644 --- a/templates/cart.json +++ b/templates/cart.json @@ -34,7 +34,7 @@ "collection": "all", "products_to_show": 4, "columns_desktop": 4, - "color_scheme": "background-1", + "color_scheme": "scheme-1", "show_view_all": true, "swipe_on_mobile": false, "image_ratio": "square", diff --git a/templates/collection.json b/templates/collection.json index f21fa3a4c12..d12dfab5447 100644 --- a/templates/collection.json +++ b/templates/collection.json @@ -5,7 +5,7 @@ "settings": { "show_collection_description": true, "show_collection_image": false, - "color_scheme": "background-1" + "color_scheme": "scheme-1" } }, "product-grid": { diff --git a/templates/index.json b/templates/index.json index 51864508d43..92d10b71ece 100644 --- a/templates/index.json +++ b/templates/index.json @@ -40,7 +40,7 @@ "desktop_content_position": "bottom-center", "show_text_box": false, "desktop_content_alignment": "center", - "color_scheme": "inverse", + "color_scheme": "scheme-3", "mobile_content_alignment": "center", "stack_images_on_mobile": false, "show_text_below": false @@ -68,7 +68,7 @@ "text" ], "settings": { - "color_scheme": "background-1", + "color_scheme": "scheme-1", "full_width": true, "padding_top": 40, "padding_bottom": 0 @@ -82,7 +82,7 @@ "collection": "all", "products_to_show": 8, "columns_desktop": 4, - "color_scheme": "background-1", + "color_scheme": "scheme-1", "show_view_all": false, "swipe_on_mobile": false, "image_ratio": "adapt", @@ -127,7 +127,7 @@ "heading_size": "h2", "desktop_layout": "left", "mobile_layout": "collage", - "color_scheme": "background-1", + "color_scheme": "scheme-1", "padding_top": 36, "padding_bottom": 36 } @@ -140,7 +140,7 @@ "heading_size": "h1", "description": "", "full_width": false, - "color_scheme": "background-1", + "color_scheme": "scheme-1", "padding_top": 36, "padding_bottom": 36 } @@ -192,7 +192,7 @@ "button_label": "", "button_link": "", "swipe_on_mobile": false, - "color_scheme": "background-1", + "color_scheme": "scheme-1", "columns_mobile": "1", "padding_top": 36, "padding_bottom": 36 diff --git a/templates/page.contact.json b/templates/page.contact.json index cf4e6931807..73a56c11d11 100644 --- a/templates/page.contact.json +++ b/templates/page.contact.json @@ -12,7 +12,7 @@ "settings": { "heading": "", "heading_size": "h1", - "color_scheme": "background-1", + "color_scheme": "scheme-1", "padding_top": 36, "padding_bottom": 36 } diff --git a/templates/password.json b/templates/password.json index 227a4d4938a..5366ca07a5a 100644 --- a/templates/password.json +++ b/templates/password.json @@ -34,7 +34,7 @@ "desktop_content_position": "middle-center", "show_text_box": true, "desktop_content_alignment": "center", - "color_scheme": "background-1", + "color_scheme": "scheme-1", "mobile_content_alignment": "center", "show_text_below": true } diff --git a/templates/product.json b/templates/product.json index e8ffab4b0bb..62fb0ab6af7 100644 --- a/templates/product.json +++ b/templates/product.json @@ -141,7 +141,7 @@ "desktop_content_position": "top", "desktop_content_alignment": "left", "content_layout": "no-overlap", - "color_scheme": "background-2", + "color_scheme": "scheme-2", "mobile_content_alignment": "left", "padding_top": 36, "padding_bottom": 36 @@ -184,7 +184,7 @@ "button_label": "", "button_link": "", "swipe_on_mobile": false, - "color_scheme": "background-1", + "color_scheme": "scheme-1", "columns_mobile": "1", "padding_top": 36, "padding_bottom": 36 @@ -196,7 +196,7 @@ "heading": "You may also like", "heading_size": "h2", "columns_desktop": 4, - "color_scheme": "background-1", + "color_scheme": "scheme-1", "image_ratio": "square", "show_secondary_image": true, "show_vendor": false,