summaryrefslogtreecommitdiffhomepage
path: root/internal/tui/styles
diff options
context:
space:
mode:
authorKujtim Hoxha <[email protected]>2025-03-23 15:17:51 +0100
committerKujtim Hoxha <[email protected]>2025-03-23 15:17:51 +0100
commit796bbf4d66c0fc70e750c7f582019cb9a7298e59 (patch)
treeb2973e9b17191fbb96a259b3f8efe7c1071ecbf5 /internal/tui/styles
parent7844cacb257b14087bcb12764466ee0eeeb1921b (diff)
downloadopencode-796bbf4d66c0fc70e750c7f582019cb9a7298e59.tar.gz
opencode-796bbf4d66c0fc70e750c7f582019cb9a7298e59.zip
small size fix and colors added
Diffstat (limited to 'internal/tui/styles')
-rw-r--r--internal/tui/styles/styles.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/tui/styles/styles.go b/internal/tui/styles/styles.go
index a52a8a2eb..457c555d0 100644
--- a/internal/tui/styles/styles.go
+++ b/internal/tui/styles/styles.go
@@ -18,6 +18,7 @@ var (
Border = Regular.Border(lipgloss.NormalBorder())
ThickBorder = Regular.Border(lipgloss.ThickBorder())
DoubleBorder = Regular.Border(lipgloss.DoubleBorder())
+
// Colors
Surface0 = lipgloss.AdaptiveColor{
@@ -118,4 +119,7 @@ var (
Dark: dark.Peach().Hex,
Light: light.Peach().Hex,
}
+
+ Primary = Blue
+ Secondary = Mauve
)