Random Color Generator

#e4cd18 Color

Color Codes
Hex Code #e4cd18
RGB Code rgb(228, 205, 24)
HSL Code hsl(53, 81%, 49%)

#e4cd18 Color Syntax

rgb()

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

 main {
    background-color: rgb(228, 205, 24);
   }

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(53, 81%, 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 #e4cd18

RGB Code Hex Code Preview
rgb(228, 205, 24, 10%) #e4cd181a  
rgb(228, 205, 24, 20%) #e4cd1833  
rgb(228, 205, 24, 40%) #e4cd184C  
rgb(228, 205, 24, 60%) #e4cd1899  
rgb(228, 205, 24, 80%) #e4cd18CC  
rgb(228, 205, 24, 100%) #e4cd18FF  

Saturated and desaturated colors of #e4cd18

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

#e4cd18 Color Usage In CSS

 body {
    color: #e4cd18;
    }
 p {
    color: rgb(228, 205, 24);
    }
 header {
    border-bottom:1px solid #e4cd18;
    }
Recent Random Colors