Random Color Generator

#d6b2da Color

Color Codes
Hex Code #d6b2da
RGB Code rgb(214, 178, 218)
HSL Code hsl(294, 35%, 78%)

#d6b2da Color Syntax

rgb()

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

 main {
    background-color: rgb(214, 178, 218);
   }

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(294, 35%, 78%);
  }

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

RGB Code Hex Code Preview
rgb(214, 178, 218, 10%) #d6b2da1a  
rgb(214, 178, 218, 20%) #d6b2da33  
rgb(214, 178, 218, 40%) #d6b2da4C  
rgb(214, 178, 218, 60%) #d6b2da99  
rgb(214, 178, 218, 80%) #d6b2daCC  
rgb(214, 178, 218, 100%) #d6b2daFF  

Saturated and desaturated colors of #d6b2da

HSL Code Preview
hsl(294, 10%, 78%)  
hsl(294, 20%, 78%)  
hsl(294, 40%, 78%)  
hsl(294, 60%, 78%)  
hsl(294, 80%, 78%)  
hsl(294, 100%, 78%)  

#d6b2da Color Usage In CSS

 body {
    color: #d6b2da;
    }
 p {
    color: rgb(214, 178, 218);
    }
 header {
    border-bottom:1px solid #d6b2da;
    }
Recent Random Colors