Random Color Generator

#c16188 Color

Color Codes
Hex Code #c16188
RGB Code rgb(193, 97, 136)
HSL Code hsl(336, 44%, 57%)

#c16188 Color Syntax

rgb()

 rgb(Red, Green, Blue);
 rgba(Red, Green, Blue, Alpha);

 main {
    background-color: rgb(193, 97, 136);
   }

R(red), G(green), B(blue) can be number between 0-255.
A parameter is a hex characters (0–9, A–F) and optional.

hsl()

 hsl(hue saturation lightness);
 hsl(hue saturation lightness / alpha);

 div {
  background-color: hsl(336, 44%, 57%);
  }

Saturation value is a percentage value between 0% unsaturated and 100% fully saturated.
Lightness value is a percentage value between 100% is white and 0% is black.

Lighter and darker colors of #c16188

RGB Code Hex Code Preview
rgb(193, 97, 136, 10%) #c161881a  
rgb(193, 97, 136, 20%) #c1618833  
rgb(193, 97, 136, 40%) #c161884C  
rgb(193, 97, 136, 60%) #c1618899  
rgb(193, 97, 136, 80%) #c16188CC  
rgb(193, 97, 136, 100%) #c16188FF  

Saturated and desaturated colors of #c16188

HSL Code Preview
hsl(336, 10%, 57%)  
hsl(336, 20%, 57%)  
hsl(336, 40%, 57%)  
hsl(336, 60%, 57%)  
hsl(336, 80%, 57%)  
hsl(336, 100%, 57%)  

#c16188 Color Usage In CSS

 body {
    color: #c16188;
    }
 p {
    color: rgb(193, 97, 136);
    }
 header {
    border-bottom:1px solid #c16188;
    }
Recent Random Colors