Accessibility colors

This commit is contained in:
2021-08-19 17:45:00 -07:00
parent eb9808ecba
commit 18a73d5392
14 changed files with 46 additions and 46 deletions

View File

@@ -110,7 +110,7 @@
{
for (n = -nn/2; n <= -1; n++)
{
ctx.strokeStyle = "#ff0000";
ctx.strokeStyle = "#ee0000";
ctx.beginPath();
ctx.moveTo(xPos + 100 * n / nn, yPos + 20 * (y(n - t) + r * y(-n -t)) + 50);
ctx.lineTo(xPos + 100 * (n + 1) / nn, yPos + 20 * (y(n + 1 - t) + r * y( - n - 1 - t)) + 50);
@@ -118,7 +118,7 @@
}
if (eps == 0)
{
ctx.strokeStyle = "#0000ff";
ctx.strokeStyle = "#9999ff";
ctx.beginPath();
ctx.moveTo(xPos, yPos + 20 * tau * y(-t) + 50);
ctx.lineTo(xPos + 50, yPos + 20 * tau * y(-t) + 50);
@@ -127,7 +127,7 @@
{
for (n = 0; n <= eps * nn / 2 - 1; n++)
{
ctx.strokeStyle = "#0000ff";
ctx.strokeStyle = "#9999ff";
ctx.beginPath();
ctx.moveTo(xPos + 100 * n / nn / eps, yPos + 20 * tau * y(n-t) + 50);
ctx.lineTo(xPos + 100 * (n + 1) / nn / eps, yPos + 20 * tau * y((n + 1)-t) + 50);