The project includes a favicon in SVG format (favicon.svg) that represents an RSS reader with:
- Radio wave symbol (RSS feed icon)
- Document/reader symbol (representing articles)
Modern browsers (Chrome, Firefox, Safari, Edge) support SVG favicons natively. The SVG favicon is the primary favicon.
If you need a traditional ICO file for older browsers or specific use cases, you can convert the SVG to ICO:
- Visit https://convertio.co/svg-ico/ or https://cloudconvert.com/svg-to-ico
- Upload
favicon.svg - Download the converted
favicon.ico - Place it in the project root
convert favicon.svg -resize 16x16 -background transparent favicon.icoinkscape favicon.svg --export-filename=favicon.ico --export-width=16 --export-height=16The current setup will work with modern browsers using the SVG favicon. The ICO file is optional but recommended for maximum compatibility.