themes-cyberpunk/schemas/stats_glow.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

39 lines
1.0 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Glow Stats",
"description": "Big mono numerals with accent underline and short labels.",
"type": "object",
"properties": {
"items": {
"type": "array",
"title": "Items",
"description": "Stats to display",
"default": [],
"x-editor": "collection",
"items": {
"type": "object",
"properties": {
"value": {
"type": "string",
"title": "Value",
"description": "Big numeric or string value (e.g. 99.99)",
"x-editor": "text"
},
"label": {
"type": "string",
"title": "Label",
"description": "Short uppercase caption beneath the value",
"x-editor": "text"
},
"suffix": {
"type": "string",
"title": "Suffix",
"description": "Trailing unit or symbol (e.g. % or ms), accent-coloured",
"x-editor": "text"
}
}
}
}
}
}