https://github.com/jaspero/ng-color-picker
A simple color picker module with ReactiveForms capability, for Angular
https://github.com/jaspero/ng-color-picker
angular colorpicker
Last synced: about 2 months ago
JSON representation
A simple color picker module with ReactiveForms capability, for Angular
- Host: GitHub
- URL: https://github.com/jaspero/ng-color-picker
- Owner: Jaspero
- License: mit
- Created: 2017-07-15T15:25:46.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2021-01-25T11:06:54.000Z (over 5 years ago)
- Last Synced: 2025-08-25T15:24:20.627Z (10 months ago)
- Topics: angular, colorpicker
- Language: TypeScript
- Homepage:
- Size: 103 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
[](https://travis-ci.org/jaspero/ng-color-picker)
[](https://www.npmjs.com/package/@jaspero/ng-color-picker)
# NG Color Picker
A simple color picker module with ReactiveForms capability, for Angular.
```
npm install --save @jaspero/ng-color-picker
```
## Setup
Import `JasperoColorPickerModule` in your `@NgModule`:
```ts
@NgModule({
imports: [
JasperoColorPickerModule
],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule {}
```