summaryrefslogtreecommitdiffhomepage
path: root/packages/tui/internal/theme
diff options
context:
space:
mode:
Diffstat (limited to 'packages/tui/internal/theme')
-rw-r--r--packages/tui/internal/theme/manager.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/tui/internal/theme/manager.go b/packages/tui/internal/theme/manager.go
index 583e8c491..420b96dea 100644
--- a/packages/tui/internal/theme/manager.go
+++ b/packages/tui/internal/theme/manager.go
@@ -93,14 +93,14 @@ func AvailableThemes() []string {
names = append(names, name)
}
slices.SortFunc(names, func(a, b string) int {
- if a == "system" {
+ if a == "opencode" {
return -1
- } else if b == "system" {
+ } else if b == "opencode" {
return 1
}
- if a == "opencode" {
+ if a == "system" {
return -1
- } else if b == "opencode" {
+ } else if b == "system" {
return 1
}
return strings.Compare(a, b)