Skip to content
theme-switch / 1.2.1

theme-switch 1.2.1

Install from the command line:
Learn more about npm packages
$ npm install @mahozad/theme-switch@1.2.1
Install via package.json:
"@mahozad/theme-switch": "1.2.1"

About this version

Tests workflow Codecov Minified size

Animated icon

HTML light/dark/system theme animated switch button

A simple custom HTML element called <theme-switch>. This widget toggles between light theme, dark theme, and automatic theme (OS theme). It works by adding a custom attribute named data-theme to the html element of your page. You can style your page the way you like based on the value of that attribute. See below for an example.

See the demo.

It was inspired by this YouTube video and this library.

Use it in your page

Download the theme-switch.min.js file and reference it at the top of your HTML:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>My page title</title>
  <!-- Do not use defer or async attributes -->
  <script src="theme-switch.min.js"></script>
  <!-- Rest of the styles, scripts, etc. -->
</head>
<body>

  <theme-switch></theme-switch>

</body>

You can also use CDNs instead of downloading the script manually and hosting it yourself:

  • Using the latest version:
    <script src="https://unpkg.com/@mahozad/theme-switch"></script>
    <!-- OR -->
    <script src="https://cdn.jsdelivr.net/npm/@mahozad/theme-switch"></script>    
  • Using a specific version:
    <script src="https://unpkg.com/@mahozad/theme-switch@1.0.0"></script>
    <!-- OR -->
    <script src="https://cdn.jsdelivr.net/npm/@mahozad/theme-switch@1.0.0"></script>

Style the element

A custom element is no different from HTML built-in elements.
Use and style it however you want just like you would use and style a regular element (e.g. a div):

theme-switch {
    width: 64px;
    padding: 8px;
    background: #888;
    
    /* There is a special property called --theme-switch-icon-color
     * which you can set, to change the color of the icon in switch */
    --theme-switch-icon-color: #aabbcc;
}

Example styling of a page based on the selected theme

In your CSS stylesheet, specify your desired styles for light and dark themes. One way is to define custom CSS properties for your colors, sizes, etc. and redefine them (if needed) with new values for the dark theme:

/* These are applied for the default (light) theme */
/* (or when the toggle is auto, and the OS theme is light) */
:root {
    --my-page-background-color: #fff;
    --my-icons-color: #000;
    --my-primary-color: red;
}

/* These are applied for the dark theme */
/* (or when the toggle is auto, and the OS theme is dark) */
/* If a property has the same value for both light and dark themes, no need to redeclare it here */
[data-theme="dark"] {
    --my-page-background-color: #112233;
    --my-icons-color: #efefef;
}

body {
    background: var(--my-page-background-color);
}

Use it in Angular

Click to expand

From command line, install the library:

npm install --save @mahozad/theme-switch

In your angular.json file at the root of your project update the scripts property like this:

"scripts": [
  {
    "input": "node_modules/@mahozad/theme-switch/theme-switch.min.js",
    "inject": false,
    "bundleName": "theme-switch"
  }
]

Add the following to your app.module.ts file to enable HTML custom elements:

@NgModule({
    // ...
    schemas: [CUSTOM_ELEMENTS_SCHEMA]
})

In <head> of your index.html file add the script just as described above:

<script src="theme-switch.js"></script>

Finally, use the element anywhere you want:

<theme-switch></theme-switch>

Misc

The switch element fires (triggers) a custom event called themeToggle every time it is toggled (clicked). You can listen and react to it if you want:

document.addEventListener("themeToggle", event => {
    console.log(`Old theme: ${ event.detail.oldState }`);
    console.log(`New theme: ${ event.detail.newState }`);
    // More operations...
});

Other

See this article which is about creating HTML custom elements.

See the icon for switching themes (located in the top right corner) on Google Fonts site. Also see this site.

See this article for implementing dark/light theme on sites.

See this post for how to override dark/light theme for a site.


TODO:

Details


Assets

  • theme-switch-1.2.1-npm.tgz

Download activity

  • Total downloads 0
  • Last 30 days 0
  • Last week 0
  • Today 0