This commit is contained in:
Alireza Ahmadi
2023-12-09 13:59:48 +01:00
parent 07019d6594
commit bf267c2c48
5 changed files with 23 additions and 23 deletions
+3 -3
View File
@@ -345,11 +345,11 @@
get color() {
const percent = this.percent;
if (percent < 80) {
return '#0a7557';
return '#008771'; // Green
} else if (percent < 90) {
return '#ffa031';
return "#f37b24"; // Orange
} else {
return '#e04141';
return "#cf3c3c"; // Red
}
}
}