<dark-mode-toggle>
Element
A custom element that allows you to easily put a Dark Mode 🌒 toggle
or switch on your site, so you can initially adhere to your users' preferences according to
prefers-color-scheme
,
but also allow them to (optionally permanently) override their system setting for just your site.
📚 Read all(!) about dark mode in the related article
Hello Darkness, My Old Friend.
Installation
From npm:
npm install --save dark-mode-toggle
In the browser:
import * as DarkModeToggle from 'https://cdn.pika.dev/dark-mode-toggle';
or
import * as DarkModeToggle from 'https://unpkg.com/dark-mode-toggle';
Usage
⚠️ The custom element assumes that you have organized your CSS in different files
that you load conditionally based on the media
attribute in the stylesheet's
corresponding link
element. This is a great performance pattern,
as you don't force people to download CSS that they don't need
based on their current theme preference, yet non-matching stylesheets still get loaded,
but don't compete for bandwidth in the critical rendering path.
You can also have more than one file per theme.
The example below illustrates the principle.
<main>
<h1>Hi there</h1>
<img src="https://googlechromelabs.github.io/dark-mode-toggle/demo/cat.jpg"
alt="Sitting cat in front of a tree" width="320" height="195"
intrinsicsize="640x390">
<p>Check out the dark mode toggle in the upper right corner!</p>
</main>
<aside>
<dark-mode-toggle
id="dark-mode-toggle-1"
legend="Theme Switcher"
appearance="switch"
dark="Dark"
light="Light"
remember="Remember this"
></dark-mode-toggle>
</aside>
Demo
See the custom element in action in the
interactive demo.
It shows four different kinds of synchronized <dark-mode-toggle>
s.
If you use Chrome on an Android device, pay attention to the address bar's
theme color, and also note how the favicon changes.
Properties
Properties can be set directly on the custom element at creation time, or
dynamically via JavaScript.
👉 Note that the dark and light icons are set via CSS variables, see
Style Customization below.
Name | Required | Values | Default | Description |
---|
mode | No | Any of "dark" or "light" | Defaults to whatever the user's preferred color scheme is according to prefers-color-scheme , or "light" if the user's browser doesn't support the media query. | If set overrides the user's preferred color scheme. |
appearance | No | Any of "toggle" or "switch" | Defaults to "toggle" . | The "switch" appearance conveys the idea of a theme switcher (light/dark), whereas "toggle" conveys the idea of a dark mode toggle (on/off). |
permanent | No | true if present | Defaults to not remember the last choice. | If present remembers the last selected mode ("dark" or "light" ), which allows the user to permanently override their usual preferred color scheme. |
legend | No | Any string | Defaults to no legend. | Any string value that represents the legend for the toggle or switch. |
light | No | Any string | Defaults to no label. | Any string value that represents the label for the "light" mode. |
dark | No | Any string | Defaults to no label. | Any string value that represents the label for the "dark" mode. |
remember | No | Any string | Defaults to no label. | Any string value that represents the label for the "remember the last selected mode" functionality. |
Events
colorschemechange
: Fired when the color scheme gets changed.permanentcolorscheme
: Fired when the color scheme should be permanently remembered or not.
Complete Example
Interacting with the custom element:
const darkModeToggle = document.querySelector('dark-mode-toggle');
darkModeToggle.mode = 'dark';
darkModeToggle.mode = 'light';
darkModeToggle.legend = 'Dark Mode';
darkModeToggle.light = 'off';
darkModeToggle.dark = 'on';
darkModeToggle.appearance = 'switch';
darkModeToggle.appearance = 'toggle';
darkModeToggle.remember = 'Remember this';
darkModeToggle.setAttribute('permanent', '');
darkModeToggle.removeAttribute('permanent');
Reacting on color scheme changes:
document.addEventListener('colorschemechange', (e) => {
console.log(`Color scheme changed to ${e.detail.colorScheme}.`);
});
Reacting on "remember the last selected mode" functionality changes:
document.addEventListener('permanentcolorscheme', (e) => {
console.log(`${e.detail.permanent ? 'R' : 'Not r'
}emembering the last selected mode.`);
});
Style Customization
See the demo source code for some concrete examples.
CSS Variable Name | Default | Description |
---|
--dark-mode-toggle-light-icon | No icon | The icon for the light state in background-image: notation. |
--dark-mode-toggle-dark-icon | No icon | The icon for the dark state in background-image: notation. |
--dark-mode-toggle-remember-icon-checked | No icon | The icon for the checked "remember the last selected mode" functionality in background-image: notation. |
--dark-mode-toggle-remember-icon-unchecked | No icon | The icon for the unchecked "remember the last selected mode" functionality in background-image: notation. |
--dark-mode-toggle-color | User-Agent stylesheet text color | The main text color in color: notation. |
--dark-mode-toggle-background-color | User-Agent stylesheet background color | The main background color in background-color: notation. |
--dark-mode-toggle-legend-font | User-Agent <legend> font | The font of the legend in shorthand font: notation. |
--dark-mode-toggle-label-font | User-Agent <label> font | The font of the labels in shorthand font: notation. |
--dark-mode-toggle-remember-font | User-Agent <label> font | The font of the "remember the last selected mode" functionality label in shorthand font: notation. |
--dark-mode-toggle-icon-filter | No filter | The filter for the dark icon (so you can use all black or all white icons and just invert one of them) in filter: notation. |
--dark-mode-toggle-remember-filter | No filter | The filter for the "remember the last selected mode" functionality icon (so you can use all black or all white icons and just invert one of them) in filter: notation. |
--dark-mode-toggle-active-mode-background-color | No background color | The background color for the currently active mode in background-color: notation. |
Notes
This is not an official Google product.
License
Copyright 2019 Google LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.