Random Color Generator

#dab441 Color

Color Codes
Hex Code #dab441
RGB Code rgb(218, 180, 65)
HSL Code hsl(45, 67%, 55%)

#dab441 Color Syntax

rgb()

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

 main {
    background-color: rgb(218, 180, 65);
   }

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(45, 67%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(218, 180, 65, 10%) #dab4411a  
rgb(218, 180, 65, 20%) #dab44133  
rgb(218, 180, 65, 40%) #dab4414C  
rgb(218, 180, 65, 60%) #dab44199  
rgb(218, 180, 65, 80%) #dab441CC  
rgb(218, 180, 65, 100%) #dab441FF  

Saturated and desaturated colors of #dab441

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

#dab441 Color Usage In CSS

 body {
    color: #dab441;
    }
 p {
    color: rgb(218, 180, 65);
    }
 header {
    border-bottom:1px solid #dab441;
    }
Recent Random Colors