From 61b605e724eb4cc50ab831534fcdd18e031d68eb Mon Sep 17 00:00:00 2001 From: adamdottv <2363879+adamdottv@users.noreply.github.com> Date: Mon, 28 Apr 2025 08:46:09 -0500 Subject: feat: themes --- cmd/schema/main.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'cmd') diff --git a/cmd/schema/main.go b/cmd/schema/main.go index cd550d3fe..10767f525 100644 --- a/cmd/schema/main.go +++ b/cmd/schema/main.go @@ -98,6 +98,19 @@ func generateSchema() map[string]any { }, } + schema["properties"].(map[string]any)["tui"] = map[string]any{ + "type": "object", + "description": "Terminal User Interface configuration", + "properties": map[string]any{ + "theme": map[string]any{ + "type": "string", + "description": "TUI theme name", + "default": "catppuccin", + "enum": []string{"catppuccin", "gruvbox"}, // Will be expanded as new themes are added + }, + }, + } + // Add MCP servers schema["properties"].(map[string]any)["mcpServers"] = map[string]any{ "type": "object", -- cgit v1.2.3