Random Color Generator

#f60e32 Color

Color Codes
Hex Code #f60e32
RGB Code rgb(246, 14, 50)
HSL Code hsl(351, 93%, 51%)

#f60e32 Color Syntax

rgb()

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

 main {
    background-color: rgb(246, 14, 50);
   }

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(351, 93%, 51%);
  }

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

RGB Code Hex Code Preview
rgb(246, 14, 50, 10%) #f60e321a  
rgb(246, 14, 50, 20%) #f60e3233  
rgb(246, 14, 50, 40%) #f60e324C  
rgb(246, 14, 50, 60%) #f60e3299  
rgb(246, 14, 50, 80%) #f60e32CC  
rgb(246, 14, 50, 100%) #f60e32FF  

Saturated and desaturated colors of #f60e32

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

#f60e32 Color Usage In CSS

 body {
    color: #f60e32;
    }
 p {
    color: rgb(246, 14, 50);
    }
 header {
    border-bottom:1px solid #f60e32;
    }
Recent Random Colors