Palette
Palette is the Nim library of color.
Summary
| Latest Version | Unknown |
|---|---|
| License | Unknown |
| CI Status | Failing |
| Stars | 6 |
| Forks | 0 |
| Open Issues | 0 |
| Last Commit | 2022-04-27 |
| Downloads | 0 |
| Last Indexed | 2026-07-21 05:25 |
Tags
Installation
nimble install Palette
choosenim install Palette
git clone https://github.com/momeemt/Palette
OS Compatibility
| Platform | Linux | macOS | Windows | FreeBSD | OpenBSD | NetBSD | Android | iOS | WASM | Embedded |
|---|---|---|---|---|---|---|---|---|---|---|
| Palette | ✓ | ✓ | ✓ | - | - | - | - | - | - | - |
Source
| Repository | https://github.com/momeemt/Palette |
|---|---|
| Homepage | https://github.com/momeemt/Palette |
| Registry Source | github |
README
Palette
Palette is a color library written in Nim.
Feature
- Able to handle HSV, RGB, and CRYK
let myColor: tColor = newColor(100, 100, 100)
echo myColor
echo myColor.rgb
echo myColor.hsv
echo myColor.cmyk
- Some primary colors are available
- Can give HSV to visually check the color
bash:Check the color
palette --hue:<hue> --saturation:<saturation> --value:<value>