From 7584d824b842542fd68692776d2bada033a7e01e Mon Sep 17 00:00:00 2001 From: OblivionSword Date: Mon, 11 Aug 2025 23:47:31 +0200 Subject: [PATCH] remove unused color in card count --- ts/routes/graphs/card-counts.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/ts/routes/graphs/card-counts.ts b/ts/routes/graphs/card-counts.ts index c7c1405ec..2ea7f9c5f 100644 --- a/ts/routes/graphs/card-counts.ts +++ b/ts/routes/graphs/card-counts.ts @@ -18,9 +18,6 @@ import { schemeGreens, schemeOranges, schemeReds, - schemePuRd, - schemePurples, - schemeBuPu, select, sum, } from "d3"; @@ -39,19 +36,12 @@ let barColours; if((window as any).colorBlindMode) { barColours = [ - //schemeBlues[5][2], /* new */ "#88CCEE", /* new */ - //schemeOranges[5][2], /* learn */ "#44AA99", /* learn */ - //schemePuRd[9][7], /* relearn */ "#117733", /* relearn */ - //schemePurples[7][4], /* young */ "#CC6677", /* young */ - //schemeBuPu[8][6], /* mature */ "#882255", /* mature */ - //"#00FF60", /* suspended */ "#DDCC77", /* suspended */ - //"#1F1F1F", /* buried */ "#332288", /* buried */ ]; }