diff options
Diffstat (limited to 'internal/tui/styles')
| -rw-r--r-- | internal/tui/styles/styles.go | 5 |
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() } - |
