Random Color Generator

#d95696 Color

Color Codes
Hex Code #d95696
RGB Code rgb(217, 86, 150)
HSL Code hsl(331, 63%, 59%)

#d95696 Color Syntax

rgb()

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

 main {
    background-color: rgb(217, 86, 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(331, 63%, 59%);
  }

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

RGB Code Hex Code Preview
rgb(217, 86, 150, 10%) #d956961a  
rgb(217, 86, 150, 20%) #d9569633  
rgb(217, 86, 150, 40%) #d956964C  
rgb(217, 86, 150, 60%) #d9569699  
rgb(217, 86, 150, 80%) #d95696CC  
rgb(217, 86, 150, 100%) #d95696FF  

Saturated and desaturated colors of #d95696

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

#d95696 Color Usage In CSS

 body {
    color: #d95696;
    }
 p {
    color: rgb(217, 86, 150);
    }
 header {
    border-bottom:1px solid #d95696;
    }
Recent Random Colors