Random Color Generator

#5aa7bf Color

Color Codes
Hex Code #5aa7bf
RGB Code rgb(90, 167, 191)
HSL Code hsl(194, 44%, 55%)

#5aa7bf Color Syntax

rgb()

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

 main {
    background-color: rgb(90, 167, 191);
   }

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(194, 44%, 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 #5aa7bf

RGB Code Hex Code Preview
rgb(90, 167, 191, 10%) #5aa7bf1a  
rgb(90, 167, 191, 20%) #5aa7bf33  
rgb(90, 167, 191, 40%) #5aa7bf4C  
rgb(90, 167, 191, 60%) #5aa7bf99  
rgb(90, 167, 191, 80%) #5aa7bfCC  
rgb(90, 167, 191, 100%) #5aa7bfFF  

Saturated and desaturated colors of #5aa7bf

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

#5aa7bf Color Usage In CSS

 body {
    color: #5aa7bf;
    }
 p {
    color: rgb(90, 167, 191);
    }
 header {
    border-bottom:1px solid #5aa7bf;
    }
Recent Random Colors