Random Color Generator

#f94774 Color

Color Codes
Hex Code #f94774
RGB Code rgb(249, 71, 116)
HSL Code hsl(345, 94%, 63%)

#f94774 Color Syntax

rgb()

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

 main {
    background-color: rgb(249, 71, 116);
   }

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(345, 94%, 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 #f94774

RGB Code Hex Code Preview
rgb(249, 71, 116, 10%) #f947741a  
rgb(249, 71, 116, 20%) #f9477433  
rgb(249, 71, 116, 40%) #f947744C  
rgb(249, 71, 116, 60%) #f9477499  
rgb(249, 71, 116, 80%) #f94774CC  
rgb(249, 71, 116, 100%) #f94774FF  

Saturated and desaturated colors of #f94774

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

#f94774 Color Usage In CSS

 body {
    color: #f94774;
    }
 p {
    color: rgb(249, 71, 116);
    }
 header {
    border-bottom:1px solid #f94774;
    }
Recent Random Colors