summaryrefslogtreecommitdiffhomepage
path: root/internal
diff options
context:
space:
mode:
authoradamdottv <[email protected]>2025-05-01 06:43:59 -0500
committeradamdottv <[email protected]>2025-05-01 06:43:59 -0500
commit8819a37a05d9957c28a97f4628852953b35ab17b (patch)
treef63c7b4d6fa521e1314bb65fc20134a668450b8b /internal
parent769dff00ba8d643ffca7eaf772ddace4192b7fb3 (diff)
downloadopencode-8819a37a05d9957c28a97f4628852953b35ab17b.tar.gz
opencode-8819a37a05d9957c28a97f4628852953b35ab17b.zip
fix: logo
Diffstat (limited to 'internal')
-rw-r--r--internal/tui/components/chat/chat.go2
-rw-r--r--internal/tui/styles/icons.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/internal/tui/components/chat/chat.go b/internal/tui/components/chat/chat.go
index 06012dc8d..8623b3d7b 100644
--- a/internal/tui/components/chat/chat.go
+++ b/internal/tui/components/chat/chat.go
@@ -96,7 +96,7 @@ func lspsConfigured(width int) string {
}
func logo(width int) string {
- logo := fmt.Sprintf("%s%s", styles.OpenCodeIcon, "OpenCode")
+ logo := fmt.Sprintf("%s %s", styles.OpenCodeIcon, "OpenCode")
t := theme.CurrentTheme()
baseStyle := styles.BaseStyle()
diff --git a/internal/tui/styles/icons.go b/internal/tui/styles/icons.go
index e71080275..a79ef8bb4 100644
--- a/internal/tui/styles/icons.go
+++ b/internal/tui/styles/icons.go
@@ -1,7 +1,7 @@
package styles
const (
- OpenCodeIcon string = "⌬"
+ OpenCodeIcon string = "ⓒ"
ErrorIcon string = "ⓧ"
WarningIcon string = "ⓦ"