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

33 lines
769 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Marquee Ticker",
"description": "Scrolling text strip with chrome edges. Pauses on hover/focus.",
"type": "object",
"properties": {
"items": {
"type": "array",
"title": "Items",
"description": "Lines to scroll across the marquee.",
"x-editor": "array",
"items": {
"type": "string"
},
"default": []
},
"speed": {
"type": "string",
"title": "Speed",
"x-editor": "select",
"enum": ["slow", "medium", "fast"],
"default": "medium"
},
"direction": {
"type": "string",
"title": "Direction",
"x-editor": "select",
"enum": ["left", "right"],
"default": "left"
}
}
}