惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

M
MIT News - Artificial intelligence
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
J
Java Code Geeks
G
Google Developers Blog
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
月光博客
月光博客
B
Blog
WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
博客园_首页
人人都是产品经理
人人都是产品经理
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
Jina AI
Jina AI
S
SegmentFault 最新的问题
H
Help Net Security
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
Google DeepMind News
Google DeepMind News

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
The true carbon cost of dark mode and whether it actually...
Amira Chaaba · 2026-05-12 · via DEV Community

Dark mode can save energy. It can also save nothing. In some cases it can even increase energy consumption. The outcome depends on three factors: the type of screen, the brightness level, and what the user actually does after switching.

Why screen type changes everything

Dark mode only affects energy consumption because of how the screen physically produces light. Different screen technologies respond very differently.

OLED and AMOLED screens (organic light-emitting diode) illuminate each pixel individually. A black pixel on an OLED screen is literally turned off, drawing no power at all. The darker the content, the fewer pixels need to light up, and the less energy the display consumes.

LCD and LED screens work differently. They use a constant backlight that shines through a liquid crystal layer. The backlight is always on at full intensity regardless of what's on the screen. A black pixel on an LCD is created by blocking light, not by turning it off. The energy consumption is virtually identical whether the screen is fully white or fully black.

This means dark mode's energy savings only exist on OLED and AMOLED displays. On LCD screens, which still make up the majority of laptops and many budget phones, dark mode saves effectively nothing in power.

Note
Most laptops sold today still use LCD or LED-backlit LCD displays. OLED laptops are growing fast (up 33% projected for 2026 with Apple's OLED MacBook Pro launch) but still represent a small share of the overall laptop market. On smartphones, OLED adoption has grown significantly since 2017, but many budget devices still ship with LCD screens.

What the research actually shows

The most comprehensive study on dark mode energy savings was conducted by Purdue University and presented at MobiSys 2021. The researchers built a per-frame OLED power profiler to measure real energy consumption across popular Android apps (Google Maps, YouTube, Google News, Calendar, Phone, Calculator) on multiple Pixel and Moto devices.

Their findings contradicted the popular narrative:

At 30 to 50% brightness (where most people keep their screens indoors with auto-brightness on), switching from light mode to dark mode saved only 3 to 9% of total phone power.
At 100% brightness (outdoor conditions or direct sunlight), the savings jumped dramatically to 39 to 47%.
Lowering the brightness itself was far more impactful than switching color schemes. Reducing brightness from 100% to 50% cut OLED power draw by roughly 10x, regardless of whether the content was dark or light.

The widely-cited figure of "up to 63% savings" comes from Google's own testing of Google Maps at maximum brightness on OLED devices. Google's testing of YouTube in dark mode on OLED at moderate brightness showed roughly 15% savings. These numbers are real, but they describe specific apps at specific brightness levels, not typical daily usage.

FYI
Most articles about dark mode sustainability cite the high-end numbers (47%, 63%) without mentioning that these require 100% brightness and specific apps. At typical indoor brightness (30 to 50%), the savings drop to 3 to 9%. That's a meaningful difference when arguing for dark mode as a Green IT strategy.

I wanted this to be short, if this interested you check the full article covering also the "Rebound Effect" and what is it, what this means for the websites and what are the challenges facing the web designers.