chore(ui): common: remove unused style config

Ayman Bagabas created

Change summary

pkg/ui/common/style.go | 7 -------
1 file changed, 7 deletions(-)

Detailed changes

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