Random Color Generator

#d34196 Color

Color Codes
Hex Code #d34196
RGB Code rgb(211, 65, 150)
HSL Code hsl(325, 62%, 54%)

#d34196 Color Syntax

rgb()

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

 main {
    background-color: rgb(211, 65, 150);
   }

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(325, 62%, 54%);
  }

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

RGB Code Hex Code Preview
rgb(211, 65, 150, 10%) #d341961a  
rgb(211, 65, 150, 20%) #d3419633  
rgb(211, 65, 150, 40%) #d341964C  
rgb(211, 65, 150, 60%) #d3419699  
rgb(211, 65, 150, 80%) #d34196CC  
rgb(211, 65, 150, 100%) #d34196FF  

Saturated and desaturated colors of #d34196

HSL Code Preview
hsl(325, 10%, 54%)  
hsl(325, 20%, 54%)  
hsl(325, 40%, 54%)  
hsl(325, 60%, 54%)  
hsl(325, 80%, 54%)  
hsl(325, 100%, 54%)  

#d34196 Color Usage In CSS

 body {
    color: #d34196;
    }
 p {
    color: rgb(211, 65, 150);
    }
 header {
    border-bottom:1px solid #d34196;
    }
Recent Random Colors