New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ngx-color-scheme

Package Overview
Dependencies
Maintainers
0
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-color-scheme

Add dark mode to your Angular applications with ease!

  • 19.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9
decreased by-96.48%
Maintainers
0
Weekly downloads
 
Created
Source


GitHub Codecov Travis (.com) semantic-release npm bundle size npm npm

ngx-color-scheme is a zero-dependency library that helps you integrate dark mode into you Angular applications with ease!

👉🏻 Live Demo 👈🏻

Inspired by the awesome use-dark-mode library

Forked from the not more maintained angular-dark-mode library

Installation

To use ngx-color-scheme in your project install it via npm:

// npm npm i ngx-color-scheme

or provide it inside the app.module.ts file

import { ColorSchemeService } from 'ngx-color-scheme'

export function initColorScheme(colorSchemeService: ColorSchemeService) {
  return () => colorSchemeService
}

@NgModule({
// ...
providers: [
    {
      provide: APP_INITIALIZER, // If you wish to instantiate it before the App renders
      useFactory: initColorScheme,
      deps: [ColorSchemeService],
      multi: true,
    },
]
})

SSR

In case you'd like to use it with Angular SSR. As the library is using document.body, you need to instantiate it inside the app.component.ts file.

// app.component.ts
import { afterRender } from '@angular/core'
import { ColorSchemeService } from 'ngx-color-scheme'

export class AppComponent {
  constructor(
    private _colorSchemeService: ColorSchemeService,
  ) {
    const singleRender = afterRender(() => {
      this._colorSchemeService.init()
      singleRender.destroy()
    })
  }
}

Usage

In order to use ngx-color-scheme you need to inject the service somewhere in your applications - presumably where you hold the dark mode toggle, and get the dark mode value from the exported colorScheme$ Observable:

// color-scheme-toggle.component.ts

@Component({
  selector: 'app-color-scheme-toggle',
  template: `<input
    type="checkbox"
    [checked]="colorScheme$ | async"
    (change)="onToggle()"
  />`,
})
export class ColorSchemeToggle {
  colorScheme$ = this.colorSchemeService.colorScheme$.asReadonly();

  constructor(private colorSchemeService: ColorSchemeService) {}

  onToggle(): void {
    this.colorSchemeService.toggle();
  }
}

Next, include global styles and some text to reflect the mode:

/* styles.css */

body.dark-mode {
  background-color: #2d3436;
  color: #dfe6e9;
}

body.light-mode {
  background-color: #dfe6e9;
  color: #2d3436;
}
// app.component.ts

@Component({
  selector: 'app-root',
  template: `
    <h1>ngx-color-scheme</h1>
    <p>Toggle to see magic happens!</p>
    <app-color-scheme-toggle></app-color-scheme-toggle>
  `,
})
export class AppComponent {}

You're all set!
Save and run your application, play with the toggle button to change between modes.

Options

ngx-color-scheme ships with the following options:

OptionDescriptionDefault Value
colorSchemeClassdark mode css class name'dark-mode'
lightModeClasslight mode css class name'light-mode'
preloadingClasscss class name to flag that element is in preloading state'color-scheme-preloading'
storageKeylocalStorage key to persist dark mode'dark-mode'
elementtarget HTMLElement to set given css classesdocument.body

All options are set to default and can be configured via the COLOR_SCHEME_OPTIONS InjectionToken:

import { COLOR_SCHEME_OPTIONS } from 'ngx-color-scheme';

@NgModule({
    ...
    providers: [
        {
            provide: COLOR_SCHEME_OPTIONS,
            useValue: {
                colorSchemeClass: 'my-dark-mode',
                lightModeClass: 'my-light-mode'
            }
        }
    ]
    ...
})
export class AppModule {}

Transitioning

It is often useful to transition the changes between dark and light modes, and most of the time we would want to skip the initial transition, in order to achieve this use the preloadingClass option like so:

/* styles.css */
...

body:not(.color-scheme-preloading) {
  transition: all 0.3s linear;
}

...

Contributors

Thanks goes to these wonderful people:


Tal Ohana

💻 📖 🚧

Guy Shemesh

🎨

Raphaël Balet

🚧

Keywords

FAQs

Package last updated on 25 Jan 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc