
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
ng-darkmode
Advanced tools
A library for adding dark-mode to your Angular 9 app.
ng-darkmode
?Navigate to your project's folder and run the following command:
$ npm install --save ng-darkmode
Next, import NgDarkmodeModule
and add it to the imports
array f your app:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { NgDarkmodeModule } from '@ngx-darkmode';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
NgDarkmodeModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
import { Component , OnInit } from '@angular/core';
import { NgDarkmodeService , WidgetOptions } from 'ng-darkmode';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
title = 'demo';
constructor(public darkmodeService: NgDarkmodeService){
}
ngOnInit(): void {
var opts: WidgetOptions = {
bottom: '64px', // default: '32px'
right: 'unset', // default: '32px'
left: '32px', // default: 'unset'
time: '0.5s', // default: '0.3s'
mixColor: '#fff', // default: '#fff'
backgroundColor: '#fff', // default: '#fff'
buttonColorDark: '#100f2c', // default: '#100f2c'
buttonColorLight: '#fff', // default: '#fff'
saveInCookies: false, // default: true,
label: '🌓', // default: ''
autoMatchOsTheme: true // default: true
}
this.darkmodeService.showWidget(opts);
}
}
FAQs
A library for adding dark-mode to your Angular 9 app.
We found that ng-darkmode demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.