Random Color Generator

#fc8802 Color

Color Codes
Hex Code #fc8802
RGB Code rgb(252, 136, 02)
HSL Code hsl(32, 98%, 50%)

#fc8802 Color Syntax

rgb()

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

 main {
    background-color: rgb(252, 136, 02);
   }

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, 98%, 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 #fc8802

RGB Code Hex Code Preview
rgb(252, 136, 02, 10%) #fc88021a  
rgb(252, 136, 02, 20%) #fc880233  
rgb(252, 136, 02, 40%) #fc88024C  
rgb(252, 136, 02, 60%) #fc880299  
rgb(252, 136, 02, 80%) #fc8802CC  
rgb(252, 136, 02, 100%) #fc8802FF  

Saturated and desaturated colors of #fc8802

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%)  

#fc8802 Color Usage In CSS

 body {
    color: #fc8802;
    }
 p {
    color: rgb(252, 136, 02);
    }
 header {
    border-bottom:1px solid #fc8802;
    }
Recent Random Colors