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>
24 lines
670 B
JSON
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"
|
|
}
|
|
}
|
|
}
|