# 本地图标库 > 这里缓存通过 `scripts/fetch_icon.py` 从 Iconify 拉下来的图标,**已入库一组商务红 tabler 种子集**(target / brain / chart-bar / users / trophy / alert-triangle / cpu / building-factory / cloud-network / database 等),覆盖大部分商务汇报场景。新场景模型按需 `fetch_icon.py` 拉,再次用时直接读本地不发请求。 ## 缓存命名规约 ``` ___.png __.svg ``` 例: `tabler_rocket_C00000_128.png` / `lucide_target_FFC107_96.svg` ## 推荐图标清单 (按业务主题) 按下面 3 行命令拉取首批最常用 18 个,够覆盖 80% 商务汇报场景: ```bash ICONS_DIR=skills/ppt/assets/icons # 战略 / 目标 / 启动 for n in target rocket flag bulb; do python skills/ppt/scripts/fetch_icon.py $n --set tabler --color C00000 --size 128 \ -o "$ICONS_DIR/tabler_${n}_C00000_128.png" done # 数据 / 趋势 / 报表 for n in chart-bar chart-line trending-up calculator; do python skills/ppt/scripts/fetch_icon.py $n --set tabler --color C00000 --size 128 \ -o "$ICONS_DIR/tabler_${n}_C00000_128.png" done # 团队 / 流程 / 时间 for n in users settings calendar clock check shield-check arrow-right alert-triangle currency-yuan circle-check; do python skills/ppt/scripts/fetch_icon.py $n --set tabler --color C00000 --size 128 \ -o "$ICONS_DIR/tabler_${n}_C00000_128.png" done ``` ## 图标集对照 | 集名 | 风格 | 数量 | License | |-----|-----|-----|---------| | **tabler** ⭐ 推荐 | 描边、商务、克制 | 4500+ | MIT | | lucide | 描边、克制 | 1500+ | ISC | | heroicons | Tailwind 风、双重粗细 | 300+ | MIT | | material-symbols | Google Material 描边/填充 | 3000+ | Apache 2.0 | | carbon | IBM、克制专业 | 2000+ | Apache 2.0 | | fluent | Microsoft、温和现代 | 4000+ | MIT | | mdi | Material Design Icons 社区 | 7000+ | Apache 2.0 | ## 浏览找名字 打开 https://icon-sets.iconify.design/ 搜中英文关键词,复制图标名 (如 `tabler:rocket`),回来用 `--set tabler rocket` 拉。 ## 主题色变体 同一图标按主色/辅色/强调色/灰各拉一份,文件名只在 `` 段不同: - `tabler_target_C00000_128.png` (主红) - `tabler_target_E15554_128.png` (辅红) - `tabler_target_FFC107_128.png` (强调金) - `tabler_target_595959_128.png` (灰) ## 用图标的硬规则 见 `references/icons.md §C` —— 风格统一、颜色限定、大小克制、不替表意、避 emoji。