Package Exports
- node-color-picker
Readme
node-color-picker

A simple terminal color picker for Node.js.
Installation
npm i node-color-picker
Usage
// * index.js
import { colorPicker } from 'node-color-picker';
const app = async () => {
const color = await colorPicker();
console.log(color);
};
app();
Then run :
node index.js
Options
Type | Default | Description | |
---|---|---|---|
hint | boolean | True |
Whether to show the hint or not |
colorPicker(options);