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/assets')
-rw-r--r--web/assets/js/util/common.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/assets/js/util/common.js b/web/assets/js/util/common.js
index 38a2c37e..82bc9a0c 100644
--- a/web/assets/js/util/common.js
+++ b/web/assets/js/util/common.js
@@ -138,9 +138,9 @@ function clientUsageColor(clientStats, trafficDiff) {
case clientStats.up + clientStats.down < clientStats.total - trafficDiff:
return "#0e49b5";
case clientStats.up + clientStats.down < clientStats.total:
- return "#FFA031";
+ return "#ffa031";
default:
- return "#E04141";
+ return "#e04141";
}
}