Random Color Generator

#f1860c Color

Color Codes
Hex Code #f1860c
RGB Code rgb(241, 134, 12)
HSL Code hsl(32, 91%, 50%)

#f1860c Color Syntax

rgb()

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

 main {
    background-color: rgb(241, 134, 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(32, 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 #f1860c

RGB Code Hex Code Preview
rgb(241, 134, 12, 10%) #f1860c1a  
rgb(241, 134, 12, 20%) #f1860c33  
rgb(241, 134, 12, 40%) #f1860c4C  
rgb(241, 134, 12, 60%) #f1860c99  
rgb(241, 134, 12, 80%) #f1860cCC  
rgb(241, 134, 12, 100%) #f1860cFF  

Saturated and desaturated colors of #f1860c

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

#f1860c Color Usage In CSS

 body {
    color: #f1860c;
    }
 p {
    color: rgb(241, 134, 12);
    }
 header {
    border-bottom:1px solid #f1860c;
    }
Recent Random Colors