1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2024-12-22 04:40:20 +01:00

Fix alpha value in canvasAPI.js

This commit is contained in:
kkapsner 2020-06-27 11:45:23 +02:00
parent d8b5ba0744
commit 21a950565f

View File

@ -15,7 +15,7 @@ const canvasAPI = {
context.fillRect(125, 1, 62, 20);
context.fillStyle = "#069";
context.fillText(fingerprintText, 2, 15);
context.fillStyle = "rgba(102, 204, 0, 07)";
context.fillStyle = "rgba(102, 204, 0, 0.7)";
context.fillText(fingerprintText, 4, 17);
return context;