background-color-randomizer
v1.0.2
Published
Randomize brower's background color
Downloads
8
Readme
Example
$ npm install background-color-randomizer --save
import { Component } from '@angular/core';
import { randomizeBgColors } from 'background-color-randomizer';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
public title = 'app';
constructor() {
randomizeBgColors();
}
}