Random Color Generator

#f29f0e Color

Color Codes
Hex Code #f29f0e
RGB Code rgb(242, 159, 14)
HSL Code hsl(38, 90%, 50%)

#f29f0e Color Syntax

rgb()

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

 main {
    background-color: rgb(242, 159, 14);
   }

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(38, 90%, 50%);
  }

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

RGB Code Hex Code Preview
rgb(242, 159, 14, 10%) #f29f0e1a  
rgb(242, 159, 14, 20%) #f29f0e33  
rgb(242, 159, 14, 40%) #f29f0e4C  
rgb(242, 159, 14, 60%) #f29f0e99  
rgb(242, 159, 14, 80%) #f29f0eCC  
rgb(242, 159, 14, 100%) #f29f0eFF  

Saturated and desaturated colors of #f29f0e

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

#f29f0e Color Usage In CSS

 body {
    color: #f29f0e;
    }
 p {
    color: rgb(242, 159, 14);
    }
 header {
    border-bottom:1px solid #f29f0e;
    }
Recent Random Colors