diff --git a/web/src/components/ActivityCalendar.tsx b/web/src/components/ActivityCalendar.tsx index e7050834..996894d8 100644 --- a/web/src/components/ActivityCalendar.tsx +++ b/web/src/components/ActivityCalendar.tsx @@ -18,11 +18,11 @@ const getCellAdditionalStyles = (count: number, maxCount: number) => { const ratio = count / maxCount; if (ratio > 0.7) { - return "bg-blue-600 text-gray-100 dark:opacity-80"; + return "bg-teal-600 text-gray-100 dark:opacity-80"; } else if (ratio > 0.4) { - return "bg-blue-400 text-gray-200 dark:opacity-80"; + return "bg-teal-400 text-gray-100 dark:opacity-80"; } else { - return "bg-blue-300 text-gray-600 dark:opacity-80"; + return "bg-teal-300 text-gray-100 dark:opacity-80"; } }; @@ -48,7 +48,7 @@ const ActivityCalendar = (props: Props) => { } return ( -
{t("common.statistics")}
++ {new Date().toLocaleDateString(i18n.language, { month: "long", day: "numeric" })} +
{t("memo.fetching-data")}
-{t("message.no-data")}
-