Random Color Generator

#f61c65 Color

Color Codes
Hex Code #f61c65
RGB Code rgb(246, 28, 101)
HSL Code hsl(340, 92%, 54%)

#f61c65 Color Syntax

rgb()

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

 main {
    background-color: rgb(246, 28, 101);
   }

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(340, 92%, 54%);
  }

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

RGB Code Hex Code Preview
rgb(246, 28, 101, 10%) #f61c651a  
rgb(246, 28, 101, 20%) #f61c6533  
rgb(246, 28, 101, 40%) #f61c654C  
rgb(246, 28, 101, 60%) #f61c6599  
rgb(246, 28, 101, 80%) #f61c65CC  
rgb(246, 28, 101, 100%) #f61c65FF  

Saturated and desaturated colors of #f61c65

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

#f61c65 Color Usage In CSS

 body {
    color: #f61c65;
    }
 p {
    color: rgb(246, 28, 101);
    }
 header {
    border-bottom:1px solid #f61c65;
    }
Recent Random Colors