From 0116aa2cfb2ee9a9d04caf4c478a585da39d78a7 Mon Sep 17 00:00:00 2001 From: George <31376482+george-gca@users.noreply.github.com> Date: Sun, 5 Mar 2023 14:40:04 -0300 Subject: [PATCH] typo: Fixed missing param in comment (#144) --- src/const/theme.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/const/theme.ts b/src/const/theme.ts index fd945be5b..05a411606 100644 --- a/src/const/theme.ts +++ b/src/const/theme.ts @@ -29,7 +29,7 @@ export class Theme { // Set up themes // We support short hex color, hex color and RGBA hex -// ThemeMap.set(name, new Theme('title', 'text', 'background', 'stroke', 'icon', 'chart')); +// ThemeMap.set(name, new Theme('title', 'text', 'background', 'stroke', 'strokeOpacity', 'icon', 'chart')); ThemeMap.set('2077', new Theme('#ff0055', '#03d8f3', '#141321', '#141321', 1, '#fcee0c', '#00ffc8')); ThemeMap.set('algolia', new Theme('#00aeff', '#ffffff', '#050f2c', '#000000', 0, '#2dde98', '#00aeff')); ThemeMap.set('apprentice', new Theme('#ffffff', '#bcbcbc', '#262626', '#000000', 0, '#ffffaf', '#ffffff'));