Random Color Generator

#f22969 Color

Color Codes
Hex Code #f22969
RGB Code rgb(242, 41, 105)
HSL Code hsl(341, 89%, 55%)

#f22969 Color Syntax

rgb()

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

 main {
    background-color: rgb(242, 41, 105);
   }

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(341, 89%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(242, 41, 105, 10%) #f229691a  
rgb(242, 41, 105, 20%) #f2296933  
rgb(242, 41, 105, 40%) #f229694C  
rgb(242, 41, 105, 60%) #f2296999  
rgb(242, 41, 105, 80%) #f22969CC  
rgb(242, 41, 105, 100%) #f22969FF  

Saturated and desaturated colors of #f22969

HSL Code Preview
hsl(341, 10%, 55%)  
hsl(341, 20%, 55%)  
hsl(341, 40%, 55%)  
hsl(341, 60%, 55%)  
hsl(341, 80%, 55%)  
hsl(341, 100%, 55%)  

#f22969 Color Usage In CSS

 body {
    color: #f22969;
    }
 p {
    color: rgb(242, 41, 105);
    }
 header {
    border-bottom:1px solid #f22969;
    }
Recent Random Colors