Random Color Generator

#f87101 Color

Color Codes
Hex Code #f87101
RGB Code rgb(248, 113, 01)
HSL Code hsl(27, 99%, 49%)

#f87101 Color Syntax

rgb()

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

 main {
    background-color: rgb(248, 113, 01);
   }

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, 99%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(248, 113, 01, 10%) #f871011a  
rgb(248, 113, 01, 20%) #f8710133  
rgb(248, 113, 01, 40%) #f871014C  
rgb(248, 113, 01, 60%) #f8710199  
rgb(248, 113, 01, 80%) #f87101CC  
rgb(248, 113, 01, 100%) #f87101FF  

Saturated and desaturated colors of #f87101

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

#f87101 Color Usage In CSS

 body {
    color: #f87101;
    }
 p {
    color: rgb(248, 113, 01);
    }
 header {
    border-bottom:1px solid #f87101;
    }
Recent Random Colors