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>
30 lines
786 B
JSON
30 lines
786 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "LCARS Panel",
|
|
"description": "Framed content area with LCARS border treatment",
|
|
"type": "object",
|
|
"properties": {
|
|
"title": {
|
|
"type": "string",
|
|
"title": "Panel Title",
|
|
"description": "Title shown in the panel header bar",
|
|
"x-editor": "text"
|
|
},
|
|
"content": {
|
|
"type": "string",
|
|
"title": "Content",
|
|
"description": "Panel body content (HTML)",
|
|
"x-editor": "richtext"
|
|
},
|
|
"border_color": {
|
|
"type": "string",
|
|
"title": "Border Color",
|
|
"description": "Which theme color for the panel border",
|
|
"enum": ["primary", "secondary", "accent"],
|
|
"default": "primary",
|
|
"x-editor": "select"
|
|
}
|
|
},
|
|
"required": ["title"]
|
|
}
|