Random Color Generator

#cb1db7 Color

Color Codes
Hex Code #cb1db7
RGB Code rgb(203, 29, 183)
HSL Code hsl(307, 75%, 45%)

#cb1db7 Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 29, 183);
   }

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(307, 75%, 45%);
  }

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

RGB Code Hex Code Preview
rgb(203, 29, 183, 10%) #cb1db71a  
rgb(203, 29, 183, 20%) #cb1db733  
rgb(203, 29, 183, 40%) #cb1db74C  
rgb(203, 29, 183, 60%) #cb1db799  
rgb(203, 29, 183, 80%) #cb1db7CC  
rgb(203, 29, 183, 100%) #cb1db7FF  

Saturated and desaturated colors of #cb1db7

HSL Code Preview
hsl(307, 10%, 45%)  
hsl(307, 20%, 45%)  
hsl(307, 40%, 45%)  
hsl(307, 60%, 45%)  
hsl(307, 80%, 45%)  
hsl(307, 100%, 45%)  

#cb1db7 Color Usage In CSS

 body {
    color: #cb1db7;
    }
 p {
    color: rgb(203, 29, 183);
    }
 header {
    border-bottom:1px solid #cb1db7;
    }
Recent Random Colors