colormin

Converts between hex, hsl, rgb and CSS keywords, in order to produce the smallest equivalent color value.

Example

Input

.box {
    background: hsl(134, 50%, 50%);
}

Output

.box {
    background: #40bf5e;
}