From f3547450fab91331193d0bc5d7e69e3531be1456 Mon Sep 17 00:00:00 2001 From: Wolfgang <39681420+LucasWolfgang@users.noreply.github.com> Date: Sun, 17 Apr 2022 11:22:56 -0300 Subject: [PATCH] Update index.js Reduce the lightness from 50% to 40%. --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 7b45337..df87a9a 100644 --- a/index.js +++ b/index.js @@ -45,7 +45,7 @@ try { } else { hue = Math.floor((max - val) / (max - min) * 120); } - content.color = "hsl(" + hue + ", 100%, 50%)"; + content.color = "hsl(" + hue + ", 100%, 40%)"; } else if (color != '') { content.color = color; }