From a9140d3a46342877319917223dd8e54a9d500c6e Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Thu, 3 Jul 2025 13:18:29 -0400 Subject: [PATCH] chore(ui): common: remove unused style config --- pkg/ui/common/style.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pkg/ui/common/style.go b/pkg/ui/common/style.go index be73b4258c75eb17ccfe23ad958592fa9cfb8377..1f2032f8b5e0ffbb12c067427c397e34dc55944b 100644 --- a/pkg/ui/common/style.go +++ b/pkg/ui/common/style.go @@ -17,13 +17,6 @@ func strptr(s string) *string { func StyleConfig() gansi.StyleConfig { noColor := strptr("") s := styles.DarkStyleConfig - // s.H1.BackgroundColor = noColor - // s.H1.Prefix = "# " - // s.H1.Suffix = "" - // s.H1.Color = strptr("39") - // s.Document.StylePrimitive.Color = noColor - // s.CodeBlock.Chroma.Text.Color = noColor - // s.CodeBlock.Chroma.Name.Color = noColor // This fixes an issue with the default style config. For example // highlighting empty spaces with red in Dockerfile type. s.CodeBlock.Chroma.Error.BackgroundColor = noColor