Random Color Generator

#edab36 Color

Color Codes
Hex Code #edab36
RGB Code rgb(237, 171, 54)
HSL Code hsl(38, 84%, 57%)

#edab36 Color Syntax

rgb()

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

 main {
    background-color: rgb(237, 171, 54);
   }

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(38, 84%, 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 #edab36

RGB Code Hex Code Preview
rgb(237, 171, 54, 10%) #edab361a  
rgb(237, 171, 54, 20%) #edab3633  
rgb(237, 171, 54, 40%) #edab364C  
rgb(237, 171, 54, 60%) #edab3699  
rgb(237, 171, 54, 80%) #edab36CC  
rgb(237, 171, 54, 100%) #edab36FF  

Saturated and desaturated colors of #edab36

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

#edab36 Color Usage In CSS

 body {
    color: #edab36;
    }
 p {
    color: rgb(237, 171, 54);
    }
 header {
    border-bottom:1px solid #edab36;
    }
Recent Random Colors