[P-03]
Huedini
Huedini, the color picker for macOS. Copy any pixel's color in any format, build palettes, and keep your favorite hues a hotkey away.
Overview
Huedini, the color picker for macOS. Copy any pixel's color in any format, build palettes, and keep your favorite hues a hotkey away.
To open, open the menu bar, or use a global hotkey, or summon it from a script with the huedini://pick URL scheme.
Latest does not even open a window, just pick, copy, and paste. The most streamlined color picker experience.

Copy formats include HEX, RGB, HSL, HSB, and SwiftUI.
How it's built
let sampler = ColorSampler()
sampler.pick { color in
Clipboard.copy(color.formatted(as: store.defaultFormat))
store.pushHistory(color)
}