mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 15:32: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)
|
||||
{
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue