Random Color Generator

#d56a4f Color

Color Codes
Hex Code #d56a4f
RGB Code rgb(213, 106, 79)
HSL Code hsl(12, 61%, 57%)

#d56a4f Color Syntax

rgb()

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

 main {
    background-color: rgb(213, 106, 79);
   }

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(12, 61%, 57%);
  }

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

RGB Code Hex Code Preview
rgb(213, 106, 79, 10%) #d56a4f1a  
rgb(213, 106, 79, 20%) #d56a4f33  
rgb(213, 106, 79, 40%) #d56a4f4C  
rgb(213, 106, 79, 60%) #d56a4f99  
rgb(213, 106, 79, 80%) #d56a4fCC  
rgb(213, 106, 79, 100%) #d56a4fFF  

Saturated and desaturated colors of #d56a4f

HSL Code Preview
hsl(12, 10%, 57%)  
hsl(12, 20%, 57%)  
hsl(12, 40%, 57%)  
hsl(12, 60%, 57%)  
hsl(12, 80%, 57%)  
hsl(12, 100%, 57%)  

#d56a4f Color Usage In CSS

 body {
    color: #d56a4f;
    }
 p {
    color: rgb(213, 106, 79);
    }
 header {
    border-bottom:1px solid #d56a4f;
    }
Recent Random Colors