Skip to content

Commit 1826e02

Browse files
committed
Fixed link color
1 parent 86f0f5f commit 1826e02

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3743,8 +3743,8 @@ <h3><a href="https://github.com/frappe/erpnext" target="_blank">ERPNext</a></h3>
37433743

37443744
tagCloudContainer.innerHTML = '';
37453745

3746-
const minFontSize = 1.0;
3747-
const maxFontSize = 1.0;
3746+
const minFontSize = 0.8;
3747+
const maxFontSize = 0.8;
37483748
const maxCount = Math.max(...Object.values(categoryCounts));
37493749
const minCount = Math.min(...Object.values(categoryCounts));
37503750

@@ -3757,7 +3757,7 @@ <h3><a href="https://github.com/frappe/erpnext" target="_blank">ERPNext</a></h3>
37573757
link.href = `#${category}`;
37583758
link.textContent = category;
37593759
link.style.fontSize = `${weight}rem`;
3760-
link.style.color = `hsl(${Math.random() * 360}, 50%, 50%)`;
3760+
link.style.color = `#105028`;
37613761
link.setAttribute('data-weight', count);
37623762

37633763
listItem.appendChild(link);

0 commit comments

Comments
 (0)