summaryrefslogtreecommitdiffhomepage
path: root/internal/tui/styles
diff options
context:
space:
mode:
authoradamdottv <[email protected]>2025-05-28 15:36:31 -0500
committeradamdottv <[email protected]>2025-05-28 15:36:36 -0500
commit9d7c5efb9b0b60c62aef3777b65b458a31ebbc88 (patch)
tree0f5acb5b8093d872b30178ded53df719be40cf44 /internal/tui/styles
parent8863a499a9e311a48d6ab8bc05d267fb2a01f060 (diff)
downloadopencode-9d7c5efb9b0b60c62aef3777b65b458a31ebbc88.tar.gz
opencode-9d7c5efb9b0b60c62aef3777b65b458a31ebbc88.zip
wip: refactoring tui
Diffstat (limited to 'internal/tui/styles')
-rw-r--r--internal/tui/styles/icons.go2
-rw-r--r--internal/tui/styles/styles.go6
2 files changed, 1 insertions, 7 deletions
diff --git a/internal/tui/styles/icons.go b/internal/tui/styles/icons.go
index 6f9af6a5b..8ff5fe8bf 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 = "ⓦ"
diff --git a/internal/tui/styles/styles.go b/internal/tui/styles/styles.go
index d1b5a92bf..91661a1dd 100644
--- a/internal/tui/styles/styles.go
+++ b/internal/tui/styles/styles.go
@@ -5,12 +5,6 @@ import (
"github.com/sst/opencode/internal/tui/theme"
)
-var (
- ImageBakcground = "#212121"
-)
-
-// Style generation functions that use the current theme
-
// BaseStyle returns the base style with background and foreground colors
func BaseStyle() lipgloss.Style {
t := theme.CurrentTheme()