From 49037e7b28b9f76e32cef99e81ba33e2832290a5 Mon Sep 17 00:00:00 2001 From: adamdottv <2363879+adamdottv@users.noreply.github.com> Date: Fri, 2 May 2025 11:34:38 -0500 Subject: feat: better logs page --- internal/tui/styles/styles.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'internal/tui/styles') 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() } - -- cgit v1.2.3