SiiWay 官方图标库,由 XiaoYuan151, xhc861 和 wyf9 提供.
The official siiway icons provided by XiaoYuan151, xhc861 and wyf9.
特别感谢 XiaoYuan151 对 SiiWay SVG 图标的重绘!
Special thanks to XiaoYuan151 for re-drawing SiiWay’s SVG icons!
版权所有 (c) 2025 SiiWay Team. 保留所有权利.
Copyright (c) 2025 SiiWay Team. All Rights Reserved.
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
在 SVG 文件顶部添加注释:
<?xml version="1.0" encoding="UTF-8"?> <!-- 需要在此行下方, 否则文件将损坏 -->
<!-- Copyright (c) SiiWay Team, All Rights Reserved - https://icons.siiway.org/path/to/file.svg -->
使用 Favicon Converter 将 SVG 转换为 不同大小的 PNG + ICO + Webmanifest
最终提供的颜色和尺寸: (斜体尺寸放在 favicon 目录)*
256x256512x512, 192x192, 180x180, 32x32, 16x1648x48<svg width="256" height="256" xmlns="http://www.w3.org/2000/svg"> <!-- 给 svg 元素增加 width 和 height 属性 (须在 defs 外) -->
<rect width="100%" height="100%" fill="black" /> <!-- black / white -->
cd siiway # or other dirs
cp favicon favicon-light -r && cd favicon-light
uv run ../../.tools/replace_transparent.py white && rm ./*.bak
cd ..
cp favicon favicon-dark -r && cd favicon-dark
uv run ../../.tools/replace_transparent.py black && rm ./*.bak
cd ..
在子目录的 README 中添加以下内容, 以便 Actions 自动生成目录树:
<!-- AUTO_FILE_LIST_START -->
<!-- AUTO_FILE_LIST_END -->
目录结构示例:
$ tree
.
├── favicon
│ ├── android-chrome-192x192.png
│ ├── android-chrome-512x512.png
│ ├── apple-touch-icon.png
│ ├── favicon-16x16.png
│ ├── favicon-32x32.png
│ ├── favicon.ico
│ └── site.webmanifest
├── favicon-dark
│ ├── android-chrome-192x192.png
│ ├── android-chrome-512x512.png
│ ├── apple-touch-icon.png
│ ├── favicon-16x16.png
│ ├── favicon-32x32.png
│ ├── favicon.ico
│ └── site.webmanifest
├── favicon-light
│ ├── android-chrome-192x192.png
│ ├── android-chrome-512x512.png
│ ├── apple-touch-icon.png
│ ├── favicon-16x16.png
│ ├── favicon-32x32.png
│ ├── favicon.ico
│ └── site.webmanifest
├── icon-dark.svg
├── icon-light.svg
├── icon.svg
└── README.md
4 directories, 25 files