Random Color Generator

#c74583 Color

Color Codes
Hex Code #c74583
RGB Code rgb(199, 69, 131)
HSL Code hsl(331, 54%, 53%)

#c74583 Color Syntax

rgb()

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

 main {
    background-color: rgb(199, 69, 131);
   }

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(331, 54%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(199, 69, 131, 10%) #c745831a  
rgb(199, 69, 131, 20%) #c7458333  
rgb(199, 69, 131, 40%) #c745834C  
rgb(199, 69, 131, 60%) #c7458399  
rgb(199, 69, 131, 80%) #c74583CC  
rgb(199, 69, 131, 100%) #c74583FF  

Saturated and desaturated colors of #c74583

HSL Code Preview
hsl(331, 10%, 53%)  
hsl(331, 20%, 53%)  
hsl(331, 40%, 53%)  
hsl(331, 60%, 53%)  
hsl(331, 80%, 53%)  
hsl(331, 100%, 53%)  

#c74583 Color Usage In CSS

 body {
    color: #c74583;
    }
 p {
    color: rgb(199, 69, 131);
    }
 header {
    border-bottom:1px solid #c74583;
    }
Recent Random Colors