Random Color Generator

#ff7c11 Color

Color Codes
Hex Code #ff7c11
RGB Code rgb(255, 124, 17)
HSL Code hsl(27, 100%, 53%)

#ff7c11 Color Syntax

rgb()

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

 main {
    background-color: rgb(255, 124, 17);
   }

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(27, 100%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(255, 124, 17, 10%) #ff7c111a  
rgb(255, 124, 17, 20%) #ff7c1133  
rgb(255, 124, 17, 40%) #ff7c114C  
rgb(255, 124, 17, 60%) #ff7c1199  
rgb(255, 124, 17, 80%) #ff7c11CC  
rgb(255, 124, 17, 100%) #ff7c11FF  

Saturated and desaturated colors of #ff7c11

HSL Code Preview
hsl(27, 10%, 53%)  
hsl(27, 20%, 53%)  
hsl(27, 40%, 53%)  
hsl(27, 60%, 53%)  
hsl(27, 80%, 53%)  
hsl(27, 100%, 53%)  

#ff7c11 Color Usage In CSS

 body {
    color: #ff7c11;
    }
 p {
    color: rgb(255, 124, 17);
    }
 header {
    border-bottom:1px solid #ff7c11;
    }
Recent Random Colors