Random Color Generator

#faf454 Color

Color Codes
Hex Code #faf454
RGB Code rgb(250, 244, 84)
HSL Code hsl(58, 94%, 65%)

#faf454 Color Syntax

rgb()

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

 main {
    background-color: rgb(250, 244, 84);
   }

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(58, 94%, 65%);
  }

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

RGB Code Hex Code Preview
rgb(250, 244, 84, 10%) #faf4541a  
rgb(250, 244, 84, 20%) #faf45433  
rgb(250, 244, 84, 40%) #faf4544C  
rgb(250, 244, 84, 60%) #faf45499  
rgb(250, 244, 84, 80%) #faf454CC  
rgb(250, 244, 84, 100%) #faf454FF  

Saturated and desaturated colors of #faf454

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

#faf454 Color Usage In CSS

 body {
    color: #faf454;
    }
 p {
    color: rgb(250, 244, 84);
    }
 header {
    border-bottom:1px solid #faf454;
    }
Recent Random Colors