\u003C/mask>\u003Cg mask=\"url(#a)\">\u003Cpath fill=\"#EA9E44\" d=\"M116.94 88.1c-13.344 1.552-20.436-2.019-24.706 10.71 0 0 14.336 21.655 52.54 21.112-2.135 8.848-1.144 15.368-1.144 23.207 0 26.079-20.589 48.821-65.961 48.821-23.03 0-51.015 4.191-72.367 15.911-15.175 8.305-27.048 20.336-32.302 37.023l5.956 8.461 11.4.155v47.889l-13.91 21.966L-19.556 387h13.192l1.144-51.227c6.558-3.881 21.58-13.971 34.391-29.494 17.386-20.879 30.731-51.227 15.022-88.793l11.744-5.045c12.887 30.814 8.388 57.514-2.898 79.013 21.58-.698 40.11-2.095 55.819-4.734l-3.584-43.698 12.659-1.087L129.98 387h13.116l2.212-94.459c10.447-4.502 34.239-21.034 45.372-78.47 1.372-6.986 2.135-12.885 2.516-17.93 1.754-12.806 2.745-27.243 3.051-43.698l-18.683-5.976h57.42l5.567-12.807c-5.414.233-11.896-2.639-11.896-2.639l1.297-6.209H242l-65.199-34.384c-7.244 2.794-14.87 6.442-20.208 10.866-4.27-3.105-19.063-12.807-39.653-13.195Z\"/>\u003Cpath fill=\"#C16929\" d=\"M6.217 24.493 18.494 21c5.948 21.577 13.345 33.375 22.648 39.352 8.388 5.099 19.75 5.239 31.799 4.579-3.508-1.164-6.787-2.794-9.837-5.045-6.787-5.045-12.582-13.428-16.929-28.64l12.201-3.649c3.279 11.488 7.092 18.085 12.201 21.888 5.11 3.726 11.286 4.657 18.606 5.433 13.726 1.553 30.884 2.174 52.312 12.264 2.898 1.086 5.872 2.483 8.769 4.036-.381-.776-.762-1.553-1.296-2.406-3.66-5.822-10.828-11.953-24.097-16.92l4.27-12.109c21.581 7.917 30.121 19.171 33.553 28.097 3.965 10.168 1.525 18.124 1.525 18.124-3.05 1.009-6.1 2.406-9.608 3.492-6.634-4.579-12.887-8.033-18.835-10.75-21.962-8.304-43.466-2.638-62.53-.853-14.336 1.32-27.452.698-38.814-6.598-11.21-7.14-21.047-20.8-28.215-46.802Z\"/>\u003Cpath fill=\"#C16929\" d=\"M90.098 45.294c-2.516-5.744-4.041-12.807-3.355-21.5l12.659.932c-.763 10.555 2.897 17.696 7.015 22.353-5.338-.931-10.447-1.04-16.319-1.785ZM170.167 43.974l8.312-9.702c21.58 19.094 8.159 46.415 8.159 46.415l-11.819-1.32c-.382-6.24-1.144-17.836-6.635-24.371 3.584 1.84 6.635 3.865 9.99 6.908 0-5.666-1.754-12.341-8.007-17.93Z\"/>\u003C/g>\u003C/svg>';\r\n// Retrieve or set new colors based on current theme\r\nconst primaryColor = document.documentElement.style.getPropertyValue('--theme-color-name');\r\nconst secondaryColor = primaryColor;\r\n// Replace original colors with theme colors\r\nconst themedSvg = sourceSvg\r\n .replace(/#C16929/g, primaryColor)\r\n .replace(/#EA9E44/g, secondaryColor);\r\n// Clean SVG before encoding it\r\nconst cleanSvg = themedSvg\r\n .replace(/[\\t\\n\\r]/gim, '') // Strip newlines and tabs\r\n .replace(/\\s\\s+/g, ' ') // Condense multiple spaces\r\n .replace(/'/gim, '\\\\i'); // Normalize quotes\r\n// Encode the SVG for a data URI\r\nconst encodedSvg = encodeURIComponent(cleanSvg)\r\n .replace(/\\(/g, '%28') // Encode brackets\r\n .replace(/\\)/g, '%29');\r\n// Build the data URI\r\nconst dataUri = `data:image/svg+xml;charset=UTF-8,${encodedSvg}`;\r\n\r\nfunction updateFavicons() {\r\n const favicons = document.querySelectorAll('link[rel*=\"icon\"][type*=\"svg\"]');\r\n [...favicons].forEach((favicon) => {\r\n favicon.setAttribute('href', dataUri);\r\n });\r\n}\r\n\r\nupdateFavicons();\r\n\r\n// App loads multiple favicons for some reason, wait to try again\r\nsetTimeout(updateFavicons, 5 * 1000);\r\n```\r\n\r\n\u003C/p>\r\n\u003C/details>\r\n\r\nWhile I'm happy to have my favicon themed, it'd be even nicer to have this feature built in! (I also think it'd be nicer to keep the value of the antlers differentiated, I was just impatient. 🙂)",[2041],{"name":1988,"color":1989},1477,"Colorize favicon to match theme","2023-01-26T20:46:28Z","https://github.com/elk-zone/elk/issues/1477",0.7566738,{"description":2048,"labels":2049,"number":2051,"owner":1991,"repository":1992,"state":2052,"title":2053,"updated_at":2054,"url":2055,"score":2056},"In my opinion, the logo is too wide. It looks weird next to other icons, especially as a PWA on Windows in the taskbar. The padding between the border of the SVG viewbox and the actual Elk icon. I have made a quick site that shows an idea of what I think it would be like:\r\nhttps://eddiestech.github.io/elklogocompare (left is original, right is my mock-up)\r\n\r\nHappy to get feedback and also look into guidance around spacing like this.",[2050],{"name":1988,"color":1989},1890,"closed","Improve logo spacing/decrease width of elk","2023-03-21T11:59:26Z","https://github.com/elk-zone/elk/issues/1890",0.70208496,{"description":2058,"labels":2059,"number":2061,"owner":1991,"repository":1992,"state":2052,"title":2062,"updated_at":2063,"url":2064,"score":2065},"Example: right elk, left bird-site\r\n\r\n\u003Cimg src=\"https://user-images.githubusercontent.com/7195563/203858496-39c89ca5-3de6-4b94-8356-d7b21ee9aaf6.png\" width=\"300px\"/> \u003Cimg src=\"https://user-images.githubusercontent.com/7195563/203858507-f9eda281-417c-4baf-bb37-5bef872cd7e6.png\" width=\"300px\"/>\r\n",[2060],{"name":2022,"color":2023},65,"No sidebar on to small viewport width","2022-11-25T08:22:38Z","https://github.com/elk-zone/elk/issues/65",0.7248298,{"description":2067,"labels":2068,"number":2073,"owner":1991,"repository":1992,"state":2052,"title":2074,"updated_at":2075,"url":2076,"score":2077},"Expansion when sharing links on Twitter, Slack, Discord, etc",[2069,2070],{"name":2022,"color":2023},{"name":2071,"color":2072},"p: 1-normal","BFDADC",153,"Implement social images and expansions for elk.zone links","2023-01-14T23:51:14Z","https://github.com/elk-zone/elk/issues/153",0.7387761,{"description":2079,"labels":2080,"number":2083,"owner":1991,"repository":1992,"state":2052,"title":2084,"updated_at":2085,"url":2086,"score":2087},"### Discussed in https://github.com/elk-zone/elk/discussions/1801\r\n\r\n\u003Cdiv type='discussions-op-text'>\r\n\r\n\u003Csup>Originally posted by **sbug0** February 19, 2023\u003C/sup>\r\nScrolling through the time line I saw this.\r\nIt's a content warning post but Elk is not showing it as such.\r\nThe images show how Elk show the post compared to Mastodon web.\r\n\r\n\r\n\u003Cimg width=\"609\" alt=\"Elk\" src=\"https://user-images.githubusercontent.com/122732288/219947513-b980bfde-cbf6-4cdf-940c-bb30f1f02aab.png\">\r\n\u003Cimg width=\"582\" alt=\"Mastodon\" src=\"https://user-images.githubusercontent.com/122732288/219947519-4d59827e-715f-486e-bd6c-2cd3e928b83b.png\">\r\n\u003C/div>",[2081,2082],{"name":1985,"color":1986},{"name":2071,"color":2072},1846,"Content warning bug","2023-03-07T18:41:03Z","https://github.com/elk-zone/elk/issues/1846",0.7413923,["Reactive",2089],{},["Set"],["ShallowReactive",2092],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"FZteVd9NJwa-yjaI8AN9vGEQeMPa-37eJ5gDHud2OwQ":-1},"/elk-zone/elk/1642"]