Random Color Generator

#d4c46f Color

Color Codes
Hex Code #d4c46f
RGB Code rgb(212, 196, 111)
HSL Code hsl(50, 54%, 63%)

#d4c46f Color Syntax

rgb()

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

 main {
    background-color: rgb(212, 196, 111);
   }

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(50, 54%, 63%);
  }

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

RGB Code Hex Code Preview
rgb(212, 196, 111, 10%) #d4c46f1a  
rgb(212, 196, 111, 20%) #d4c46f33  
rgb(212, 196, 111, 40%) #d4c46f4C  
rgb(212, 196, 111, 60%) #d4c46f99  
rgb(212, 196, 111, 80%) #d4c46fCC  
rgb(212, 196, 111, 100%) #d4c46fFF  

Saturated and desaturated colors of #d4c46f

HSL Code Preview
hsl(50, 10%, 63%)  
hsl(50, 20%, 63%)  
hsl(50, 40%, 63%)  
hsl(50, 60%, 63%)  
hsl(50, 80%, 63%)  
hsl(50, 100%, 63%)  

#d4c46f Color Usage In CSS

 body {
    color: #d4c46f;
    }
 p {
    color: rgb(212, 196, 111);
    }
 header {
    border-bottom:1px solid #d4c46f;
    }
Recent Random Colors