diff --git a/internal/view/log.go b/internal/view/log.go index 3fdc49ff2c..a5df9bceff 100644 --- a/internal/view/log.go +++ b/internal/view/log.go @@ -453,7 +453,7 @@ func (l *Log) clearCmd(*tcell.EventKey) *tcell.EventKey { func (l *Log) markCmd(*tcell.EventKey) *tcell.EventKey { _, _, w, _ := l.GetRect() - fmt.Fprintf(l.ansiWriter, "\n[white:-:b]%s[-:-:-]", strings.Repeat("─", w-4)) + fmt.Fprintf(l.ansiWriter, "\n[%s:-:b]%s[-:-:-]", l.app.Styles.Views().Log.FgColor.String(), strings.Repeat("─", w-4)) l.follow = true return nil