Random Color Generator

#fc6b25 Color

Color Codes
Hex Code #fc6b25
RGB Code rgb(252, 107, 37)
HSL Code hsl(20, 97%, 57%)

#fc6b25 Color Syntax

rgb()

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

 main {
    background-color: rgb(252, 107, 37);
   }

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(20, 97%, 57%);
  }

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

RGB Code Hex Code Preview
rgb(252, 107, 37, 10%) #fc6b251a  
rgb(252, 107, 37, 20%) #fc6b2533  
rgb(252, 107, 37, 40%) #fc6b254C  
rgb(252, 107, 37, 60%) #fc6b2599  
rgb(252, 107, 37, 80%) #fc6b25CC  
rgb(252, 107, 37, 100%) #fc6b25FF  

Saturated and desaturated colors of #fc6b25

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

#fc6b25 Color Usage In CSS

 body {
    color: #fc6b25;
    }
 p {
    color: rgb(252, 107, 37);
    }
 header {
    border-bottom:1px solid #fc6b25;
    }
Recent Random Colors