Random Color Generator

#f6720c Color

Color Codes
Hex Code #f6720c
RGB Code rgb(246, 114, 12)
HSL Code hsl(26, 93%, 51%)

#f6720c Color Syntax

rgb()

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

 main {
    background-color: rgb(246, 114, 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(26, 93%, 51%);
  }

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

RGB Code Hex Code Preview
rgb(246, 114, 12, 10%) #f6720c1a  
rgb(246, 114, 12, 20%) #f6720c33  
rgb(246, 114, 12, 40%) #f6720c4C  
rgb(246, 114, 12, 60%) #f6720c99  
rgb(246, 114, 12, 80%) #f6720cCC  
rgb(246, 114, 12, 100%) #f6720cFF  

Saturated and desaturated colors of #f6720c

HSL Code Preview
hsl(26, 10%, 51%)  
hsl(26, 20%, 51%)  
hsl(26, 40%, 51%)  
hsl(26, 60%, 51%)  
hsl(26, 80%, 51%)  
hsl(26, 100%, 51%)  

#f6720c Color Usage In CSS

 body {
    color: #f6720c;
    }
 p {
    color: rgb(246, 114, 12);
    }
 header {
    border-bottom:1px solid #f6720c;
    }
Recent Random Colors