Random Color Generator

#dab253 Color

Color Codes
Hex Code #dab253
RGB Code rgb(218, 178, 83)
HSL Code hsl(42, 65%, 59%)

#dab253 Color Syntax

rgb()

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

 main {
    background-color: rgb(218, 178, 83);
   }

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(42, 65%, 59%);
  }

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

RGB Code Hex Code Preview
rgb(218, 178, 83, 10%) #dab2531a  
rgb(218, 178, 83, 20%) #dab25333  
rgb(218, 178, 83, 40%) #dab2534C  
rgb(218, 178, 83, 60%) #dab25399  
rgb(218, 178, 83, 80%) #dab253CC  
rgb(218, 178, 83, 100%) #dab253FF  

Saturated and desaturated colors of #dab253

HSL Code Preview
hsl(42, 10%, 59%)  
hsl(42, 20%, 59%)  
hsl(42, 40%, 59%)  
hsl(42, 60%, 59%)  
hsl(42, 80%, 59%)  
hsl(42, 100%, 59%)  

#dab253 Color Usage In CSS

 body {
    color: #dab253;
    }
 p {
    color: rgb(218, 178, 83);
    }
 header {
    border-bottom:1px solid #dab253;
    }
Recent Random Colors