Random Color Generator

#f55958 Color

Color Codes
Hex Code #f55958
RGB Code rgb(245, 89, 88)
HSL Code hsl(0, 89%, 65%)

#f55958 Color Syntax

rgb()

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

 main {
    background-color: rgb(245, 89, 88);
   }

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(0, 89%, 65%);
  }

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

RGB Code Hex Code Preview
rgb(245, 89, 88, 10%) #f559581a  
rgb(245, 89, 88, 20%) #f5595833  
rgb(245, 89, 88, 40%) #f559584C  
rgb(245, 89, 88, 60%) #f5595899  
rgb(245, 89, 88, 80%) #f55958CC  
rgb(245, 89, 88, 100%) #f55958FF  

Saturated and desaturated colors of #f55958

HSL Code Preview
hsl(0, 10%, 65%)  
hsl(0, 20%, 65%)  
hsl(0, 40%, 65%)  
hsl(0, 60%, 65%)  
hsl(0, 80%, 65%)  
hsl(0, 100%, 65%)  

#f55958 Color Usage In CSS

 body {
    color: #f55958;
    }
 p {
    color: rgb(245, 89, 88);
    }
 header {
    border-bottom:1px solid #f55958;
    }
Recent Random Colors