Jump to content

Dark mode

From Wikipedia, the free encyclopedia
(Redirected from Dark-on-light color scheme)

Versions of a web site in normal display mode (left) and dark mode (right)
Dark theme for GNOME
Instead of a white paper, a dark paper,[1] made with CoCalc and the LaTeX document.

A dark mode, dark theme, night mode, or light-on-dark color scheme is a color scheme that uses light-colored text, icons, and graphical user interface elements on a dark background. It is often discussed in terms of computer user interface design and web design. Many modern websites and operating systems offer the user an optional light-on-dark display mode.

Some users find dark mode displays more visually appealing, and claim that it can reduce eye strain.[2] Displaying white at full brightness uses roughly six times as much power as pure black on a 2016 Google Pixel, which has an OLED display.[3] However, conventional LED displays may not benefit from reduced power consumption; but if a LED display has the partial dimming features, it still benefit from reduced power consumption.[4][5] Most modern operating systems support an optional light-on-dark color scheme.[6]

History

[edit]

Microsoft introduced a dark theme in the Anniversary Update of Windows 10 in 2016.[7] In 2018, Apple followed in macOS Mojave.[8] In September 2019, iOS 13 and Android 10 both introduced dark modes.[9][10] Some operating systems provide tools to change the dark mode state automatically at sundown or sunrise.[11]A "prefers-color-scheme" option was created for front-end web developers in 2019, being a CSS property that signals a user's choice for their system to use a light or dark color theme.[12] Firefox and Chromium have optional dark theme for all internal screens. It is also possible for third-party developers to implement their own dark themes.[13] There are also a variety of browser add-ons that can re-theme web sites with dark color schemes, also aligning with system theme.[14] Wikipedia's mobile and desktop versions received a dark mode option in 2024.[15][16]

Implementation

[edit]

There is a prefers-color-scheme media feature on CSS, to detect if the user has requested light or dark color scheme and serve the requested color scheme. It can be indicated from the user's operating system preference or a user agent.[12][17]

CSS example:

@media (prefers-color-scheme: dark) {
    body {
        color: #ccc;
        background: #222;
    }
}
<span style="background-color: light-dark(#fff, #333); color: light-dark(#333, #fff);"></span>

JavaScript example:[18]

if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
    dark();
}

Energy usage

[edit]

Light on dark color schemes require less energy to display on OLED displays. This positively impacts battery life and reduces energy consumption.[19]

While an OLED will consume around 40% of the power of an LCD displaying an image that is primarily black, it can use more than three times as much power to display an image with a white background, such as a document or web site.[20] This can lead to reduced battery life and higher energy usage unless a light-on-dark color scheme is used. The long-term reduced power usage may also prolong battery life or the useful life of the display and battery.

The energy savings that can be achieved using a light-on-dark color scheme are because of how OLED screens work: in an OLED screen, each subpixel generates its own light and it only consumes power when generating light. This is in contrast to how an LCD works: in an LCD, subpixels either block or allow light from an always-on (lit) LED backlight to pass through.

"AMOLED Black" color schemes (that use pure black instead of dark gray) do not necessarily save more energy than other light-on-dark color schemes that use dark gray instead of black, as the power consumption on an AMOLED screen decreases proportionately to the average brightness of the displayed pixels. Although it is true that AMOLED black does save more energy than dark gray, the additional energy savings are often negligible; AMOLED black will only give an additional energy saving of less than 1%, for instance, over the dark gray that's used in the dark theme for Google's official Android apps.[21] In November 2018, Google confirmed that dark mode on Android saved battery life.[22]

Web issues

[edit]

Some argue that a color scheme with light text on a dark background is easier to read on the screen, because the lower overall brightness causes less eyestrain, while others argue to the contrary.[23][24][25] Some pages on the web are designed for white backgrounds; Image assets (GIF, PNG, SVG, WOFF, etc) can be used improperly causing visual artifacts if dark mode is forced (instead of designed for) with a plugin like Dark Reader.

See also

[edit]

References

[edit]
  1. ^ https://sniklaus.com/darkpapers
  2. ^ Cummins, Eleanor (November 21, 2018). "Dark mode is easier on your eyes—and battery". Popular Science. Archived from the original on January 21, 2023.
  3. ^ Emily Price (November 11, 2018). "Use Dark Mode to Conserve Your Phone's Battery Power". Lifehacker. Archived from the original on January 27, 2023. Retrieved March 20, 2021.
  4. ^ Eisfeld, Henriette; Kristallovich, Felix (2020). The Rise of Dark Mode : A qualitative study of an emerging user interface design trend.
  5. ^ "Winning the Game of Contrast: MiniLEDs and Local Dimming Displays".
  6. ^ Murphy, David (October 28, 2020). "Embrace Evil by Enabling Dark Mode in Every App". Lifehacker. Archived from the original on November 16, 2020. Retrieved November 15, 2020.
  7. ^ "The Anniversary Update's most exciting features: Windows 10 users weigh in". PCWorld. Archived from the original on July 30, 2024. Retrieved August 7, 2023.
  8. ^ "macOS Mojave: Dark Mode, Stacks, & More". MacRumors. October 25, 2019. Archived from the original on August 8, 2022. Retrieved August 8, 2022.
  9. ^ Hardwick, Tim (June 6, 2019). "How to Enable Dark Mode in iOS 13". MacRumors. Archived from the original on August 8, 2022. Retrieved August 8, 2022.
  10. ^ Callaham, John (September 3, 2019). "Here's how to enable the Android 10 dark theme mode". Android Authority. Archived from the original on August 8, 2022. Retrieved August 8, 2022.
  11. ^ "The best dark mode extensions for Google Chrome". Android Authority. September 16, 2024. Retrieved December 3, 2024.
  12. ^ a b "prefers-color-scheme - CSS: Cascading Style Sheets". MDN Web Docs. Archived from the original on March 18, 2021. Retrieved March 18, 2021.
  13. ^ Porter, Jon (June 3, 2019). "Dark mode is coming to iOS 13". The Verge. Archived from the original on August 7, 2019. Retrieved June 5, 2019.
  14. ^ "The best dark mode extensions for Google Chrome". Android Authority. September 16, 2024. Retrieved December 3, 2024.
  15. ^ Mehta, Ivan (July 12, 2024). "Wikipedia's mobile website finally gets a dark mode". TechCrunch. Archived from the original on July 13, 2024. Retrieved July 13, 2024.
  16. ^ Purdy, Kevin (July 29, 2024). "Darkness reigns over Wikipedia as official dark mode comes to pass". Ars Technica. Archived from the original on July 29, 2024. Retrieved July 29, 2024.
  17. ^ Walsh, David (January 28, 2019). "prefers-color-scheme: CSS Media Query". David Walsh Blog. Archived from the original on March 17, 2021. Retrieved March 18, 2021.
  18. ^ "Window.matchMedia() - Web APIs". MDN Web Docs. Archived from the original on March 2, 2021. Retrieved March 18, 2021. The Window interface's matchMedia() method returns a new MediaQueryList object that can then be used to determine if the document matches the media query string, as well as to monitor the document to detect when it matches (or stops matching) that media query
  19. ^ Gottsegen, Gordon (November 10, 2018). "Using Android's dark mode improves battery life, Google confirms". CNET. Archived from the original on December 27, 2022.
  20. ^ Stokes, Jon. (2009-08-11) This September, OLED no longer "three to five years away" Archived 2012-01-25 at the Wayback Machine. Arstechnica.com. Retrieved 2011-10-04.
  21. ^ Raga, Dylan (June 27, 2019). "No, "AMOLED Black" Does NOT Save More Battery Than Dark Gray". XDA.
  22. ^ Welch, Chris (November 2, 2018). "Google confirms dark mode is a huge help for battery life on Android". The Verge. Archived from the original on December 8, 2019. Retrieved January 30, 2020.
  23. ^ Sharma, Adamya (June 29, 2020). "Love dark mode? Here's why you may still want to avoid it". Android Authority. Archived from the original on September 24, 2020. Retrieved September 12, 2020.
  24. ^ Clarke, Laurie (July 30, 2019). "Dark mode isn't as good for your eyes as you believe". Wired UK. ISSN 1357-0978. Archived from the original on June 22, 2023. Retrieved September 12, 2020.
  25. ^ Budiu, Raluca (February 2, 2020). "Dark Mode vs. Light Mode: Which Is Better?". Nielsen Norman Group. Archived from the original on February 14, 2023.