Random Color Generator

#d32881 Color

Color Codes
Hex Code #d32881
RGB Code rgb(211, 40, 129)
HSL Code hsl(329, 68%, 49%)

#d32881 Color Syntax

rgb()

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

 main {
    background-color: rgb(211, 40, 129);
   }

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(329, 68%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(211, 40, 129, 10%) #d328811a  
rgb(211, 40, 129, 20%) #d3288133  
rgb(211, 40, 129, 40%) #d328814C  
rgb(211, 40, 129, 60%) #d3288199  
rgb(211, 40, 129, 80%) #d32881CC  
rgb(211, 40, 129, 100%) #d32881FF  

Saturated and desaturated colors of #d32881

HSL Code Preview
hsl(329, 10%, 49%)  
hsl(329, 20%, 49%)  
hsl(329, 40%, 49%)  
hsl(329, 60%, 49%)  
hsl(329, 80%, 49%)  
hsl(329, 100%, 49%)  

#d32881 Color Usage In CSS

 body {
    color: #d32881;
    }
 p {
    color: rgb(211, 40, 129);
    }
 header {
    border-bottom:1px solid #d32881;
    }
Recent Random Colors