vlang / website

MIT License
62 stars 96 forks source link

Fix Branding of External #188

Closed ghost closed 2 years ago

ghost commented 3 years ago

While on the V Language website I noticed the Twitch logo coloring was off, and it was supposed to be purple. I changed the line from:

<a target=_blank href='https://twitch.tv/v_language'>
  <svg aria-hidden="true" focusable="false" data-prefix="fab" data-icon="twitch" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="svg-inline--fa fa-twitch fa-w-16 fa-2x"><path fill="currentColor" d="M391.17,103.47H352.54v109.7h38.63ZM285,103H246.37V212.75H285ZM120.83,0,24.31,91.42V420.58H140.14V512l96.53-91.42h77.25L487.69,256V0ZM449.07,237.75l-77.22,73.12H294.61l-67.6,64v-64H140.14V36.58H449.07Z" class=""></path></svg>
</a>

to:

<a target=_blank href='https://twitch.tv/v_language'>
  <svg aria-hidden="true" focusable="false" data-prefix="fab" data-icon="twitch" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="svg-inline--fa fa-twitch fa-w-16 fa-2x"><path fill="**#9146FF**" d="M391.17,103.47H352.54v109.7h38.63ZM285,103H246.37V212.75H285ZM120.83,0,24.31,91.42V420.58H140.14V512l96.53-91.42h77.25L487.69,256V0ZM449.07,237.75l-77.22,73.12H294.61l-67.6,64v-64H140.14V36.58H449.07Z" class=""></path></svg>
</a>

Very small change but it makes the formating fit the Official Twitch Guidelines source: Official Twitch Branding Guidelines

ghost commented 3 years ago

Changed the download button to match the darker color of the logo (#536b8a) so it would match the branding.

<div class='button' style="background: #4a607e">

to:

<div class='button' style="background: #536b8a">