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

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

30 lines
835 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Affirmation Strip",
"description": "Slow-shimmer band carrying a short affirmation in display type.",
"type": "object",
"properties": {
"quote": {
"type": "string",
"title": "Affirmation",
"description": "Short calming line (one or two sentences).",
"default": "You are doing enough.",
"x-editor": "textarea"
},
"author": {
"type": "string",
"title": "Attribution",
"description": "Optional source for the line.",
"x-editor": "text"
},
"palette": {
"type": "string",
"title": "Palette",
"description": "Which watercolor wash to use behind the strip.",
"default": "blush",
"enum": ["blush", "mint", "butter", "sky"],
"x-editor": "select"
}
}
}