transparent song frame

This commit is contained in:
Your Name 2023-09-01 19:49:55 +09:00 committed by yuuki
parent a4c14bd6ea
commit e9721f3415
2 changed files with 5 additions and 5 deletions

View File

@ -153,7 +153,7 @@
y: 5, y: 5,
force: !noForce force: !noForce
}) })
ctx.fillStyle = "#000" ctx.fillStyle = "transparent"
ctx.fillRect(0, 0, w, h) ctx.fillRect(0, 0, w, h)
} }
if(config.cached){ if(config.cached){

View File

@ -72,10 +72,10 @@ class SongSelect{
}, },
"default": { "default": {
sort: null, sort: null,
background: `#${Math.floor(Math.random() * 0xFFFFFF).toString(16).padStart(6, "0")}`, background: "transparent",
border: [`#${Math.floor(Math.random() * 0xFFFFFF).toString(16).padStart(6, "0")}`, `#${Math.floor(Math.random() * 0xFFFFFF).toString(16).padStart(6, "0")}`], border: ["transparent", "transparent"],
outline: "#656565", outline: "transparent",
infoFill: `#${Math.floor(Math.random() * 0xFFFFFF).toString(16).padStart(6, "0")}` infoFill: "transparent"
} }
} }