this post was submitted on 19 Aug 2026
19 points (95.2% liked)

Web Development

5779 readers
36 users here now

Welcome to the web development community! This is a place to post, discuss, get help about, etc. anything related to web development

What is web development?

Web development is the process of creating websites or web applications

Rules/Guidelines

Related Communities

Wormhole

Some webdev blogsNot sure what to post in here? Want some web development related things to read?

Heres a couple blogs that have web development related content

CreditsIcon base by Delapouite under CC BY 3.0 with modifications to add a gradient

founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] Kissaki@programming.dev 5 points 19 hours ago* (last edited 19 hours ago) (1 children)

Please add / You really should add <meta name="color-scheme" content="light dark" />, ref

As an aside; my dark reader dark inject breaks the website layout on that website. I've never seen that on any other website.

[–] DarkSirrush@piefed.ca 3 points 11 hours ago (1 children)

As someone less experienced but currently learning HTML, if you are trying to do the bare minimum of JavaScript, is there a point in having it in the HTML vs the CSS?

[–] Thinker@feddit.online 2 points 4 hours ago (1 children)

It's likely a small difference, but the main advantage of having it in the HTML is that it's immediately available, so you don't have to deal with the flash of unstyled content being in the wrong color scheme.

Source: https://css-tricks.com/almanac/properties/c/color-scheme/#theres-a-corresponding-meta-tag-too

[–] DarkSirrush@piefed.ca 1 points 38 minutes ago

Thats definitely a better argument than most of the ones I read, which were always about overly complicated JavaScript setups for switching a million variables for light-dark support, instead of just using the CSS stuff.

Literally the only thing I can understand needing Javascript for is a persistent bit on the toggle so it doesn't constantly change.