First-class pongo2 theme with 4 color presets (Federation, Red Alert, Sickbay, Engineering), 3 custom blocks (header, sidebar, panel), 2 page templates, heading/text overrides, email wrapper, bundled Antonio font, and full LCARS CSS with elbow brackets, pill buttons, and rounded bars. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "LCARS Header",
|
|
"description": "Top bar with elbow bracket, status indicators, and stardate",
|
|
"type": "object",
|
|
"properties": {
|
|
"title": {
|
|
"type": "string",
|
|
"title": "Title",
|
|
"description": "Main display title",
|
|
"x-editor": "text"
|
|
},
|
|
"subtitle": {
|
|
"type": "string",
|
|
"title": "Subtitle",
|
|
"description": "Secondary text below the title",
|
|
"x-editor": "text"
|
|
},
|
|
"stardate": {
|
|
"type": "string",
|
|
"title": "Stardate",
|
|
"description": "Stardate display (leave empty for auto)",
|
|
"x-editor": "text"
|
|
},
|
|
"status": {
|
|
"type": "string",
|
|
"title": "Status",
|
|
"description": "System status indicator",
|
|
"enum": ["online", "standby", "alert", "offline"],
|
|
"default": "online",
|
|
"x-editor": "select"
|
|
},
|
|
"menu_name": {
|
|
"type": "string",
|
|
"title": "Menu Name",
|
|
"description": "Navigation menu to display",
|
|
"x-editor": "text"
|
|
}
|
|
},
|
|
"required": ["title"]
|
|
}
|