Update urls and colors

This commit is contained in:
yuuki 2024-01-01 02:42:01 +00:00
parent bebef0d7d3
commit e09831dfcb

View File

@ -73,15 +73,15 @@ class SongSelect{
// カスタム曲スキン // カスタム曲スキン
"sourceCode": { "sourceCode": {
sort: 0, sort: 0,
background: "blue", background: "#1c1c1c",
border: ["lightblue", "darkblue"], border: ["#000000", "#333333"],
outline: "darkblue", outline: "#222222",
}, },
"upload": { "upload": {
sort: 0, sort: 0,
background: "gold", background: "#ffe57f",
border: ["lightgold", "darkgold"], border: ["#ffd54f", "#ff9800"],
outline: "darkgold", outline: "#ffab40",
}, },
"default": { "default": {
sort: null, sort: null,
@ -827,12 +827,12 @@ class SongSelect{
else if (currentSong.action === "sourceCode") { else if (currentSong.action === "sourceCode") {
this.playSound("se_don"); this.playSound("se_don");
setTimeout(() => { setTimeout(() => {
open("https://codeberg.org/mofusky/play-taiko-web","_blank"); open("https://github.com/yuukialpha/taiko-web","_blank");
}, 500); }, 500);
} else if (currentSong.action === "upload") { } else if (currentSong.action === "upload") {
this.playSound("se_don"); this.playSound("se_don");
setTimeout(() => { setTimeout(() => {
open("https://upload.yuuk1.tk/","_blank"); open("https://upload.taikoapp.uk/","_blank");
}, 500); }, 500);
} }
} }