Standardize hex color codes in map component HTML

Updated hex color codes to use uppercase letters for consistency. This change improves code readability and adheres to common hex formatting practices.
This commit is contained in:
Teriuihi 2025-04-05 23:03:44 +02:00
parent 18cc111b26
commit e158c30bf1

View File

@ -7,12 +7,12 @@
<h2>Which server would you like to see?</h2> <h2>Which server would you like to see?</h2>
<div> <div>
<a href="https://gmap.alttd.com"> <a href="https://gmap.alttd.com">
<div style="background-color: #f547b2;" class="button-outer map-button"> <div style="background-color: #F547B2;" class="button-outer map-button">
<span class="button-inner">Grove</span> <span class="button-inner">Grove</span>
</div> </div>
</a> </a>
<a href="https://cmap.alttd.com"> <a href="https://cmap.alttd.com">
<div style="background-color: #c46213;" class="button-outer map-button"> <div style="background-color: #C46213;" class="button-outer map-button">
<span class="button-inner">Creative</span> <span class="button-inner">Creative</span>
</div> </div>
</a> </a>