mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
remove unused color in card count
This commit is contained in:
parent
806553b23e
commit
7584d824b8
1 changed files with 0 additions and 10 deletions
|
@ -18,9 +18,6 @@ import {
|
||||||
schemeGreens,
|
schemeGreens,
|
||||||
schemeOranges,
|
schemeOranges,
|
||||||
schemeReds,
|
schemeReds,
|
||||||
schemePuRd,
|
|
||||||
schemePurples,
|
|
||||||
schemeBuPu,
|
|
||||||
select,
|
select,
|
||||||
sum,
|
sum,
|
||||||
} from "d3";
|
} from "d3";
|
||||||
|
@ -39,19 +36,12 @@ let barColours;
|
||||||
if((window as any).colorBlindMode)
|
if((window as any).colorBlindMode)
|
||||||
{
|
{
|
||||||
barColours = [
|
barColours = [
|
||||||
//schemeBlues[5][2], /* new */
|
|
||||||
"#88CCEE", /* new */
|
"#88CCEE", /* new */
|
||||||
//schemeOranges[5][2], /* learn */
|
|
||||||
"#44AA99", /* learn */
|
"#44AA99", /* learn */
|
||||||
//schemePuRd[9][7], /* relearn */
|
|
||||||
"#117733", /* relearn */
|
"#117733", /* relearn */
|
||||||
//schemePurples[7][4], /* young */
|
|
||||||
"#CC6677", /* young */
|
"#CC6677", /* young */
|
||||||
//schemeBuPu[8][6], /* mature */
|
|
||||||
"#882255", /* mature */
|
"#882255", /* mature */
|
||||||
//"#00FF60", /* suspended */
|
|
||||||
"#DDCC77", /* suspended */
|
"#DDCC77", /* suspended */
|
||||||
//"#1F1F1F", /* buried */
|
|
||||||
"#332288", /* buried */
|
"#332288", /* buried */
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue