Skip to content

Commit c72bec2

Browse files
committed
fix: add white circle to favicon generation for improved visibility
1 parent 9cd0971 commit c72bec2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

dist/index.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2131,6 +2131,11 @@ <h2 class="subtitle support__title">Support</h2>
21312131
context.fill();
21322132
}
21332133

2134+
context.beginPath();
2135+
context.arc(0 + centerX, 0 + centerY, radius * 0.35, 0, 2 * Math.PI);
2136+
context.fillStyle = `rgb(255 255 255 / 1)`;
2137+
context.fill();
2138+
21342139

21352140
$favicon.href = $can.toDataURL('image/png');
21362141
}

0 commit comments

Comments
 (0)