-
+
+ {/*
*/}
{
+ const colors = [
+ {
+ // Light/Yellow
+ bg: "bg-yellow-100 dark:bg-yellow-950/30",
+ text: "text-yellow-700 dark:text-yellow-400",
+ border: "border-yellow-200 dark:border-yellow-900/50",
+ indicator: "bg-yellow-400 dark:bg-yellow-500",
+ },
+ {
+ // Green
+ bg: "bg-green-100 dark:bg-green-950/30",
+ text: "text-green-700 dark:text-green-400",
+ border: "border-green-200 dark:border-green-900/50",
+ indicator: "bg-green-400 dark:bg-green-500",
+ },
+ {
+ // Blue
+ bg: "bg-blue-100 dark:bg-blue-950/30",
+ text: "text-blue-700 dark:text-blue-400",
+ border: "border-blue-200 dark:border-blue-900/50",
+ indicator: "bg-blue-400 dark:bg-blue-500",
+ },
+ {
+ // Gray
+ bg: "bg-gray-100 dark:bg-gray-800/30",
+ text: "text-gray-700 dark:text-gray-400",
+ border: "border-gray-200 dark:border-gray-700/50",
+ indicator: "bg-gray-400 dark:bg-gray-500",
+ },
+ ];
+
+ return colors[position % colors.length];
+};
+
+
diff --git a/apps/main/stats.html b/apps/main/stats.html
index d5485a9..fa23c70 100644
--- a/apps/main/stats.html
+++ b/apps/main/stats.html
@@ -4929,7 +4929,7 @@ var drawChart = (function (exports) {