diff options
| author | adamdottv <[email protected]> | 2025-05-28 15:36:31 -0500 |
|---|---|---|
| committer | adamdottv <[email protected]> | 2025-05-28 15:36:36 -0500 |
| commit | 9d7c5efb9b0b60c62aef3777b65b458a31ebbc88 (patch) | |
| tree | 0f5acb5b8093d872b30178ded53df719be40cf44 /internal/tui/styles | |
| parent | 8863a499a9e311a48d6ab8bc05d267fb2a01f060 (diff) | |
| download | opencode-9d7c5efb9b0b60c62aef3777b65b458a31ebbc88.tar.gz opencode-9d7c5efb9b0b60c62aef3777b65b458a31ebbc88.zip | |
wip: refactoring tui
Diffstat (limited to 'internal/tui/styles')
| -rw-r--r-- | internal/tui/styles/icons.go | 2 | ||||
| -rw-r--r-- | internal/tui/styles/styles.go | 6 |
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() |
