Random Color Generator

#d6a2a3 Color

Color Codes
Hex Code #d6a2a3
RGB Code rgb(214, 162, 163)
HSL Code hsl(359, 39%, 74%)

#d6a2a3 Color Syntax

rgb()

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

 main {
    background-color: rgb(214, 162, 163);
   }

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(359, 39%, 74%);
  }

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

RGB Code Hex Code Preview
rgb(214, 162, 163, 10%) #d6a2a31a  
rgb(214, 162, 163, 20%) #d6a2a333  
rgb(214, 162, 163, 40%) #d6a2a34C  
rgb(214, 162, 163, 60%) #d6a2a399  
rgb(214, 162, 163, 80%) #d6a2a3CC  
rgb(214, 162, 163, 100%) #d6a2a3FF  

Saturated and desaturated colors of #d6a2a3

HSL Code Preview
hsl(359, 10%, 74%)  
hsl(359, 20%, 74%)  
hsl(359, 40%, 74%)  
hsl(359, 60%, 74%)  
hsl(359, 80%, 74%)  
hsl(359, 100%, 74%)  

#d6a2a3 Color Usage In CSS

 body {
    color: #d6a2a3;
    }
 p {
    color: rgb(214, 162, 163);
    }
 header {
    border-bottom:1px solid #d6a2a3;
    }
Recent Random Colors