summaryrefslogtreecommitdiffhomepage
path: root/internal/tui/styles
diff options
context:
space:
mode:
authoradamdottv <[email protected]>2025-05-02 11:34:38 -0500
committerAdam <[email protected]>2025-05-02 15:24:47 -0500
commit49037e7b28b9f76e32cef99e81ba33e2832290a5 (patch)
tree60f5cc8c08f9c405f91420698057cf7a79cf2894 /internal/tui/styles
parentc66832d2992205ad226d7e3f50ee7676f3519724 (diff)
downloadopencode-49037e7b28b9f76e32cef99e81ba33e2832290a5.tar.gz
opencode-49037e7b28b9f76e32cef99e81ba33e2832290a5.zip
feat: better logs page
Diffstat (limited to 'internal/tui/styles')
-rw-r--r--internal/tui/styles/styles.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/internal/tui/styles/styles.go b/internal/tui/styles/styles.go
index 1d6cf80d5..b2d83a523 100644
--- a/internal/tui/styles/styles.go
+++ b/internal/tui/styles/styles.go
@@ -20,6 +20,10 @@ func Regular() lipgloss.Style {
return lipgloss.NewStyle()
}
+func Muted() lipgloss.Style {
+ return lipgloss.NewStyle().Foreground(theme.CurrentTheme().TextMuted())
+}
+
// Bold returns a bold style
func Bold() lipgloss.Style {
return Regular().Bold(true)
@@ -149,4 +153,3 @@ func BorderFocusedColor() lipgloss.AdaptiveColor {
func BorderDimColor() lipgloss.AdaptiveColor {
return theme.CurrentTheme().BorderDim()
}
-