Description
Describe the problem
The current banner in README.md still has the old slogan "Cybernetically enhanced web apps".
Also, when viewing README.md (e.g. on the GitHub website/app or a code editor) in a dark-mode, it always only shows a light version of the banner. This gives a weird and inconsistent overall look.
Apparently this also applies to the README.md files in https://github.com/sveltejs/language-tools (and maybe even more repositories that I didn't see yet).
Describe the proposed solution
The banner slogan should be updated to the new slogan "web development for the rest of us".
As for the dark variant, since Markdown supports HTML, it could be added by using a picture element:
<p align="center">
<a href="https://svelte.dev/">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://sveltejs.github.io/assets/banner_dark.png"><!--this file doesn't exist. Is there somewhere already a dark variant of the banner? -->
<img src="https://sveltejs.github.io/assets/banner.png" alt="Svelte - web development for the rest of us" />
</picture>
</a>
</p>
If it is not desired to have HTML in the Markdown files, a PNG with a transparent background could also be used.
Importance
nice to have