ImageColorPicker.com

    CMYK to RGB converter

    Convert any CMYK color to RGB — instantly and for free

    #E81E61

    Paste any color value — we detect the format for you.

    C
    M
    Y
    K
    RGB result
    rgb(232, 30, 97)
    Red
    232
    Green
    30
    Blue
    97

    This color in every format

    Need to show a print color on screen? Converting CMYK to RGB gives you the light-based equivalent of your ink percentages — the values a monitor, a mockup or a web page can actually display.

    How CMYK to RGB conversion works

    1. Turn all four percentages into fractions between 0 and 1.
    2. Apply the key component first: every channel is scaled by (1 − K).
    3. Compute R = 255 × (1 − C) × (1 − K), G = 255 × (1 − M) × (1 − K) and B = 255 × (1 − Y) × (1 − K).
    4. Round each channel to a whole number between 0 and 255.

    Worked example

    CMYK cmyk(0%, 87%, 58%, 9%)=RGB rgb(232, 30, 97)

    Approximate. A screen can show more colors than ink can produce, so the RGB result usually looks brighter and more saturated than the printed piece.

    CMYK and RGB explained

    What is CMYK?

    CMYK is the four-ink model used in printing: cyan, magenta, yellow and key (black), each as a percentage from 0 to 100. Ink subtracts light instead of emitting it, so CMYK covers fewer colors than a screen — which is why bright screen colors often look duller once they are printed.

    Syntax:
    cmyk(C%, M%, Y%, K%)
    Range:
    0–100% per ink
    Best for:
    print, packaging, press-ready artwork

    What is RGB?

    RGB describes a color as three channels of light — red, green and blue — each from 0 to 255. It mirrors how screens actually work: all three at 255 give white, all at 0 give black. RGB is the right choice whenever you need to calculate with a color, and rgba() adds transparency on top.

    Syntax:
    rgb(R, G, B)
    Range:
    0–255 per channel
    Best for:
    code, canvas, transparency with rgba()

    CMYK to RGB reference table

    The most common CSS colors, converted from CMYK to RGB.

    ColorCMYKRGB
    blackcmyk(0%, 0%, 0%, 100%)rgb(0, 0, 0)
    whitecmyk(0%, 0%, 0%, 0%)rgb(255, 255, 255)
    redcmyk(0%, 100%, 100%, 0%)rgb(255, 0, 0)
    limecmyk(100%, 0%, 100%, 0%)rgb(0, 255, 0)
    bluecmyk(100%, 100%, 0%, 0%)rgb(0, 0, 255)
    yellowcmyk(0%, 0%, 100%, 0%)rgb(255, 255, 0)
    orangecmyk(0%, 35%, 100%, 0%)rgb(255, 166, 0)
    tealcmyk(100%, 0%, 0%, 50%)rgb(0, 128, 128)
    purplecmyk(0%, 100%, 0%, 50%)rgb(128, 0, 128)
    graycmyk(0%, 0%, 0%, 50%)rgb(128, 128, 128)

    Frequently asked questions