From 977e4ce6e4c02b81bce92852222a466153c6b2f4 Mon Sep 17 00:00:00 2001 From: John Costa Date: Thu, 5 Jun 2025 10:24:59 +0100 Subject: [PATCH] fix: dark mode styles --- main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 50d0c8c..ffc77e3 100644 --- a/main.go +++ b/main.go @@ -128,9 +128,10 @@ func initialModel(renderer *lipgloss.Renderer, w int, h int) model { glamourRenderWidth := w - vp.Style.GetHorizontalFrameSize() - glamourGutter termRenderer, err := glamour.NewTermRenderer( - glamour.WithAutoStyle(), + glamour.WithStandardStyle("dark"), glamour.WithWordWrap(glamourRenderWidth), ) + if err != nil { panic(err) }