You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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:
<palign="center"><ahref="https://svelte.dev/"><picture><sourcemedia="(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? --><imgsrc="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
The text was updated successfully, but these errors were encountered:
This does sound like a good idea (I was actually thinking of making a similar issue/making the image), but I'm not sure if GitHub's flavor of Markdown supports that much HTML— it supports basic syntax like elements, but it gets restrictive with things like CSS, and obviously scripting.
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:
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
The text was updated successfully, but these errors were encountered: