[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.

2026 · shipped
  • Swift
  • SwiftUI
  • macOS

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.

Huedini in action, showing the magnifier picking a color off the screen, the readout with the HEX value and copy button, and the recent history of picked colors.

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)
}