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,
force: !noForce
})
ctx.fillStyle = "#000"
ctx.fillStyle = "transparent"
ctx.fillRect(0, 0, w, h)
}
if(config.cached){

View File

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