https://github.com/pncnmnp/okcolor
Generates aesthetically pleasing colors in the HSV space
https://github.com/pncnmnp/okcolor
color-picker hsv
Last synced: 2 months ago
JSON representation
Generates aesthetically pleasing colors in the HSV space
- Host: GitHub
- URL: https://github.com/pncnmnp/okcolor
- Owner: pncnmnp
- License: mit
- Created: 2022-10-14T03:07:35.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-14T03:54:52.000Z (almost 3 years ago)
- Last Synced: 2025-06-09T14:03:00.817Z (4 months ago)
- Topics: color-picker, hsv
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# okcolor
_Generates aesthetically pleasing RGB colors_# Install
```bash
python3 -m pip install okcolor
```# Usage
To generate RGB values:
```python
from okcolor import colors
tuple(colors.visualize(sat=0.5, val=0.95))
```To visualize random RGB values:
```python
colors.visualize()
```
# License
Under [MIT License](https://github.com/pncnmnp/okcolor/blob/master/LICENSE)