💄 调整UP四星颜色

This commit is contained in:
目棃
2024-11-01 13:51:13 +08:00
parent 8df9370932
commit 7b5bf201ce

View File

@@ -63,7 +63,8 @@ function getEndHint(): string {
}
const progressColor = computed<string>(() => {
if (hint === "UP") return "var(--tgc-od-orange)";
if (hint === "UP" && props.data.rank === "5") return "var(--tgc-od-orange)";
if (hint === "UP" && props.data.rank === "4") return "var(--tgc-od-purple)";
if (hint === "歪") return "var(--tgc-od-red)";
return "var(--tgc-od-blue)";
});