Random Color Generator

#d6474d Color

Color Codes
Hex Code #d6474d
RGB Code rgb(214, 71, 77)
HSL Code hsl(357, 64%, 56%)

#d6474d Color Syntax

rgb()

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

 main {
    background-color: rgb(214, 71, 77);
   }

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(357, 64%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(214, 71, 77, 10%) #d6474d1a  
rgb(214, 71, 77, 20%) #d6474d33  
rgb(214, 71, 77, 40%) #d6474d4C  
rgb(214, 71, 77, 60%) #d6474d99  
rgb(214, 71, 77, 80%) #d6474dCC  
rgb(214, 71, 77, 100%) #d6474dFF  

Saturated and desaturated colors of #d6474d

HSL Code Preview
hsl(357, 10%, 56%)  
hsl(357, 20%, 56%)  
hsl(357, 40%, 56%)  
hsl(357, 60%, 56%)  
hsl(357, 80%, 56%)  
hsl(357, 100%, 56%)  

#d6474d Color Usage In CSS

 body {
    color: #d6474d;
    }
 p {
    color: rgb(214, 71, 77);
    }
 header {
    border-bottom:1px solid #d6474d;
    }
Recent Random Colors