Random Color Generator

#dacb4b Color

Color Codes
Hex Code #dacb4b
RGB Code rgb(218, 203, 75)
HSL Code hsl(54, 66%, 57%)

#dacb4b Color Syntax

rgb()

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

 main {
    background-color: rgb(218, 203, 75);
   }

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(54, 66%, 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 #dacb4b

RGB Code Hex Code Preview
rgb(218, 203, 75, 10%) #dacb4b1a  
rgb(218, 203, 75, 20%) #dacb4b33  
rgb(218, 203, 75, 40%) #dacb4b4C  
rgb(218, 203, 75, 60%) #dacb4b99  
rgb(218, 203, 75, 80%) #dacb4bCC  
rgb(218, 203, 75, 100%) #dacb4bFF  

Saturated and desaturated colors of #dacb4b

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

#dacb4b Color Usage In CSS

 body {
    color: #dacb4b;
    }
 p {
    color: rgb(218, 203, 75);
    }
 header {
    border-bottom:1px solid #dacb4b;
    }
Recent Random Colors