Skip to content

Commit

Permalink
Update favicon and theme color
Browse files Browse the repository at this point in the history
  • Loading branch information
xuelink committed Jan 12, 2024
1 parent 2635513 commit 098d3b6
Show file tree
Hide file tree
Showing 12 changed files with 60 additions and 44 deletions.
13 changes: 10 additions & 3 deletions src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,21 @@
/>
<link rel="shortcut icon" href="%sveltekit.assets%/favicons/favicon.ico" />
-->
<link rel="icon" href="%sveltekit.assets%/favicons/favicon.png" />
<link rel="apple-touch-icon" sizes="180x180" href="%sveltekit.assets%/favicons/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="%sveltekit.assets%/favicons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="%sveltekit.assets%/favicons/favicon-16x16.png" />
<link rel="manifest" href="%sveltekit.assets%/favicons/site.webmanifest" />
<link rel="mask-icon" href="%sveltekit.assets%/favicons/safari-pinned-tab.svg" color="#ffc409" />
<meta name="apple-mobile-web-app-title" content="languageXchange" />
<meta name="application-name" content="languageXchange" />
<meta name="msapplication-TileColor" content="#ffc409" />
<!-- Tell browser this site is responsive -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Tell browser this site supports light and dark mode -->
<meta name="color-scheme" content="light dark" />
<!-- Color for browser url bar in mobile/Safari -->
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#b28cf2" />
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#4612A1" />
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#FFC409" />
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#FFC409" />
<!-- Disable Google FLOC -->
<meta http-equiv="Permissions-Policy" content="interest-cohort=()" />
<script>
Expand Down
Binary file modified static/favicons/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 static/favicons/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 static/favicons/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.
9 changes: 9 additions & 0 deletions static/favicons/browserconfig.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#ffc409</TileColor>
</tile>
</msapplication>
</browserconfig>
Binary file modified static/favicons/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 static/favicons/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 static/favicons/favicon.ico
Binary file not shown.
Binary file removed static/favicons/favicon.png
Binary file not shown.
Binary file added static/favicons/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.
48 changes: 24 additions & 24 deletions static/favicons/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.
34 changes: 17 additions & 17 deletions static/favicons/site.webmanifest
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "SvelteKit Static Blog Template",
"short_name": "SvelteKit Template",
"icons": [
{
"src": "/favicons/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/favicons/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#f9f6fe",
"background_color": "#f9f6fe",
"display": "standalone"
"name": "languageXchange",
"short_name": "languageXchange",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}

0 comments on commit 098d3b6

Please sign in to comment.