Random Color Generator

#cb8692 Color

Color Codes
Hex Code #cb8692
RGB Code rgb(203, 134, 146)
HSL Code hsl(350, 40%, 66%)

#cb8692 Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 134, 146);
   }

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(350, 40%, 66%);
  }

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 #cb8692

RGB Code Hex Code Preview
rgb(203, 134, 146, 10%) #cb86921a  
rgb(203, 134, 146, 20%) #cb869233  
rgb(203, 134, 146, 40%) #cb86924C  
rgb(203, 134, 146, 60%) #cb869299  
rgb(203, 134, 146, 80%) #cb8692CC  
rgb(203, 134, 146, 100%) #cb8692FF  

Saturated and desaturated colors of #cb8692

HSL Code Preview
hsl(350, 10%, 66%)  
hsl(350, 20%, 66%)  
hsl(350, 40%, 66%)  
hsl(350, 60%, 66%)  
hsl(350, 80%, 66%)  
hsl(350, 100%, 66%)  

#cb8692 Color Usage In CSS

 body {
    color: #cb8692;
    }
 p {
    color: rgb(203, 134, 146);
    }
 header {
    border-bottom:1px solid #cb8692;
    }
Recent Random Colors