@christophhu/ngx-dark-mode-toggle
TypeScript icon, indicating that this package has built-in type declarations

19.2.11 • Public • Published

Ngx-Dark-Mode-Toggle

Frameworks and Languages

Static Badge
Static Badge
Static Badge

Demo

image

Description

This Repository contains a simple Angular library for toggling between light and dark mode. It is designed to be easy to use and integrate into any Angular application. It uses the localStorage API to save the user's preference for dark mode, so that the setting persists across page reloads.

Installation

npm i @christophhu/ngx-dark-mode-toggle

Use

With default toggle

<dark-mode-toggle></dark-mode-toggle>

With custom toggle

<dark-mode-toggle>
  <input type="checkbox" class="toggle" id="toggle" (change)="toggleTheme()"/>
</dark-mode-toggle>
import { DarkModeToggleComponent } from "@christophhu/ngx-dark-mode-toggle";
import { DarkModeService } from '@christophhu/ngx-dark-mode-toggle';

export class OverviewComponent {
  
  constructor(private _darkModeService: DarkModeService) {}

  toggleTheme() {
    this._darkModeService.toggleTheme()
  }
}

License

This project is licensed under the MIT License.

The MIT License (MIT) Copyright © 2025

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Package Sidebar

Install

npm i @christophhu/ngx-dark-mode-toggle

Weekly Downloads

4

Version

19.2.11

License

MIT

Unpacked Size

17.5 kB

Total Files

9

Last publish

Collaborators

  • christophhu