From 527e0d8aef3800cd05804717efeb0c4f41a37219 Mon Sep 17 00:00:00 2001 From: QxBytes <39818795+QxBytes@users.noreply.github.com> Date: Mon, 24 May 2021 21:40:59 -0700 Subject: [PATCH] Update Color.gs --- Color.gs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Color.gs b/Color.gs index ce2f94c..18c961b 100644 --- a/Color.gs +++ b/Color.gs @@ -46,7 +46,7 @@ function colorImage(width=70) { } let select = Math.floor(line * ratio) * width + visible; if (select < data.length && data[select] !== "" && data[select] !== undefined) { - txtObj.setForegroundColor(index, index, data[select]); + txtObj.setBackgroundColor(index, index, data[select]); } visible++; }, doc);