From 0d1175fdb3ceaa061cfbcae2873a258c56f11616 Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Mon, 16 Sep 2024 11:36:44 -0400 Subject: [PATCH] Update example/main.go --- example/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/main.go b/example/main.go index c06a676..7958095 100644 --- a/example/main.go +++ b/example/main.go @@ -48,7 +48,7 @@ func main() { // But really, who has time to convert? Not you? Well, kiddo, here's // a magical writer that will just auto-convert whatever ANSI you throw at // it to the appropriate color profile. - myFancyANSI := "\x1b[38;2;107;80;255mCute puppy!!\x1b[m" + myFancyANSI := "\x1b[38;2;107;80;255mCute \x1b[1;3mpuppy!!\x1b[m" w := colorprofile.NewWriter(os.Stdout, os.Environ()) w.Println("This terminal:", myFancyANSI)