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

@@ -37,7 +37,7 @@
.greenSlider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
background: #00ff00;
background: #66ff77;
border-radius: 50%;
width: 15px;
height: 15px;
@@ -45,7 +45,7 @@
}
.greenSlider::-moz-range-thumb {
background: #00ff00;
background: #66ff77;
border-radius: 50%;
width: 15px;
height: 15px;
@@ -67,7 +67,7 @@
.redSlider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
background: #ff0000;
background: #ee0000;
border-radius: 50%;
width: 15px;
height: 15px;
@@ -75,7 +75,7 @@
}
.redSlider::-moz-range-thumb {
background: #ff0000;
background: #ee0000;
border-radius: 50%;
width: 15px;
height: 15px;
@@ -109,9 +109,9 @@
var ctx = c.getContext("2d");
c.width = window.innerWidth;
c.height = window.innerHeight;
var clx = "#ff0000";
var clw = "#00ff00";
var clz = "#0000ff";
var clx = "#ee0000";
var clw = "#66ff77";
var clz = "#9999ff";
var wR = 0;
var wRSlider = document.getElementById("wRSlider");
var wI = 0;