tools/snippet
toolsshare
Code Snippet Studio
Turn code into a beautiful, shareable image — syntax themes, window chrome, gradient backdrops and fonts — exported to a 2× PNG entirely in your browser. No upload, no watermark.
Renders to a 2× PNG entirely in your browser — nothing uploaded
// gamut-aware OKLCH → vivid, never clipping
export function maxChroma(L: number, h: number): number {
let lo = 0, hi = 0.4;
for (let i = 0; i < 22; i++) {
const mid = (lo + hi) / 2;
inGamut({ L, C: mid, h }) ? (lo = mid) : (hi = mid);
}
return lo;
}2× resolution · renders in your browser
Code
Background