Random Color Generator

#cb7294 Color

Color Codes
Hex Code #cb7294
RGB Code rgb(203, 114, 148)
HSL Code hsl(337, 46%, 62%)

#cb7294 Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 114, 148);
   }

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(337, 46%, 62%);
  }

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

RGB Code Hex Code Preview
rgb(203, 114, 148, 10%) #cb72941a  
rgb(203, 114, 148, 20%) #cb729433  
rgb(203, 114, 148, 40%) #cb72944C  
rgb(203, 114, 148, 60%) #cb729499  
rgb(203, 114, 148, 80%) #cb7294CC  
rgb(203, 114, 148, 100%) #cb7294FF  

Saturated and desaturated colors of #cb7294

HSL Code Preview
hsl(337, 10%, 62%)  
hsl(337, 20%, 62%)  
hsl(337, 40%, 62%)  
hsl(337, 60%, 62%)  
hsl(337, 80%, 62%)  
hsl(337, 100%, 62%)  

#cb7294 Color Usage In CSS

 body {
    color: #cb7294;
    }
 p {
    color: rgb(203, 114, 148);
    }
 header {
    border-bottom:1px solid #cb7294;
    }
Recent Random Colors