Random Color Generator

#f1563e Color

Color Codes
Hex Code #f1563e
RGB Code rgb(241, 86, 62)
HSL Code hsl(8, 86%, 59%)

#f1563e Color Syntax

rgb()

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

 main {
    background-color: rgb(241, 86, 62);
   }

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(8, 86%, 59%);
  }

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

RGB Code Hex Code Preview
rgb(241, 86, 62, 10%) #f1563e1a  
rgb(241, 86, 62, 20%) #f1563e33  
rgb(241, 86, 62, 40%) #f1563e4C  
rgb(241, 86, 62, 60%) #f1563e99  
rgb(241, 86, 62, 80%) #f1563eCC  
rgb(241, 86, 62, 100%) #f1563eFF  

Saturated and desaturated colors of #f1563e

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

#f1563e Color Usage In CSS

 body {
    color: #f1563e;
    }
 p {
    color: rgb(241, 86, 62);
    }
 header {
    border-bottom:1px solid #f1563e;
    }
Recent Random Colors