Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'web/html/xui/index.html')
-rw-r--r--web/html/xui/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/html/xui/index.html b/web/html/xui/index.html
index 21a8f016..a8fb958d 100644
--- a/web/html/xui/index.html
+++ b/web/html/xui/index.html
@@ -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
}
}
}