themes-lcars/schemas/lcars_sidebar.schema.json
Alex Dunmow e992d8247d feat: LCARS theme plugin — Star Trek computer interface
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>
2026-06-02 23:11:11 +08:00

34 lines
828 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "LCARS Sidebar",
"description": "Left panel with rounded-rectangle navigation buttons",
"type": "object",
"properties": {
"items": {
"type": "array",
"title": "Navigation Items",
"description": "List of sidebar navigation buttons",
"items": {
"type": "object",
"properties": {
"label": {
"type": "string",
"title": "Label"
},
"url": {
"type": "string",
"title": "URL"
},
"color": {
"type": "string",
"title": "Color",
"enum": ["primary", "secondary", "accent"],
"default": "primary"
}
},
"required": ["label", "url"]
}
}
}
}