From 806553b23e40155b5c4ad53ce3129cad7bd26c45 Mon Sep 17 00:00:00 2001 From: OblivionSword Date: Mon, 11 Aug 2025 23:41:18 +0200 Subject: [PATCH] change card count color blind pallete to tol colors --- ts/routes/graphs/card-counts.ts | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/ts/routes/graphs/card-counts.ts b/ts/routes/graphs/card-counts.ts index f69ed3c1b..c7c1405ec 100644 --- a/ts/routes/graphs/card-counts.ts +++ b/ts/routes/graphs/card-counts.ts @@ -39,13 +39,20 @@ let barColours; if((window as any).colorBlindMode) { barColours = [ - schemeBlues[5][2], /* new */ - schemeOranges[5][2], /* learn */ - schemePuRd[9][7], /* relearn */ - schemePurples[7][4], /* young */ - schemeBuPu[8][6], /* mature */ - "#00FF60", /* suspended */ - "#1F1F1F", /* buried */ + //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 */ ]; } else