Random Color Generator

#f2910c Color

Color Codes
Hex Code #f2910c
RGB Code rgb(242, 145, 12)
HSL Code hsl(35, 91%, 50%)

#f2910c Color Syntax

rgb()

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

 main {
    background-color: rgb(242, 145, 12);
   }

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(35, 91%, 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 #f2910c

RGB Code Hex Code Preview
rgb(242, 145, 12, 10%) #f2910c1a  
rgb(242, 145, 12, 20%) #f2910c33  
rgb(242, 145, 12, 40%) #f2910c4C  
rgb(242, 145, 12, 60%) #f2910c99  
rgb(242, 145, 12, 80%) #f2910cCC  
rgb(242, 145, 12, 100%) #f2910cFF  

Saturated and desaturated colors of #f2910c

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

#f2910c Color Usage In CSS

 body {
    color: #f2910c;
    }
 p {
    color: rgb(242, 145, 12);
    }
 header {
    border-bottom:1px solid #f2910c;
    }
Recent Random Colors