Random Color Generator

#5af5cf Color

Color Codes
Hex Code #5af5cf
RGB Code rgb(90, 245, 207)
HSL Code hsl(165, 89%, 66%)

#5af5cf Color Syntax

rgb()

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

 main {
    background-color: rgb(90, 245, 207);
   }

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(165, 89%, 66%);
  }

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 #5af5cf

RGB Code Hex Code Preview
rgb(90, 245, 207, 10%) #5af5cf1a  
rgb(90, 245, 207, 20%) #5af5cf33  
rgb(90, 245, 207, 40%) #5af5cf4C  
rgb(90, 245, 207, 60%) #5af5cf99  
rgb(90, 245, 207, 80%) #5af5cfCC  
rgb(90, 245, 207, 100%) #5af5cfFF  

Saturated and desaturated colors of #5af5cf

HSL Code Preview
hsl(165, 10%, 66%)  
hsl(165, 20%, 66%)  
hsl(165, 40%, 66%)  
hsl(165, 60%, 66%)  
hsl(165, 80%, 66%)  
hsl(165, 100%, 66%)  

#5af5cf Color Usage In CSS

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