🎨 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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user