Brand Styleguide
Site-wide syncing for branding settings across all themes
Last updated
{
"brand": {
"primary_color": "#0072EF",
"accent_color": "#10B981",
"logo": "<path to Kajabi hosted logo image>",
"favicon": "<path to Kajabi hosted favicon image>",
"font_family_heading": "Fira Sans",
"font_family_body": "Open Sans",
"social": {
"facebook": "https://facebook.com/example",
"instagram": "https://instagram.com/example",
"x": "https://x.com/example",
"youtube": "https://youtube.com/example",
"linkedin": "https://linkedin.com/company/example",
"tiktok": "https://tiktok.com/@example"
}
}
}{
"type": "color",
"id": "btn_background_color",
"label": "Button",
"default": "",
"allow_blank": true,
"default_global_settings_attribute": "brand.accent_color"
}{% assign btn_color = section.settings.btn_background_color | default: settings.brand.accent_color %}
<style>
#my-btn {
background-color: {{ btn_color }};
}
</style>
<button id="my-btn">Call To Action</button>