Random Color Generator

#f4ca00 Color

Color Codes
Hex Code #f4ca00
RGB Code rgb(244, 202, 00)
HSL Code hsl(50, 100%, 48%)

#f4ca00 Color Syntax

rgb()

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

 main {
    background-color: rgb(244, 202, 00);
   }

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(50, 100%, 48%);
  }

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

RGB Code Hex Code Preview
rgb(244, 202, 00, 10%) #f4ca001a  
rgb(244, 202, 00, 20%) #f4ca0033  
rgb(244, 202, 00, 40%) #f4ca004C  
rgb(244, 202, 00, 60%) #f4ca0099  
rgb(244, 202, 00, 80%) #f4ca00CC  
rgb(244, 202, 00, 100%) #f4ca00FF  

Saturated and desaturated colors of #f4ca00

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

#f4ca00 Color Usage In CSS

 body {
    color: #f4ca00;
    }
 p {
    color: rgb(244, 202, 00);
    }
 header {
    border-bottom:1px solid #f4ca00;
    }
Recent Random Colors