Mac color picker shortcut: built-in or global?

Use Digital Color Meter's Shift-Command-C for occasional copies. Set a global picker hotkey when sampling from other apps is part of your regular work.

Published May 24, 2026 Updated Jul 19, 2026 6 min read By John Sciacchitano

The built-in Mac color picker shortcut is Shift-Command-C in Digital Color Meter. It copies the displayed color value as text while the app is active. For repeated sampling while Safari, Xcode, Preview, or another app is frontmost, a configurable global shortcut is the faster fit.

TeenyColor defaults to Option-Shift-C for picking a color and Option-Shift-X for opening its popover. Both shortcuts can be changed or cleared. Set the copy format before testing so the first paste produces the value your next tool expects.

Disclosure: I build TeenyColor. The TeenyColor details below come from its current local Swift source. Apple's Digital Color Meter is the better starting point for occasional color inspection.

Choose the shortcut by frequency

Workflow Shortcut Tradeoff
Copy an occasional color value Digital Color Meter: Shift-Command-C Built in, but Digital Color Meter must be the active app.
Copy the current color as an image Digital Color Meter: Option-Command-C Copies an image rather than a code value.
Pick from another active app TeenyColor: Option-Shift-C by default Global and configurable, but it adds a third-party utility.
Open recent or pinned colors TeenyColor: Option-Shift-X by default Worth keeping only when history is part of the workflow.

Use Digital Color Meter for an occasional copy

Open Digital Color Meter from Applications > Utilities. Move the pointer over the pixel you want. Choose the displayed value format from the View menu, then press Shift-Command-C to copy the current value as text.

Apple also provides Command-X to lock the sampling aperture horizontally, Command-Y to lock it vertically, and Command-L to lock it in both directions. Locking the aperture is useful when moving the pointer would otherwise change the sampled pixel before you copy.

This is a capable built-in workflow. Its limit is context: the copy commands belong to Digital Color Meter, so you switch to that app before invoking them.

Use a global hotkey when the sampling repeats

TeenyColor registers its picker and popover shortcuts with the macOS Carbon hotkey API. The current source requires a real key plus Command, Option, or Control; Shift by itself is rejected. Carbon registration lets the shortcut work while another app is frontmost without relying on Input Monitoring.

When the pick shortcut fires, TeenyColor opens Apple's NSColorSampler. After you select a screen color, the app converts it to sRGB, adds it to local history, and copies the format selected in settings. Supported output includes hex, RGB, HSL, HSB/HSV, SwiftUI Color, UIColor, and CSS rgba.

The default Option-Shift-C is a starting point, not a rule. Change it if your design app, editor, browser, or window manager already owns that combination.

Set the copied format before building muscle memory

A picker shortcut saves little time if you must reformat every result. Choose the destination first:

  • Use hex for a compact web or design handoff.
  • Use RGB or HSL when you need channel values for debugging.
  • Use SwiftUI Color for a SwiftUI code path.
  • Use UIColor for UIKit work.
  • Use CSS rgba when alpha belongs in the pasted CSS value.

The Mac color-code format guide covers those output choices without mixing them into shortcut setup.

Keep the popover shortcut only when history helps

The separate TeenyColor popover contains recent picks, pinned colors, names, contrast badges, and export. Keep its shortcut if you return to those items several times a day. If you normally pick once and paste once, use only the picker hotkey and open history from the menu bar when needed.

This follows the clean Mac menu bar method: leave a task permanently visible only when its current state changes an action. A global shortcut is a better home for work that is useful but not continuously visible.

If color review happens during a performance investigation, the connected CPU, memory, and fan menu bar guide explains which system signals belong in that same limited space.

Common questions

What is the built-in Mac color picker shortcut?

In Digital Color Meter, press Shift-Command-C to copy the current color value as text. Press Option-Command-C to copy it as an image. Digital Color Meter must be open and frontmost for these app shortcuts.

Does macOS have a global color picker shortcut?

macOS includes Digital Color Meter shortcuts, but they are commands inside that app. TeenyColor adds a configurable global pick shortcut that can be invoked while another app is frontmost and copies the selected format after you choose a pixel.

Does a TeenyColor shortcut require Input Monitoring?

No. The current TeenyColor source registers its global picker and popover shortcuts with the macOS Carbon hotkey API. That shortcut registration does not rely on Input Monitoring permission.

Sources checked

Pick once, paste the right format.

TeenyColor adds configurable global shortcuts, local color history, pinned colors, and practical code formats.