mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 23:42:23 -04:00
Merge branch 'accessibility-color-blind' of https://github.com/David-Brenn/anki into accessibility-color-blind
This commit is contained in:
commit
f92cb2edb5
1 changed files with 14 additions and 7 deletions
|
@ -39,13 +39,20 @@ let barColours;
|
||||||
if((window as any).colorBlindMode)
|
if((window as any).colorBlindMode)
|
||||||
{
|
{
|
||||||
barColours = [
|
barColours = [
|
||||||
schemeBlues[5][2], /* new */
|
//schemeBlues[5][2], /* new */
|
||||||
schemeOranges[5][2], /* learn */
|
"#88CCEE", /* new */
|
||||||
schemePuRd[9][7], /* relearn */
|
//schemeOranges[5][2], /* learn */
|
||||||
schemePurples[7][4], /* young */
|
"#44AA99", /* learn */
|
||||||
schemeBuPu[8][6], /* mature */
|
//schemePuRd[9][7], /* relearn */
|
||||||
"#00FF60", /* suspended */
|
"#117733", /* relearn */
|
||||||
"#1F1F1F", /* buried */
|
//schemePurples[7][4], /* young */
|
||||||
|
"#CC6677", /* young */
|
||||||
|
//schemeBuPu[8][6], /* mature */
|
||||||
|
"#882255", /* mature */
|
||||||
|
//"#00FF60", /* suspended */
|
||||||
|
"#DDCC77", /* suspended */
|
||||||
|
//"#1F1F1F", /* buried */
|
||||||
|
"#332288", /* buried */
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue