Random Color Generator

#fc5a38 Color

Color Codes
Hex Code #fc5a38
RGB Code rgb(252, 90, 56)
HSL Code hsl(10, 97%, 60%)

#fc5a38 Color Syntax

rgb()

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

 main {
    background-color: rgb(252, 90, 56);
   }

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(10, 97%, 60%);
  }

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

RGB Code Hex Code Preview
rgb(252, 90, 56, 10%) #fc5a381a  
rgb(252, 90, 56, 20%) #fc5a3833  
rgb(252, 90, 56, 40%) #fc5a384C  
rgb(252, 90, 56, 60%) #fc5a3899  
rgb(252, 90, 56, 80%) #fc5a38CC  
rgb(252, 90, 56, 100%) #fc5a38FF  

Saturated and desaturated colors of #fc5a38

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

#fc5a38 Color Usage In CSS

 body {
    color: #fc5a38;
    }
 p {
    color: rgb(252, 90, 56);
    }
 header {
    border-bottom:1px solid #fc5a38;
    }
Recent Random Colors