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

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

24 lines
670 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Alphabet Strip",
"description": "Decorative letter band — primary, rainbow, or mono colorways.",
"type": "object",
"properties": {
"letters": {
"type": "string",
"title": "Letters",
"description": "Sequence of letters to render. Each character becomes one tile.",
"default": "ABCDEFGHIJ",
"x-editor": "text"
},
"colorMode": {
"type": "string",
"title": "Color Mode",
"description": "How the letter tiles are colored.",
"x-editor": "select",
"enum": ["primary", "rainbow", "mono"],
"default": "rainbow"
}
}
}