themes-y2k/schemas/metaball_hero.schema.json
Alex Dunmow 49f9c90589 initial: theme plugin y2k
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/y2k.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:46 +08:00

45 lines
1.1 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Metaball Hero",
"description": "Hero section with SVG metaballs on a gradient mesh canvas.",
"type": "object",
"properties": {
"headline": {
"type": "string",
"title": "Headline",
"description": "Display headline.",
"x-editor": "text",
"default": ""
},
"sub": {
"type": "string",
"title": "Sub-headline",
"description": "Supporting line under the headline.",
"x-editor": "text",
"default": ""
},
"ctaLabel": {
"type": "string",
"title": "CTA Label",
"description": "Call-to-action button text.",
"x-editor": "text",
"default": ""
},
"ctaHref": {
"type": "string",
"title": "CTA Link",
"description": "Where the CTA button points.",
"x-editor": "link",
"default": ""
},
"bgPreset": {
"type": "string",
"title": "Background Preset",
"description": "Which mesh anchor palette to use.",
"x-editor": "select",
"enum": ["magenta-teal", "after-hours", "bubblegum"],
"default": "magenta-teal"
}
}
}