Skip to content

Latest commit

 

History

History

color-picker

Angular color picker

GitHub license npm scope

A color picker widget for Angular with no dependencies.

Quick links

Installing

npm install --save nxt-color-picker

Import color picker module

import { ColorPickerModule } from 'nxt-color-picker'

@NgModule({
    ...
    imports: [
        ...
        ColorPickerModule
    ]
})

Include it in HTML template

<input [(nxtColor)]="color" 
    [style.background]="color"/>