Wikipedia is rolling out dark mode support
The MediaWiki project is enhancing accessibility by adjusting typography, introducing night mode preferences, and engaging with communities for feedback. Changes aim to improve readability and customization options for all users.
Read original articleThe MediaWiki project is focusing on improving accessibility for reading by making typographical changes and introducing preferences for night mode. The goal is to enhance readability for all users, including those with specific needs, by increasing the default font size and providing additional settings for typography and night mode preferences. These changes will be available for both logged-in and logged-out users. The decision to modify default typography is based on research findings and accessibility recommendations, aiming to align with WCAG recommendations for font size. Additionally, dark mode will soon be available for logged-in users on all Wikipedias, with a phased deployment plan based on wiki tiers. The project aims to provide a more comfortable reading experience for users, improve readability on both desktop and mobile sites, and allow for customization of typography preferences. The team plans to engage with communities for feedback and testing before implementing changes across all wikis.
Related
Size of Wikipedia
English Wikipedia has 6,841,238 articles with 4.5 billion words, 60,922,102 pages, and a growth rate of 14,000 articles monthly. Word count per article averages 668, showing consistent growth.
Notes on implementing dark mode
The article explores refining dark mode implementation on websites using Tailwind for styling. It emphasizes a tri-state setting (dark, light, system default), local storage usage, and technical considerations for a seamless experience.
Show HN: I am building an open-source Confluence and Notion alternative
Docmost is an open-source collaborative wiki software in beta, offering real-time collaboration, permissions management, and more. Users can access the website for details, documentation, and development resources.
Website Themes with uBlock Origin
The blog post explores using uBlock Origin for creating website themes, emphasizing security and performance benefits over other extensions. It demonstrates CSS customization and offers a dark mode skin for Hacker News. Darek Kay, a software developer, shares tips for syncing styles across devices.
Tell HN: Wikipedia dark mode for desktop is in beta
Wikipedia introduces dark mode for mobile apps and site, extending to desktop in mid-July 2024. Users can enable it via preferences, gadgets, and CSS. Caution advised with browser extensions for security.
Like in this: https://en.m.wikipedia.org/wiki/Hopf_bifurcation
You cannot view a page about electronic circuits with dark mode on as they blend in with the background.
s=document.createElement('style');
s.textContent=`
* {
color: #2c2 !important;
background: #222 !important;
font-family: arial !important;
}
`;
document.head.appendChild(s);
I use a lot of bookmarklets, so I wrote a tool to convert clean code to bookmarklets and vice versa:https://chromewebstore.google.com/detail/dark-reader/eimadpb...
In a broader sense, the whole design of a site could be selectable via the browser. Similar to how CSS Zengarden works:
But with layouts that are stored on the user's computer and applicable to every website.
Dark mode is not as good for your eyes as you believe (wired.com)
One of my old CS teachers would rant about googles evil choice of white background.
Related
Size of Wikipedia
English Wikipedia has 6,841,238 articles with 4.5 billion words, 60,922,102 pages, and a growth rate of 14,000 articles monthly. Word count per article averages 668, showing consistent growth.
Notes on implementing dark mode
The article explores refining dark mode implementation on websites using Tailwind for styling. It emphasizes a tri-state setting (dark, light, system default), local storage usage, and technical considerations for a seamless experience.
Show HN: I am building an open-source Confluence and Notion alternative
Docmost is an open-source collaborative wiki software in beta, offering real-time collaboration, permissions management, and more. Users can access the website for details, documentation, and development resources.
Website Themes with uBlock Origin
The blog post explores using uBlock Origin for creating website themes, emphasizing security and performance benefits over other extensions. It demonstrates CSS customization and offers a dark mode skin for Hacker News. Darek Kay, a software developer, shares tips for syncing styles across devices.
Tell HN: Wikipedia dark mode for desktop is in beta
Wikipedia introduces dark mode for mobile apps and site, extending to desktop in mid-July 2024. Users can enable it via preferences, gadgets, and CSS. Caution advised with browser extensions for security.