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

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

35 lines
888 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Neon Feature Card",
"description": "Single feature card with icon, title, body and per-card neon edge glow.",
"type": "object",
"properties": {
"icon": {
"type": "string",
"title": "Icon",
"description": "Media reference for the feature icon",
"x-editor": "media"
},
"title": {
"type": "string",
"title": "Title",
"description": "Card heading",
"x-editor": "text"
},
"body": {
"type": "string",
"title": "Body",
"description": "Supporting rich text",
"x-editor": "richtext"
},
"accent": {
"type": "string",
"title": "Accent",
"description": "Neon edge colour: magenta, cyan or lime",
"x-editor": "select",
"enum": ["magenta", "cyan", "lime"],
"default": "magenta"
}
}
}