From acf90d56d5916d4657964f342ef7bd5fbed75829 Mon Sep 17 00:00:00 2001 From: Oliver Date: Sat, 17 Oct 2020 00:38:43 +0200 Subject: [PATCH] Fixed a typo. --- style.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.go b/style.go index 4fdb5e0..8359e28 100644 --- a/style.go +++ b/style.go @@ -131,7 +131,7 @@ func (s Style) StrikeThrough(on bool) Style { func (s Style) Attributes(attrs AttrMask) Style { return Style{ fg: s.fg, - bg: s.fg, + bg: s.bg, attrs: attrs, } }