From 76e04fbdfae00b8f29a29442ac1f1511a7cb6f7f Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Mon, 27 Apr 2020 19:39:07 +0200 Subject: [PATCH] update comment --- src/theme.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/theme.js b/src/theme.js index b7fbe40df4..ab5974f207 100644 --- a/src/theme.js +++ b/src/theme.js @@ -148,7 +148,7 @@ function setCustomThemeVars(customTheme) { function setCSSVariable(name, hexColor, doPct = true) { style.setProperty(`--${name}`, hexColor); if (doPct) { - // uses #rrggbbaa to define the color with alpha values at 0% and 50% + // uses #rrggbbaa to define the color with alpha values at 0%, 15% and 50% style.setProperty(`--${name}-0pct`, hexColor + "00"); style.setProperty(`--${name}-15pct`, hexColor + "26"); style.setProperty(`--${name}-50pct`, hexColor + "7F");