Random Color Generator

#fbae2e Color

Color Codes
Hex Code #fbae2e
RGB Code rgb(251, 174, 46)
HSL Code hsl(37, 96%, 58%)

#fbae2e Color Syntax

rgb()

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

 main {
    background-color: rgb(251, 174, 46);
   }

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(37, 96%, 58%);
  }

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

RGB Code Hex Code Preview
rgb(251, 174, 46, 10%) #fbae2e1a  
rgb(251, 174, 46, 20%) #fbae2e33  
rgb(251, 174, 46, 40%) #fbae2e4C  
rgb(251, 174, 46, 60%) #fbae2e99  
rgb(251, 174, 46, 80%) #fbae2eCC  
rgb(251, 174, 46, 100%) #fbae2eFF  

Saturated and desaturated colors of #fbae2e

HSL Code Preview
hsl(37, 10%, 58%)  
hsl(37, 20%, 58%)  
hsl(37, 40%, 58%)  
hsl(37, 60%, 58%)  
hsl(37, 80%, 58%)  
hsl(37, 100%, 58%)  

#fbae2e Color Usage In CSS

 body {
    color: #fbae2e;
    }
 p {
    color: rgb(251, 174, 46);
    }
 header {
    border-bottom:1px solid #fbae2e;
    }
Recent Random Colors