🎨 Fix inline style color for page visit count

- Changed inline style color from #1e3c72 to #00d4ff
- Page visit count now matches cyan accent color theme
- Consistent with other statistics numbers
This commit is contained in:
2025-09-08 22:13:45 +02:00
parent 117e75fcfe
commit c2188b862a
2 changed files with 5 additions and 5 deletions

View File

@@ -140,7 +140,7 @@ function displayPageStats(containerId, stats) {
const mainPageStat = stats.find(stat => stat.page === 'main_page_visit');
const count = mainPageStat ? mainPageStat.count : 0;
container.innerHTML = `<div style="font-size: 1.5em; font-weight: bold; color: #1e3c72;">${count}</div>`;
container.innerHTML = `<div style="font-size: 1.5em; font-weight: bold; color: #00d4ff;">${count}</div>`;
}
function getPageDisplayName(page) {