Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (Cyborg)
  • No Skin
Collapse
Brand Logo

CIRCLE WITH A DOT

  1. Home
  2. Uncategorized
  3. I am begging website owners to always provide a light mode.

I am begging website owners to always provide a light mode.

Scheduled Pinned Locked Moved Uncategorized
accessibilitywebsitedesign
38 Posts 24 Posters 0 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • drahardja@sfba.socialD drahardja@sfba.social

    @VanuPhantom I’m sure light-on-dark design has been discussed extensively since the days of print. I’m not a usability expert, but I can tell you what affects me personally.

    I’m most sensitive to anything that look like bars: repeating strips of high contrast light against dark, like prison cell bars in old cartoons; these patterns cause severe afterimages, often lasting minutes.

    My pet theory is that *light areas* in general cause afterimages for me overall. However, in light mode, the entire window is light, so it makes less difference because I basically get a diffuse, white-rectangle afterimage which doesn’t really interfere with details that I’m trying to focus on (it may reduce contrast somewhat in my brain but it’s fine). But in dark mode, the only bright things that cause afterimages are the fine detail (text), so as I move around these afterimages interfere severely against the new details I’m trying to read. A similar thing happens with bars when I’m in light mode.

    drahardja@sfba.socialD This user is from outside of this forum
    drahardja@sfba.socialD This user is from outside of this forum
    drahardja@sfba.social
    wrote last edited by
    #21

    @VanuPhantom Body text fonts matter too. A font with tall counters and good variation between characters are easier to read for me. For serifs, I don’t like fonts that have very thin parts (e.g. Bodoni) for text because they tend to make the thicker parts look like bars. I prefer fonts like Schoolbook that have more modest thick/thin contrast, or Adelle that has basically uniform line widths.

    1 Reply Last reply
    0
    • drahardja@sfba.socialD drahardja@sfba.social

      I am begging website owners to always provide a light mode. It’s an accessibility issue for me: my aging eyes are no longer able to view light-on-dark text for extended periods without severe ghosting/afterimages.

      #accessibility #website #design

      dannyman@sfba.socialD This user is from outside of this forum
      dannyman@sfba.socialD This user is from outside of this forum
      dannyman@sfba.social
      wrote last edited by
      #22

      @drahardja 2c: the web browser should manage this.

      drahardja@sfba.socialD 1 Reply Last reply
      0
      • dannyman@sfba.socialD dannyman@sfba.social

        @drahardja 2c: the web browser should manage this.

        drahardja@sfba.socialD This user is from outside of this forum
        drahardja@sfba.socialD This user is from outside of this forum
        drahardja@sfba.social
        wrote last edited by
        #23

        @dannyman I mean, it does to an extent. CSS has the color-scheme and light-dark() colors that respond to the browser’s settings.

        But the browser can only do so much. CSS doesn’t convey the *intent* of elements, only their *appearance*. It’s much worse with React-style pages, in which the CSS *and* html elements have basically zero semantic meaning.

        I use Reader mode to get around dark mode, which works sometimes for sites with mostly static blog contents, but a wholesale rewriting of the page style basically requires reading the minds of the developers.

        dannyman@sfba.socialD 1 Reply Last reply
        0
        • drahardja@sfba.socialD drahardja@sfba.social

          @dannyman I mean, it does to an extent. CSS has the color-scheme and light-dark() colors that respond to the browser’s settings.

          But the browser can only do so much. CSS doesn’t convey the *intent* of elements, only their *appearance*. It’s much worse with React-style pages, in which the CSS *and* html elements have basically zero semantic meaning.

          I use Reader mode to get around dark mode, which works sometimes for sites with mostly static blog contents, but a wholesale rewriting of the page style basically requires reading the minds of the developers.

          dannyman@sfba.socialD This user is from outside of this forum
          dannyman@sfba.socialD This user is from outside of this forum
          dannyman@sfba.social
          wrote last edited by
          #24

          @drahardja so ... HTML is fundamentally semantic ... there are a bunch of words that you want to read and some markup explaining how the author wants it to render ... but what happens on the clients side is fundamentally up to the client ... to represent the words ... that's why blind folks can browse the web with screen readers -- it's just words -- and you ought to be able to access a web browser that can cater to your own abilities as well.

          This is more reliable than asking millions of random web sites to somehow understand every nuance of crafting CSS for each audience.

          I believe the mainstream operating systems and web browsers already have a variety of accessibility settings, each frustratingly limited in its own way. We all know how to crank the font size up and down!

          (Personally, I tend to avoid web sites that DON'T support a dark mode, which I find easier to read, but not to a degree that I need an accommodation. Kagi slow web has a neat switch for rendering random sites in light/dark mode.)

          drahardja@sfba.socialD 1 Reply Last reply
          0
          • dannyman@sfba.socialD dannyman@sfba.social

            @drahardja so ... HTML is fundamentally semantic ... there are a bunch of words that you want to read and some markup explaining how the author wants it to render ... but what happens on the clients side is fundamentally up to the client ... to represent the words ... that's why blind folks can browse the web with screen readers -- it's just words -- and you ought to be able to access a web browser that can cater to your own abilities as well.

            This is more reliable than asking millions of random web sites to somehow understand every nuance of crafting CSS for each audience.

            I believe the mainstream operating systems and web browsers already have a variety of accessibility settings, each frustratingly limited in its own way. We all know how to crank the font size up and down!

            (Personally, I tend to avoid web sites that DON'T support a dark mode, which I find easier to read, but not to a degree that I need an accommodation. Kagi slow web has a neat switch for rendering random sites in light/dark mode.)

            drahardja@sfba.socialD This user is from outside of this forum
            drahardja@sfba.socialD This user is from outside of this forum
            drahardja@sfba.social
            wrote last edited by
            #25

            @dannyman HTML *can* be semantic, but only if the web developer cared. Many websites now use an intermediary framework like React that renders everything as divs, without any further meaning.

            Some websites are considerate enough to use semantic tags like <article> but this is by no means universal, or even widespread in my experience.

            ivanuria@neopaquita.esI 1 Reply Last reply
            0
            • drahardja@sfba.socialD drahardja@sfba.social

              I am begging website owners to always provide a light mode. It’s an accessibility issue for me: my aging eyes are no longer able to view light-on-dark text for extended periods without severe ghosting/afterimages.

              #accessibility #website #design

              cherylgk@mastodon.socialC This user is from outside of this forum
              cherylgk@mastodon.socialC This user is from outside of this forum
              cherylgk@mastodon.social
              wrote last edited by
              #26

              @drahardja I have a similar problem in Zoom meetings. They have changed the chat box to dark mode, and Zoom keeps recommending ways to change it back to light mode that just don't work on my computer.

              1 Reply Last reply
              0
              • ghalldev@mastodon.socialG ghalldev@mastodon.social

                @drahardja YES! I have astigmatism so it makes light on dark immensely hard and uncomfortable to read unless I bump up the text size 😭

                catzilla@toot.catC This user is from outside of this forum
                catzilla@toot.catC This user is from outside of this forum
                catzilla@toot.cat
                wrote last edited by
                #27

                @ghalldev @drahardja That’s so curious. I too have astigmatism and need reading glasses but I find light backgrounds extremely uncomfortable on the eyes.

                Dark mode has been a god send to me. I don’t like white on black - I use dark grey and some very light shade of grey, and on my kobo I use a yellow tint.

                I have trouble with brightness in general and wear transitions lenses, or very dark sunglasses when the day is too bright. That may be the reason the light mode bothers me so much.

                ghalldev@mastodon.socialG 1 Reply Last reply
                0
                • catzilla@toot.catC catzilla@toot.cat

                  @ghalldev @drahardja That’s so curious. I too have astigmatism and need reading glasses but I find light backgrounds extremely uncomfortable on the eyes.

                  Dark mode has been a god send to me. I don’t like white on black - I use dark grey and some very light shade of grey, and on my kobo I use a yellow tint.

                  I have trouble with brightness in general and wear transitions lenses, or very dark sunglasses when the day is too bright. That may be the reason the light mode bothers me so much.

                  ghalldev@mastodon.socialG This user is from outside of this forum
                  ghalldev@mastodon.socialG This user is from outside of this forum
                  ghalldev@mastodon.social
                  wrote last edited by
                  #28

                  @catzilla @drahardja That is interesting re: brightness, I have the opposite problem I have trouble in the dark and I never wear sunglasses.

                  Oddly I will occasionally switch to dark mode if it’s a rainy day because I get headaches. 😅

                  Eyes are weird.

                  1 Reply Last reply
                  0
                  • drahardja@sfba.socialD drahardja@sfba.social

                    @dannyman HTML *can* be semantic, but only if the web developer cared. Many websites now use an intermediary framework like React that renders everything as divs, without any further meaning.

                    Some websites are considerate enough to use semantic tags like <article> but this is by no means universal, or even widespread in my experience.

                    ivanuria@neopaquita.esI This user is from outside of this forum
                    ivanuria@neopaquita.esI This user is from outside of this forum
                    ivanuria@neopaquita.es
                    wrote last edited by
                    #29

                    @drahardja

                    Nah, that's not React's fault. That's developer's. You can use semantic HTML in react as well.

                    @dannyman

                    1 Reply Last reply
                    0
                    • drahardja@sfba.socialD drahardja@sfba.social

                      I am begging website owners to always provide a light mode. It’s an accessibility issue for me: my aging eyes are no longer able to view light-on-dark text for extended periods without severe ghosting/afterimages.

                      #accessibility #website #design

                      reddog@syzito.xyzR This user is from outside of this forum
                      reddog@syzito.xyzR This user is from outside of this forum
                      reddog@syzito.xyz
                      wrote last edited by
                      #30

                      @drahardja
                      I'm far from expert at web stuff. But I will try to implement this on my sites.

                      drahardja@sfba.socialD 1 Reply Last reply
                      0
                      • drahardja@sfba.socialD drahardja@sfba.social

                        I am begging website owners to always provide a light mode. It’s an accessibility issue for me: my aging eyes are no longer able to view light-on-dark text for extended periods without severe ghosting/afterimages.

                        #accessibility #website #design

                        chiffchaff@tech.lgbtC This user is from outside of this forum
                        chiffchaff@tech.lgbtC This user is from outside of this forum
                        chiffchaff@tech.lgbt
                        wrote last edited by
                        #31

                        @drahardja and also light-on-dark because some folk have so many floaters it's not worth the effort of reading in light mode.

                        1 Reply Last reply
                        0
                        • drahardja@sfba.socialD drahardja@sfba.social

                          I am begging website owners to always provide a light mode. It’s an accessibility issue for me: my aging eyes are no longer able to view light-on-dark text for extended periods without severe ghosting/afterimages.

                          #accessibility #website #design

                          siterelenby@transfem.socialS This user is from outside of this forum
                          siterelenby@transfem.socialS This user is from outside of this forum
                          siterelenby@transfem.social
                          wrote last edited by
                          #32

                          @drahardja@sfba.social

                          I will always loudly advocate for every site to support both, default to the user's setting, and have a prominent control to switch theme.

                          1 Reply Last reply
                          0
                          • reddog@syzito.xyzR reddog@syzito.xyz

                            @drahardja
                            I'm far from expert at web stuff. But I will try to implement this on my sites.

                            drahardja@sfba.socialD This user is from outside of this forum
                            drahardja@sfba.socialD This user is from outside of this forum
                            drahardja@sfba.social
                            wrote last edited by
                            #33

                            @Reddog 🙌

                            1 Reply Last reply
                            0
                            • drahardja@sfba.socialD drahardja@sfba.social

                              I am begging website owners to always provide a light mode. It’s an accessibility issue for me: my aging eyes are no longer able to view light-on-dark text for extended periods without severe ghosting/afterimages.

                              #accessibility #website #design

                              wanderinghermit@mindly.socialW This user is from outside of this forum
                              wanderinghermit@mindly.socialW This user is from outside of this forum
                              wanderinghermit@mindly.social
                              wrote last edited by
                              #34

                              @drahardja

                              And not just dark mode/light mode. Some folks build their sites with light gray on dark gray or the reverse. Cataracts reduce one's ability to decode low contrast; before I had my cataract surgery I could not read sites with gray on gray text, whether light or dark mode.

                              1 Reply Last reply
                              1
                              0
                              • R relay@relay.publicsquare.global shared this topic
                              • drahardja@sfba.socialD drahardja@sfba.social

                                I am begging website owners to always provide a light mode. It’s an accessibility issue for me: my aging eyes are no longer able to view light-on-dark text for extended periods without severe ghosting/afterimages.

                                #accessibility #website #design

                                dr_barnowl@topspicy.socialD This user is from outside of this forum
                                dr_barnowl@topspicy.socialD This user is from outside of this forum
                                dr_barnowl@topspicy.social
                                wrote last edited by
                                #35

                                @drahardja

                                You should try the Dark Reader plugin

                                Despite the name, you can compel it to make sites light.

                                Link Preview Image
                                Dark Reader — dark theme for every website

                                Enable dark mode (night mode) on all websites

                                favicon

                                Dark Reader (darkreader.org)

                                drahardja@sfba.socialD 1 Reply Last reply
                                0
                                • dr_barnowl@topspicy.socialD dr_barnowl@topspicy.social

                                  @drahardja

                                  You should try the Dark Reader plugin

                                  Despite the name, you can compel it to make sites light.

                                  Link Preview Image
                                  Dark Reader — dark theme for every website

                                  Enable dark mode (night mode) on all websites

                                  favicon

                                  Dark Reader (darkreader.org)

                                  drahardja@sfba.socialD This user is from outside of this forum
                                  drahardja@sfba.socialD This user is from outside of this forum
                                  drahardja@sfba.social
                                  wrote last edited by
                                  #36

                                  @dr_barnowl I’ll give it a try!

                                  1 Reply Last reply
                                  0
                                  • drahardja@sfba.socialD drahardja@sfba.social

                                    I am begging website owners to always provide a light mode. It’s an accessibility issue for me: my aging eyes are no longer able to view light-on-dark text for extended periods without severe ghosting/afterimages.

                                    #accessibility #website #design

                                    daj@gofer.socialD This user is from outside of this forum
                                    daj@gofer.socialD This user is from outside of this forum
                                    daj@gofer.social
                                    wrote last edited by
                                    #37

                                    @drahardja I completely agree. If a site is dark only I just leave. I can't be bothered with it.

                                    I've moaned a few times.
                                    https://forkingmad.blog/dark-web-sites/

                                    1 Reply Last reply
                                    0
                                    • drahardja@sfba.socialD drahardja@sfba.social

                                      I am begging website owners to always provide a light mode. It’s an accessibility issue for me: my aging eyes are no longer able to view light-on-dark text for extended periods without severe ghosting/afterimages.

                                      #accessibility #website #design

                                      tknarr@mstdn.socialT This user is from outside of this forum
                                      tknarr@mstdn.socialT This user is from outside of this forum
                                      tknarr@mstdn.social
                                      wrote last edited by
                                      #38

                                      @drahardja Better yet, have them honor the browser foreground and background colors (which follow the system theme) and font selection. That would simplify a lot of accessibility issues.

                                      1 Reply Last reply
                                      0
                                      • R relay@relay.infosec.exchange shared this topic
                                        R relay@relay.mycrowd.ca shared this topic
                                      Reply
                                      • Reply as topic
                                      Log in to reply
                                      • Oldest to Newest
                                      • Newest to Oldest
                                      • Most Votes


                                      • Login

                                      • Login or register to search.
                                      • First post
                                        Last post
                                      0
                                      • Categories
                                      • Recent
                                      • Tags
                                      • Popular
                                      • World
                                      • Users
                                      • Groups