feat(tui): theme override with OPENCODE_THEME

This commit is contained in:
adamelmore
2025-07-21 08:56:45 -05:00
parent cd0b2ae032
commit bb17d14665
2 changed files with 5 additions and 2 deletions

View File

@@ -70,7 +70,6 @@ func main() {
}()
// Create main context for the application
app_, err := app.New(ctx, version, appInfo, modes, httpClient, model, prompt, mode)
if err != nil {
panic(err)
@@ -79,7 +78,6 @@ func main() {
program := tea.NewProgram(
tui.NewModel(app_),
tea.WithAltScreen(),
// tea.WithKeyboardEnhancements(),
tea.WithMouseCellMotion(),
)