Skip to content

Commit

Permalink
Update favicons to match the new branding
Browse files Browse the repository at this point in the history
  • Loading branch information
parafoxia committed Aug 19, 2024
1 parent 2a8c3b3 commit 1e763f5
Show file tree
Hide file tree
Showing 13 changed files with 60 additions and 46 deletions.
23 changes: 23 additions & 0 deletions public/favicon/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Your Favicon Package

This package was generated with [RealFaviconGenerator](https://realfavicongenerator.net/) [v0.16](https://realfavicongenerator.net/change_log#v0.16)

## Install instructions

To install this package:

Extract this package in <code>&lt;web site&gt;/public/favicon/</code>. If your site is <code>http://www.example.com</code>, you should be able to access a file named <code>http://www.example.com/public/favicon/favicon.ico</code>.

Insert the following code in the `head` section of your pages:

<link rel="apple-touch-icon" sizes="180x180" href="/public/favicon/apple-touch-icon.png?v=2">
<link rel="icon" type="image/png" sizes="32x32" href="/public/favicon/favicon-32x32.png?v=2">
<link rel="icon" type="image/png" sizes="16x16" href="/public/favicon/favicon-16x16.png?v=2">
<link rel="manifest" href="/public/favicon/site.webmanifest?v=2">
<link rel="mask-icon" href="/public/favicon/safari-pinned-tab.svg?v=2" color="#9e1cf3">
<link rel="shortcut icon" href="/public/favicon/favicon.ico?v=2">
<meta name="msapplication-TileColor" content="#000000">
<meta name="msapplication-config" content="/public/favicon/browserconfig.xml?v=2">
<meta name="theme-color" content="#000000">

*Optional* - Check your favicon with the [favicon checker](https://realfavicongenerator.net/favicon_checker)
Binary file modified public/favicon/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions public/favicon/browserconfig.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#0c0c0c</TileColor>
<square150x150logo src="/public/favicon/mstile-150x150.png?v=2"/>
<TileColor>#000000</TileColor>
</tile>
</msapplication>
</browserconfig>
Binary file modified public/favicon/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon/favicon.ico
Binary file not shown.
9 changes: 9 additions & 0 deletions public/favicon/html_code.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<link rel="apple-touch-icon" sizes="180x180" href="/public/favicon/apple-touch-icon.png?v=2">
<link rel="icon" type="image/png" sizes="32x32" href="/public/favicon/favicon-32x32.png?v=2">
<link rel="icon" type="image/png" sizes="16x16" href="/public/favicon/favicon-16x16.png?v=2">
<link rel="manifest" href="/public/favicon/site.webmanifest?v=2">
<link rel="mask-icon" href="/public/favicon/safari-pinned-tab.svg?v=2" color="#9e1cf3">
<link rel="shortcut icon" href="/public/favicon/favicon.ico?v=2">
<meta name="msapplication-TileColor" content="#000000">
<meta name="msapplication-config" content="/public/favicon/browserconfig.xml?v=2">
<meta name="theme-color" content="#000000">
Binary file modified public/favicon/mstile-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
50 changes: 16 additions & 34 deletions public/favicon/safari-pinned-tab.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions public/favicon/site.webmanifest
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "Carberra Tutorials",
"short_name": "Carberra Tutorials",
"name": "Carberra",
"short_name": "Carberra",
"icons": [
{
"src": "/android-chrome-192x192.png",
"src": "/public/favicon/android-chrome-192x192.png?v=2",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"src": "/public/favicon/android-chrome-512x512.png?v=2",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"theme_color": "#000000",
"background_color": "#000000",
"display": "standalone"
}
8 changes: 4 additions & 4 deletions src/utils/meta.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,24 +42,24 @@ const Meta: React.FC<Props> = (props) => {
<link
rel="apple-touch-icon"
sizes="180x180"
href="/favicon/apple-touch-icon.png"
href="/favicon/apple-touch-icon.png?v=2"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon/favicon-32x32.png"
href="/favicon/favicon-32x32.png?v=2"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon/favicon-16x16.png"
href="/favicon/favicon-16x16.png?v=2"
/>
<link rel="manifest" href="/favicon/site.webmanifest" />
<link
rel="mask-icon"
href="/favicon/safari-pinned-tab.svg"
href="/favicon/safari-pinned-tab.svg?v=2"
color="#0c0c0c"
/>
<meta name="apple-mobile-web-app-title" content="Carberra" />
Expand Down

0 comments on commit 1e763f5

Please sign in to comment.