Random Color Generator

#e6c127 Color

Color Codes
Hex Code #e6c127
RGB Code rgb(230, 193, 39)
HSL Code hsl(48, 79%, 53%)

#e6c127 Color Syntax

rgb()

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

 main {
    background-color: rgb(230, 193, 39);
   }

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(48, 79%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(230, 193, 39, 10%) #e6c1271a  
rgb(230, 193, 39, 20%) #e6c12733  
rgb(230, 193, 39, 40%) #e6c1274C  
rgb(230, 193, 39, 60%) #e6c12799  
rgb(230, 193, 39, 80%) #e6c127CC  
rgb(230, 193, 39, 100%) #e6c127FF  

Saturated and desaturated colors of #e6c127

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

#e6c127 Color Usage In CSS

 body {
    color: #e6c127;
    }
 p {
    color: rgb(230, 193, 39);
    }
 header {
    border-bottom:1px solid #e6c127;
    }
Recent Random Colors