diff --git a/web/src/components/ActivityCalendar.tsx b/web/src/components/ActivityCalendar.tsx
index 996894d8..fcf3cd5c 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-teal-600 text-gray-100 dark:opacity-80";
+ return "bg-teal-700 text-gray-100 dark:opacity-80";
} else if (ratio > 0.4) {
- return "bg-teal-400 text-gray-100 dark:opacity-80";
+ return "bg-teal-600 text-gray-100 dark:opacity-80";
} else {
- return "bg-teal-300 text-gray-100 dark:opacity-80";
+ return "bg-teal-500 text-gray-100 dark:opacity-70";
}
};
@@ -58,29 +58,36 @@ const ActivityCalendar = (props: Props) => {
const tooltipText = count ? t("memo.count-memos-in-date", { count: count, date: date }) : date;
const isSelected = new Date(props.selectedDate).toDateString() === new Date(date).toDateString();
return day ? (
-