diff --git a/css/index.css b/css/index.css
index cdb9178..f0f18fb 100644
--- a/css/index.css
+++ b/css/index.css
@@ -173,7 +173,8 @@ button.tool:hover {
}
.strokeText {
- -webkit-text-stroke: 1px #888;
+ -webkit-text-stroke: 1px #000;
font-size: 150%;
- color: #000;
+ font-weight: 600;
+ color: #fff;
}
diff --git a/js/index.js b/js/index.js
index 23acc59..9467aa4 100644
--- a/js/index.js
+++ b/js/index.js
@@ -238,8 +238,8 @@ function imageAcceptReject(x, y, data) {
div.style.position = "absolute";
div.style.left = parseInt(x) + "px";
div.style.top = parseInt(y + data.parameters.height) + "px";
- div.style.width = "150px";
- div.style.height = "50px";
+ div.style.width = "200px";
+ div.style.height = "70px";
div.innerHTML =
' of ';
document.getElementById("tempDiv").appendChild(div);
@@ -397,7 +397,7 @@ function march() {
function drawMarchingAnts() {
clearTargetMask();
- tgtCtx.strokeStyle = "#333333FF"; //"#55000077";
+ tgtCtx.strokeStyle = "#FFFFFFFF"; //"#55000077";
tgtCtx.setLineDash([4, 2]);
tgtCtx.lineDashOffset = -marchOffset;
tgtCtx.strokeRect(marchCoords.x, marchCoords.y, marchCoords.w, marchCoords.h);