Skip to content

Instantly share code, notes, and snippets.

@tamalw
Created April 28, 2020 04:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tamalw/92c97db60f8735afc6ba1db9853ba765 to your computer and use it in GitHub Desktop.
Save tamalw/92c97db60f8735afc6ba1db9853ba765 to your computer and use it in GitHub Desktop.
Logo Test
<div id="blurb">
<p><svg id="logo" width="200" height="173.2">
<polygon points="50,0
150,0
50,173.2
0,86.6
200,86.6
150,173.2" />
</svg></p>
<h1>Tamal White</h1>
<p>Data + Code</p>
</div>
body {
text-align: center;
font-family: monospace;
background-color: white;
color: black;
}
#logo {
fill: black;
}
/* Dark mode */
@media (prefers-color-scheme: dark) {
body {
background-color: black;
color: white;
}
#logo {
fill: white;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment