Skip to content

Commit

Permalink
Make favicon match logo, use ICO format, and add dark mode version
Browse files Browse the repository at this point in the history
  • Loading branch information
mileswwatkins committed Nov 26, 2024
1 parent bbd1248 commit 71aa37b
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 86 deletions.
Binary file added public/favicon-dark-mode.ico
Binary file not shown.
Binary file added public/favicon-light-mode.ico
Binary file not shown.
40 changes: 40 additions & 0 deletions public/favicon-source.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
85 changes: 0 additions & 85 deletions public/favicon.svg

This file was deleted.

11 changes: 10 additions & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,16 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.svg" />
<link
rel="icon"
href="%PUBLIC_URL%/favicon-light-mode.ico"
media="(prefers-color-scheme: light)"
/>
<link
rel="icon"
href="%PUBLIC_URL%/favicon-dark-mode.ico"
media="(prefers-color-scheme: dark)"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
Expand Down

0 comments on commit 71aa37b

Please sign in to comment.