Type any color in any notation. ColorUI parses it and shows the equivalent in every other model - including the modern OKLCH and perceptual LAB.
#7C5CFFrgb(124, 92, 255)hsl(251.8, 100%, 68%)hsv(251.8, 63.9%, 100%)lch(49.76% 90.15 299.61)oklch(59.9% 0.2299 286.2)lab(49.76% 44.54 -78.38)#7C5CFFrgba(124, 92, 255, 1)hsla(251.8, 100.0%, 68.0%, 1)/* Modern, accessible color tokens */
:root {
--brand: #7c5cff; /* HEX */
--brand-rgb: rgb(124, 92, 255);
--brand-hsl: hsl(251.8, 100%, 68%);
--brand-oklch: oklch(59.9% 0.2299 286.2);
}