Random Color Generator

#f44c5b Color

Color Codes
Hex Code #f44c5b
RGB Code rgb(244, 76, 91)
HSL Code hsl(355, 88%, 63%)

#f44c5b Color Syntax

rgb()

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

 main {
    background-color: rgb(244, 76, 91);
   }

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(355, 88%, 63%);
  }

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

RGB Code Hex Code Preview
rgb(244, 76, 91, 10%) #f44c5b1a  
rgb(244, 76, 91, 20%) #f44c5b33  
rgb(244, 76, 91, 40%) #f44c5b4C  
rgb(244, 76, 91, 60%) #f44c5b99  
rgb(244, 76, 91, 80%) #f44c5bCC  
rgb(244, 76, 91, 100%) #f44c5bFF  

Saturated and desaturated colors of #f44c5b

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

#f44c5b Color Usage In CSS

 body {
    color: #f44c5b;
    }
 p {
    color: rgb(244, 76, 91);
    }
 header {
    border-bottom:1px solid #f44c5b;
    }
Recent Random Colors