Kaleidoscope

Kaleidoscope demo files

💡 Tip: Duplicate your theme before making code changes. This will ensure you have a backup to revert to if needed.

If you want to get a head start on your theme design this guide will help you copy the existing layout and settings from our demo stores.

1

Open up theme editor

In Shopify select Online store then click Edit code for the theme you'd like update.

2

Duplicate theme

It's always a good idea to have a backup.

3

Copy changes

Copy the below files and replace your existing file.

Section files

sections/header-group.json
{
  "type": "header",
  "name": "Header group",
  "sections": {
    "theme_announcement": {
      "type": "theme__announcement",
      "blocks": {
        "announcement_z8GqMR": {
          "type": "announcement",
          "settings": {
            "content": "<p>Make announcements or share a promotion.</p>"
          }
        }
      },
      "block_order": [
        "announcement_z8GqMR"
      ],
      "disabled": true,
      "custom_css": [],
      "settings": {
        "announcement_delay": 15,
        "color_scheme": "color__bg-tertiary color__tertiary",
        "layout_alignment": "center",
        "enable_margin": true,
        "visibility": ""
      }
    }
  }
}
sections/overlay-group.json
{
  "type": "custom.overlay",
  "name": "Overlay group",
  "sections": {
    "theme_tooltip": {
      "type": "theme__tooltip",
      "blocks": {
        "71c48f59-2e6d-4190-8942-3924132a07ee": {
          "type": "newsletter",
          "settings": {
            "content": "<p>Tell customers why they should subscribe to your newsletter.</p>",
            "button_label": "Subscribe",
            "disclaimer": "",
            "success": "<p>Success! You've been subscribed.</p>"
          }
        }
      },
      "block_order": [
        "71c48f59-2e6d-4190-8942-3924132a07ee"
      ],
      "disabled": true,
      "settings": {
        "button_label": "Sign up",
        "button_icon": "",
        "color_button": "btn btn--secondary",
        "placement": "bottom-0 right-0",
        "visibility": ""
      }
    },
    "theme_scrollup": {
      "type": "theme__scroll-up",
      "disabled": true,
      "settings": {
        "scroll_up_style": "text",
        "button_color": "btn btn--plain",
        "visibility": "hidden md:block"
      }
    },
    "theme_age-verification": {
      "type": "theme__age-verification",
      "disabled": true,
      "settings": {
        "age_verification_style": "full_date",
        "age_limit": 1,
        "heading": "Verify your age",
        "content": "<p>Please confirm that you are over the age of 18 to proceed.</p>"
      }
    }
  }
}

Template files

templates/index.json
{
  "sections": {
    "banner_alternative_dzQqhb": {
      "type": "banner-alternative",
      "blocks": {
        "content_EnhnNY": {
          "type": "content",
          "settings": {
            "heading": "Keep competitive with the premium wholesale home goods resource",
            "content": "",
            "url": "",
            "show_entire_image": false,
            "show_video_background_mobile": true,
            "button_label": "Sign Up",
            "button_url": "https://shopify.com/92083781912/account?locale=en",
            "color_button": "btn",
            "secondary_button_label": "",
            "secondary_button_url": "",
            "secondary_color_button": "btn",
            "color_scheme": "color__bg-secondary color__secondary",
            "color_text": "",
            "enable_gradient": false,
            "enable_background_overlay": false,
            "layout_y_alignment": "items-end",
            "layout_x_alignment": "justify-start"
          }
        },
        "content_pwTqaQ": {
          "type": "content",
          "settings": {
            "heading": "",
            "content": "",
            "url": "",
            "image_background_desktop": "shopify://shop_images/pexels-ron-lach-10117817.jpg",
            "show_entire_image": false,
            "show_video_background_mobile": true,
            "button_label": "",
            "button_url": "",
            "color_button": "btn",
            "secondary_button_label": "",
            "secondary_button_url": "",
            "secondary_color_button": "btn btn--neutral",
            "color_scheme": "color__bg-overlay-3 color__text",
            "color_text": "",
            "enable_gradient": false,
            "enable_background_overlay": false,
            "layout_y_alignment": "items-end",
            "layout_x_alignment": "justify-start"
          }
        }
      },
      "block_order": [
        "content_EnhnNY",
        "content_pwTqaQ"
      ],
      "settings": {
        "layout_y_spacing": "min-h-[250px] md:min-h-[350px]",
        "color_scheme": "color__bg-body color__text",
        "color_border": "color__border-divider-1",
        "style_border": "",
        "enable_margin": true,
        "enable_max_width": true,
        "visibility": ""
      }
    }
  }
}
templates/collection.json
templates/list-collections.json
templates/product.json
templates/page.json
templates/blog.json
templates/article.json

Last updated

Was this helpful?