fix: Update zoom button to preferred purple shade #5c59b6

Changed zoom button color from #9b59b6 to #5c59b6 for better visual appeal.
The new shade is more blue-tinted, creating a vibrant indigo/periwinkle appearance
that remains distinct from the info button blue.

Changes:
- Updated zoom-toggle-btn background: rgba(92, 89, 182, 0.7)
- Updated hover state: #5c59b6
- Updated at-bottom state: #5c59b6
- Updated test output to reflect correct hex code

Test verified: All buttons visible and colors distinct at all viewports.
This commit is contained in:
juanatsap
2025-11-25 06:49:24 +00:00
parent da483ae9f1
commit 566ec1431c
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -11,7 +11,7 @@
left: 2rem;
width: 50px;
height: 50px;
background: rgba(155, 89, 182, 0.7); /* Purple with transparency - distinct from info button blue */
background: rgba(92, 89, 182, 0.7); /* Purple (#5c59b6) with transparency - distinct from info button blue */
color: white;
border: none;
border-radius: 50%;
@@ -29,12 +29,12 @@
opacity: 1;
transform: translateY(-3px);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
background: #9b59b6; /* Purple hover - distinct from info button blue */
background: #5c59b6; /* Purple hover - distinct from info button blue */
}
.zoom-toggle-btn.at-bottom {
opacity: 1;
background: #9b59b6; /* Purple - matches hover, distinct from info button */
background: #5c59b6; /* Purple - matches hover, distinct from info button */
}
/* No special styling for active state - button looks same whether zoom is on or off */