Currently the org banner at https://github.com/offspot/.github/blob/main/profile/README.md is a custom-made image which is not part of the official [visuals](https://github.com/offspot/overview/wiki/Visuals). Since Github is perfectly supporting dark/light picture in markdown for some time, we should probably give it a try to use official logos: ``` <picture> <source media="(prefers-color-scheme: dark)" srcset="./dark.png"> <img alt="Text changing depending on mode. Light: 'So light!' Dark: 'So dark!'" src="./light.png"> </picture> ``` Or we could even directly use the SVG which embeds this dark/light code. Or do I miss something?