Changed stroke color of menu

This commit is contained in:
Amy Grinn 2024-12-17 12:33:36 -05:00
parent 06a982747e
commit 6aed092c24
No known key found for this signature in database
GPG key ID: 6B558BED1DCF3192
3 changed files with 10 additions and 3 deletions

View file

@ -67,6 +67,7 @@ window.addEventListener("load", async () => {
getContext: (elem, type) => elem.getContext(type),
setGlobalAlpha: (ctx, alpha) => ctx.globalAlpha = alpha,
setFillColor: (ctx, color) => ctx.fillStyle = color,
setStrokeColor: (ctx, color) => ctx.strokeStyle = color,
setFont: (ctx, font) => ctx.font = font,
setTextAlign: (ctx, align) => ctx.textAlign = align,
clearRect: (ctx, x, y, w, h) => ctx.clearRect(x, y, w, h),