refactor(favicon); change favicon related setup

This commit is contained in:
Sped0n
2023-11-04 16:27:05 +08:00
parent bf3ddfc3f8
commit 8d9dc0c121
14 changed files with 23 additions and 77 deletions

View File

@@ -1,3 +1,17 @@
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'>
<circle cx="50" cy="50" r="50"/>
<!-- icon.svg -->
<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg">
<style>
circle {
fill: white;
stroke: black;
stroke-width: 5px;
}
@media (prefers-color-scheme: dark) {
circle {
fill: black;
stroke: white;
}
}
</style>
<circle cx="50" cy="50" r="45" />
</svg>

Before

Width:  |  Height:  |  Size: 105 B

After

Width:  |  Height:  |  Size: 347 B