Random Color Generator

#cb7da6 Color

Color Codes
Hex Code #cb7da6
RGB Code rgb(203, 125, 166)
HSL Code hsl(328, 43%, 64%)

#cb7da6 Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 125, 166);
   }

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(328, 43%, 64%);
  }

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

RGB Code Hex Code Preview
rgb(203, 125, 166, 10%) #cb7da61a  
rgb(203, 125, 166, 20%) #cb7da633  
rgb(203, 125, 166, 40%) #cb7da64C  
rgb(203, 125, 166, 60%) #cb7da699  
rgb(203, 125, 166, 80%) #cb7da6CC  
rgb(203, 125, 166, 100%) #cb7da6FF  

Saturated and desaturated colors of #cb7da6

HSL Code Preview
hsl(328, 10%, 64%)  
hsl(328, 20%, 64%)  
hsl(328, 40%, 64%)  
hsl(328, 60%, 64%)  
hsl(328, 80%, 64%)  
hsl(328, 100%, 64%)  

#cb7da6 Color Usage In CSS

 body {
    color: #cb7da6;
    }
 p {
    color: rgb(203, 125, 166);
    }
 header {
    border-bottom:1px solid #cb7da6;
    }
Recent Random Colors