2026-02-20 21:28:00 -05:00
|
|
|
{
|
|
|
|
|
"$schema": "https://schemas.wp.org/trunk/theme.json",
|
|
|
|
|
"version": 2,
|
|
|
|
|
"settings": {
|
|
|
|
|
"layout": {
|
|
|
|
|
"contentSize": "1200px",
|
|
|
|
|
"wideSize": "1536px"
|
|
|
|
|
},
|
|
|
|
|
"appearanceTools": false,
|
|
|
|
|
"border": {
|
|
|
|
|
"color": false,
|
|
|
|
|
"radius": false,
|
|
|
|
|
"style": false,
|
|
|
|
|
"width": false
|
|
|
|
|
},
|
|
|
|
|
"shadow": {
|
|
|
|
|
"defaultPresets": false,
|
|
|
|
|
"presets": []
|
|
|
|
|
},
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": false,
|
|
|
|
|
"margin": false,
|
|
|
|
|
"blockGap": false,
|
|
|
|
|
"customSpacingSize": false,
|
|
|
|
|
"units": ["px", "%", "em", "rem", "vw", "vh"]
|
|
|
|
|
},
|
|
|
|
|
"color": {
|
|
|
|
|
"defaultPalette": false,
|
|
|
|
|
"defaultGradients": false,
|
|
|
|
|
"defaultDuotone": false,
|
|
|
|
|
"custom": true,
|
|
|
|
|
"customDuotone": false,
|
|
|
|
|
"customGradient": false,
|
|
|
|
|
"palette": [
|
2026-02-21 13:26:59 -05:00
|
|
|
{ "slug": "primary", "color": "#D83302", "name": "Primary" },
|
|
|
|
|
{ "slug": "primary-dk", "color": "#A22702", "name": "Primary Dark" },
|
|
|
|
|
{ "slug": "primary-lt", "color": "#FFF0EB", "name": "Primary Light" },
|
2026-02-20 22:06:53 -05:00
|
|
|
{ "slug": "accent", "color": "#4CAF50", "name": "Accent" },
|
|
|
|
|
{ "slug": "accent-dk", "color": "#388E3C", "name": "Accent Dark" },
|
|
|
|
|
{ "slug": "accent-lt", "color": "#E8F5E9", "name": "Accent Light" },
|
|
|
|
|
{ "slug": "dark", "color": "#111111", "name": "Dark" },
|
|
|
|
|
{ "slug": "dark-2", "color": "#1A1A1A", "name": "Dark 2" },
|
|
|
|
|
{ "slug": "text", "color": "#333333", "name": "Text" },
|
|
|
|
|
{ "slug": "text-muted", "color": "#666666", "name": "Text Muted" },
|
|
|
|
|
{ "slug": "border", "color": "#E0E0E0", "name": "Border" },
|
2026-02-20 21:28:00 -05:00
|
|
|
{ "slug": "bg", "color": "#FFFFFF", "name": "Background" },
|
2026-02-20 22:06:53 -05:00
|
|
|
{ "slug": "bg-alt", "color": "#F5F5F5", "name": "Background Alt" }
|
2026-02-20 21:28:00 -05:00
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"typography": {
|
|
|
|
|
"defaultFontSizes": false,
|
|
|
|
|
"customFontSize": true,
|
|
|
|
|
"lineHeight": false,
|
|
|
|
|
"dropCap": false,
|
|
|
|
|
"textDecoration": false,
|
|
|
|
|
"textTransform": false,
|
|
|
|
|
"fontStyle": false,
|
|
|
|
|
"fontWeight": false,
|
|
|
|
|
"letterSpacing": false,
|
|
|
|
|
"fontFamilies": [
|
|
|
|
|
{
|
|
|
|
|
"fontFamily": "'Inter', system-ui, -apple-system, sans-serif",
|
|
|
|
|
"name": "Body",
|
|
|
|
|
"slug": "sans"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"fontFamily": "'Inter', system-ui, -apple-system, sans-serif",
|
|
|
|
|
"name": "Heading",
|
|
|
|
|
"slug": "heading"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"fontSizes": [
|
2026-02-20 22:06:53 -05:00
|
|
|
{ "slug": "xs", "size": "0.75rem", "name": "XS - 12px" },
|
|
|
|
|
{ "slug": "sm", "size": "0.875rem", "name": "SM - 14px" },
|
|
|
|
|
{ "slug": "base", "size": "1rem", "name": "Base - 16px" },
|
|
|
|
|
{ "slug": "md", "size": "1.125rem", "name": "MD - 18px" },
|
|
|
|
|
{ "slug": "lg", "size": "1.25rem", "name": "LG - 20px" },
|
|
|
|
|
{ "slug": "xl", "size": "1.5rem", "name": "XL - 24px" },
|
|
|
|
|
{ "slug": "2xl", "size": "1.875rem", "name": "2XL - 30px" },
|
|
|
|
|
{ "slug": "3xl", "size": "2.25rem", "name": "3XL - 36px" },
|
|
|
|
|
{ "slug": "4xl", "size": "3rem", "name": "4XL - 48px" },
|
|
|
|
|
{ "slug": "5xl", "size": "3.75rem", "name": "5XL - 60px" },
|
|
|
|
|
{ "slug": "6xl", "size": "4.5rem", "name": "6XL - 72px" }
|
2026-02-20 21:28:00 -05:00
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"custom": {
|
|
|
|
|
"dark": {
|
2026-02-21 13:26:59 -05:00
|
|
|
"primary": "#FF6B3D",
|
|
|
|
|
"primary-dk": "#D83302",
|
|
|
|
|
"primary-lt": "rgba(216,51,2,0.15)",
|
2026-02-20 22:06:53 -05:00
|
|
|
"accent": "#66BB6A",
|
|
|
|
|
"accent-dk": "#388E3C",
|
|
|
|
|
"accent-lt": "rgba(76,175,80,0.12)",
|
|
|
|
|
"dark": "#E0E0E0",
|
|
|
|
|
"dark-2": "#BDBDBD",
|
|
|
|
|
"text": "#E0E0E0",
|
|
|
|
|
"text-muted": "#9E9E9E",
|
|
|
|
|
"border": "#333333",
|
|
|
|
|
"bg": "#1A1A1A",
|
|
|
|
|
"bg-alt": "#222222",
|
|
|
|
|
"bg-dark": "#111111",
|
|
|
|
|
"heading": "#F5F5F5",
|
|
|
|
|
"card-bg": "#222222"
|
2026-02-20 21:28:00 -05:00
|
|
|
},
|
|
|
|
|
"radius": {
|
|
|
|
|
"sm": "6px",
|
|
|
|
|
"md": "12px",
|
|
|
|
|
"lg": "20px",
|
|
|
|
|
"xl": "32px"
|
|
|
|
|
},
|
|
|
|
|
"container": {
|
|
|
|
|
"max": "1200px",
|
|
|
|
|
"pad": "clamp(1rem, 5vw, 2rem)"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"useRootPaddingAwareAlignments": false
|
|
|
|
|
},
|
|
|
|
|
"styles": {
|
|
|
|
|
"color": {
|
|
|
|
|
"text": "var:preset|color|text",
|
|
|
|
|
"background": "var:preset|color|bg"
|
|
|
|
|
},
|
|
|
|
|
"typography": {
|
|
|
|
|
"fontFamily": "var:preset|font-family|sans",
|
|
|
|
|
"fontSize": "var:preset|font-size|base"
|
|
|
|
|
},
|
|
|
|
|
"spacing": {
|
|
|
|
|
"blockGap": "0",
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
},
|
|
|
|
|
"elements": {
|
|
|
|
|
"link": {
|
|
|
|
|
"color": {
|
|
|
|
|
"text": "var:preset|color|primary"
|
|
|
|
|
},
|
|
|
|
|
"typography": {
|
|
|
|
|
"textDecoration": "none"
|
|
|
|
|
},
|
|
|
|
|
":hover": {
|
|
|
|
|
"color": {
|
|
|
|
|
"text": "var:preset|color|primary-dk"
|
|
|
|
|
},
|
|
|
|
|
"typography": {
|
2026-02-26 07:21:16 -05:00
|
|
|
"textDecoration": "none"
|
2026-02-20 21:28:00 -05:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
":focus": {
|
|
|
|
|
"color": {
|
|
|
|
|
"text": "var:preset|color|primary-dk"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"button": {
|
|
|
|
|
"color": {
|
|
|
|
|
"text": "var:preset|color|bg",
|
|
|
|
|
"background": "var:preset|color|primary"
|
|
|
|
|
},
|
|
|
|
|
"typography": {
|
|
|
|
|
"fontFamily": "var:preset|font-family|sans",
|
|
|
|
|
"fontSize": "var:preset|font-size|base"
|
|
|
|
|
},
|
|
|
|
|
":hover": {
|
|
|
|
|
"color": {
|
|
|
|
|
"background": "var:preset|color|primary-dk"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
":focus": {
|
|
|
|
|
"color": {
|
|
|
|
|
"background": "var:preset|color|primary-dk"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"h1": {
|
|
|
|
|
"typography": {
|
|
|
|
|
"fontFamily": "var:preset|font-family|heading"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"h2": {
|
|
|
|
|
"typography": {
|
|
|
|
|
"fontFamily": "var:preset|font-family|heading"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"h3": {
|
|
|
|
|
"typography": {
|
|
|
|
|
"fontFamily": "var:preset|font-family|heading"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"h4": {
|
|
|
|
|
"typography": {
|
|
|
|
|
"fontFamily": "var:preset|font-family|heading"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"h5": {
|
|
|
|
|
"typography": {
|
|
|
|
|
"fontFamily": "var:preset|font-family|heading"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"h6": {
|
|
|
|
|
"typography": {
|
|
|
|
|
"fontFamily": "var:preset|font-family|heading"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"blocks": {
|
|
|
|
|
"core/group": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"core/columns": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0",
|
|
|
|
|
"blockGap": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"core/column": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"core/heading": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"core/paragraph": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"core/list": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"core/image": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"core/separator": {
|
|
|
|
|
"color": {
|
|
|
|
|
"text": "var:preset|color|border"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"core/button": {
|
|
|
|
|
"color": {
|
|
|
|
|
"text": "var:preset|color|bg",
|
|
|
|
|
"background": "var:preset|color|primary"
|
|
|
|
|
},
|
|
|
|
|
"typography": {
|
|
|
|
|
"fontFamily": "var:preset|font-family|sans",
|
|
|
|
|
"fontSize": "var:preset|font-size|base"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"oribi/hero": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"oribi/page-hero": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"oribi/cta-banner": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"oribi/intro-section": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"oribi/contact-section": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"oribi/feature-section": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"oribi/feature-card": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"oribi/pricing-section": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"oribi/pricing-card": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"oribi/platform-section": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"oribi/platform-row": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"oribi/faq-section": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"oribi/faq-item": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"oribi/comparison-table": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"oribi/trust-section": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"oribi/trust-item": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"oribi/hero-animated": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"oribi/page-hero-animated": {
|
|
|
|
|
"spacing": {
|
|
|
|
|
"padding": "0",
|
|
|
|
|
"margin": "0"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"templateParts": [
|
|
|
|
|
{ "name": "header", "title": "Header", "area": "header" },
|
|
|
|
|
{ "name": "footer", "title": "Footer", "area": "footer" }
|
|
|
|
|
]
|
|
|
|
|
}
|