Random Color Generator

#d06d7e Color

Color Codes
Hex Code #d06d7e
RGB Code rgb(208, 109, 126)
HSL Code hsl(350, 51%, 62%)

#d06d7e Color Syntax

rgb()

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

 main {
    background-color: rgb(208, 109, 126);
   }

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(350, 51%, 62%);
  }

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

RGB Code Hex Code Preview
rgb(208, 109, 126, 10%) #d06d7e1a  
rgb(208, 109, 126, 20%) #d06d7e33  
rgb(208, 109, 126, 40%) #d06d7e4C  
rgb(208, 109, 126, 60%) #d06d7e99  
rgb(208, 109, 126, 80%) #d06d7eCC  
rgb(208, 109, 126, 100%) #d06d7eFF  

Saturated and desaturated colors of #d06d7e

HSL Code Preview
hsl(350, 10%, 62%)  
hsl(350, 20%, 62%)  
hsl(350, 40%, 62%)  
hsl(350, 60%, 62%)  
hsl(350, 80%, 62%)  
hsl(350, 100%, 62%)  

#d06d7e Color Usage In CSS

 body {
    color: #d06d7e;
    }
 p {
    color: rgb(208, 109, 126);
    }
 header {
    border-bottom:1px solid #d06d7e;
    }
Recent Random Colors