From 4d95a5c7c2fa7389e5e63ba64b20ff3af5554549 Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Sun, 15 Jun 2025 15:56:05 -0400 Subject: [PATCH] Update README example --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 84dd407..44e0e4a 100644 --- a/README.md +++ b/README.md @@ -55,12 +55,11 @@ func helloWorld() { fmt.Println("Hello world") }` - result, err := ansi.Colorize(inputString, "go") + result, err := ansi.Colorize(inputString, "go", 171) if err != nil { fmt.Println("Failed to colorize input: " + err.Error()) os.Exit(1) } fmt.Println(result) } - ```