RORK LABJP
MAX — Rork Max is built on Claude Code and Claude Opus 4.6, generating native Swift apps directly instead of React NativeAPPLE — Rork Max targets the whole Apple ecosystem: iPhone, iPad, Apple Watch, Apple TV, Vision Pro, and iMessageWORKFLOW — In practice, users settle into letting the AI scaffold while they rewrite the state management and data layer themselvesSEED — Rork raised a $15M seed led by Left Lane Capital in April, with Peak XV, True Ventures, and a16z Speedrun joiningPAPERLINE — Rork acquired app builder Paperline and says it will stay acquisitive to bring in engineering talentREVIEW — Three-month revisit reviews are growing, clarifying where the tool shines and where it doesn'tMAX — Rork Max is built on Claude Code and Claude Opus 4.6, generating native Swift apps directly instead of React NativeAPPLE — Rork Max targets the whole Apple ecosystem: iPhone, iPad, Apple Watch, Apple TV, Vision Pro, and iMessageWORKFLOW — In practice, users settle into letting the AI scaffold while they rewrite the state management and data layer themselvesSEED — Rork raised a $15M seed led by Left Lane Capital in April, with Peak XV, True Ventures, and a16z Speedrun joiningPAPERLINE — Rork acquired app builder Paperline and says it will stay acquisitive to bring in engineering talentREVIEW — Three-month revisit reviews are growing, clarifying where the tool shines and where it doesn't
Articles/App Dev
App Dev/2026-06-23Intermediate

Why Wallpapers Look Dull on Device: Taming Display P3 in the Delivery Pipeline

The same wallpaper looked dull once set on device. The culprit was a mix-up between wide-gamut Display P3 and sRGB. Beyond embedding profiles, here is how to tell whether the pixels are truly wide-gamut, a pre-delivery gate script, and the Android wide-color story, across six wallpaper apps.

iOS109wallpaper app22Display P3color gamutexpo-image5Rork502

Premium Article

One morning, a wallpaper I had previewed in my own app looked different once I actually set it on the lock screen. A deep blue sky in the preview turned slightly gray and muted after it was applied. My first guess was display brightness, but matching the brightness did not close the gap.

The cause was wide color, the thing Apple calls Display P3, being confused with sRGB. Ever since I saw a ring of light above Kichijoji Station in 2019, I have become fairly sensitive to how color and light read, yet I had never noticed that my own delivery pipeline was quietly thinning the colors. This is a record of how I, an indie developer running six wallpaper apps, sorted out the gamut one app at a time, along with the commands I leaned on. It goes past "just embed a profile" into telling whether the pixels are truly wide-gamut, gating delivery so nothing slips through, and the way Android differs.

Why colors looked muted on device

Since the iPhone 7 era, iPhones have shipped with Display P3, a wide-gamut display. It can show a noticeably larger range of color than sRGB, so vivid reds and greens come through honestly. The trouble appears when an image carries no color profile (no ICC profile) at all.

iOS assumes a profile-less image is sRGB and renders it that way. But some of the wallpapers I was shipping had their profile stripped during export, while the pixels themselves had been painted in the P3 gamut. Reading P3 numbers with an sRGB ruler shifts everything toward lower saturation. That was the "dull" look, exactly. When the profile is embedded correctly, iOS matches the gamut automatically, so even older non-P3 devices render without breaking.

There is one distinction that matters here. Color has two parts: the pixel numbers, and the profile that says which ruler to read those numbers with. If either is missing, you do not get the intended color. The dullness came from a mismatch: the pixels were P3, but with no profile they were read on the sRGB ruler.

Check the gamut first

Fixing by guesswork leads straight into a swamp. The first thing I did was mechanically check which gamut my shipping images actually carried. On macOS, sips can read the embedded profile.

# Check the color profile of a single file
sips --getProperty profile wallpaper_001.jpg
 
# Take a quick inventory across a delivery folder
for f in ./assets/*.jpg; do
  echo "$f"
  sips --getProperty profile "$f" 2>/dev/null | grep -i "profile:" || echo "  (no profile)"
done

Inventorying roughly 2,000 images across the six apps, nearly a third came back either with no profile, or tagged sRGB while the pixels were actually P3. The direct cause was an export setting left on "do not embed color profile." Just fixing that erased most of the dullness.

Thank you for reading this far.

Continue Reading

What follows includes implementation code, benchmarks, and practical content we hope you'll find useful. This site runs without ads — server and development costs are supported entirely by members like you. If it's been helpful, we'd be truly grateful for your support.

WHAT YOU'LL LEARN
Concrete steps to inventory delivery images with sips and re-embed a unified Display P3 profile
How to detect whether pixels actually use the wide gamut with ImageMagick, so you never mis-assign P3
A shell gate that drives 'no profile' to zero before shipping, plus the Android wide-color and App Store screenshot pitfalls
Secure payment via Stripe · Cancel anytime

Unlock This Article

Get full access to the rest of this article. Buy once, read anytime. This site is ad-free — your support goes directly toward keeping it running.

or
Unlock all articles with Membership →
Share

Thank You for Reading

Rork Lab is ad-free, supported entirely by members like you. We publish practical guides daily with implementation code, benchmarks, and production-ready patterns. If you've found it useful, we'd love to have you on board.

  • Copy-paste ready implementation code
  • New advanced guides published daily
  • $5/mo or $10 for lifetime access
View Membership →

Related Articles

App Dev2026-05-31
Getting Users All the Way to 'Set as Wallpaper' on iOS — Save-to-Photos Permissions and Shortcuts
iOS apps cannot set the wallpaper directly. Here is how I handle add-only photo permissions, Live Photo saving, guiding users to Settings, and Shortcuts automation, with real numbers from running six wallpaper apps.
App Dev2026-04-18
Building a Wallpaper App with Rork and Getting It on the App Store — A Full Account
A complete record of building a wallpaper app with Rork from zero to the App Store — the iOS wallpaper API limitation, WebP optimization, and how to structure revenue without breaking the experience.
App Dev2026-06-29
Clipboard UX in Expo apps — copy and paste without flooding users with iOS's paste banner
When you wire up copy and paste with expo-clipboard, iOS's paste permission banner can fire constantly and quietly erode trust. Here's exactly when the banner appears, and how hasStringAsync lets you gate a Paste button without ever reading the contents.
📚RECOMMENDED BOOKS
Build a Large Language Model (From Scratch)
Sebastian Raschka
LLM Dev
Prompt Engineering for LLMs
Berryman & Ziegler
Prompting
AI Engineering
Chip Huyen
AI Eng
* Contains affiliate links
See all →