Black
- Input
- rgb(0, 0, 0)
- Expected output
- cmyk(0%, 0%, 0%, 100%)
Simple edge case.
rgb to cmyk
When the intent is print, it makes more sense to highlight CMYK than showing every format at once.
Simple edge case.
Classic RGB primary example.
Yes. The idea is to show equivalent representations of the same color in different notations, making it easier to use the value across CSS, design systems, visual documentation and design-to-code workflows. You type in one format and get all the others synchronized at once, including HSV, CMYK, LAB and XYZ.
Use it as a reference. For production, convert with the ICC profile required by the print shop.
It can. Some RGB colors are outside a print CMYK gamut.
#00fa9argb(0, 250, 154)cmyk(100%, 0%, 38%, 2%)Conversion is purely mathematical and local. Nothing is sent to any server.