From b09191a375e85ba1108188f8ca18e760fb92742d Mon Sep 17 00:00:00 2001 From: i582 Date: Fri, 9 Apr 2021 10:39:56 +0300 Subject: [PATCH] internal: fixed background hex color --- internal/style.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/style.go b/internal/style.go index 24c27aa..236a88f 100644 --- a/internal/style.go +++ b/internal/style.go @@ -39,7 +39,7 @@ func ApplyStyle(text, style string) (string, error) { if err != nil { return "", err } - text = hexBackgroundColorFunc(style, text) + text = hexBackgroundColorFunc(rawHex, text) return text, nil }