Random Color Generator

#d16470 Color

Color Codes
Hex Code #d16470
RGB Code rgb(209, 100, 112)
HSL Code hsl(353, 54%, 61%)

#d16470 Color Syntax

rgb()

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

 main {
    background-color: rgb(209, 100, 112);
   }

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(353, 54%, 61%);
  }

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

RGB Code Hex Code Preview
rgb(209, 100, 112, 10%) #d164701a  
rgb(209, 100, 112, 20%) #d1647033  
rgb(209, 100, 112, 40%) #d164704C  
rgb(209, 100, 112, 60%) #d1647099  
rgb(209, 100, 112, 80%) #d16470CC  
rgb(209, 100, 112, 100%) #d16470FF  

Saturated and desaturated colors of #d16470

HSL Code Preview
hsl(353, 10%, 61%)  
hsl(353, 20%, 61%)  
hsl(353, 40%, 61%)  
hsl(353, 60%, 61%)  
hsl(353, 80%, 61%)  
hsl(353, 100%, 61%)  

#d16470 Color Usage In CSS

 body {
    color: #d16470;
    }
 p {
    color: rgb(209, 100, 112);
    }
 header {
    border-bottom:1px solid #d16470;
    }
Recent Random Colors