commit 6b7181dc5ed5622567e125d3a1aef73c05f9cdec
parent 7062ef2955bdb21ae93f47b35eaf021cb7fbb6c1
Author: Hunter
Date: Sun, 8 Mar 2026 23:50:39 -0400
update icon
Diffstat:
5 files changed, 6 insertions(+), 8 deletions(-)
diff --git a/index.html b/index.html
@@ -7,7 +7,8 @@
<meta id="themeColor" name="theme-color" content="#ccff00">
<!-- favicon -->
- <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🪆</text></svg>">
+ <link rel="icon" type="image/png" href="resources/icons/icon.png">
+ <link rel="apple-touch-icon" href="resources/icons/icon.png">
<title>todo</title>
<link rel="stylesheet" href="resources/main.css">
diff --git a/manifest.json b/manifest.json
@@ -3,9 +3,9 @@
"short_name": "matryoshka",
"icons": [
{
- "src": "resources/icons/icon.svg",
- "sizes": "any",
- "type": "image/svg+xml"
+ "src": "resources/icons/icon.png",
+ "sizes": "512x512",
+ "type": "image/png"
}
],
"start_url": "/matryoshka/",
diff --git a/resources/icons/icon.png b/resources/icons/icon.png
Binary files differ.
diff --git a/resources/icons/icon.svg b/resources/icons/icon.svg
@@ -1,3 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
- <text y="0.9em" font-size="90">🪆</text>
-</svg>
diff --git a/sw.js b/sw.js
@@ -15,7 +15,7 @@ const ASSETS = [
'resources/task-element.js',
'resources/theme.js',
'resources/main.js',
- 'resources/icons/icon.svg',
+ 'resources/icons/icon.png',
'resources/fonts/Basteleur-Moonlight.ttf',
];