themes-y2k/schemas/chrome_navbar.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

30 lines
800 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Chrome Navbar",
"description": "Beveled chrome navigation bar with hover sparkle and brand mark.",
"type": "object",
"properties": {
"menuName": {
"type": "string",
"title": "Menu",
"description": "Menu to render as the primary nav.",
"x-editor": "menu-select",
"default": "main"
},
"logoText": {
"type": "string",
"title": "Logo Text",
"description": "Brand wordmark (used when no logo image is set).",
"x-editor": "text",
"default": ""
},
"logoImage": {
"type": "string",
"title": "Logo Image",
"description": "Optional brand image. Overrides logo text when set.",
"x-editor": "media",
"default": ""
}
}
}