Random Color Generator

#dacb21 Color

Color Codes
Hex Code #dacb21
RGB Code rgb(218, 203, 33)
HSL Code hsl(55, 74%, 49%)

#dacb21 Color Syntax

rgb()

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

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

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(55, 74%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(218, 203, 33, 10%) #dacb211a  
rgb(218, 203, 33, 20%) #dacb2133  
rgb(218, 203, 33, 40%) #dacb214C  
rgb(218, 203, 33, 60%) #dacb2199  
rgb(218, 203, 33, 80%) #dacb21CC  
rgb(218, 203, 33, 100%) #dacb21FF  

Saturated and desaturated colors of #dacb21

HSL Code Preview
hsl(55, 10%, 49%)  
hsl(55, 20%, 49%)  
hsl(55, 40%, 49%)  
hsl(55, 60%, 49%)  
hsl(55, 80%, 49%)  
hsl(55, 100%, 49%)  

#dacb21 Color Usage In CSS

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