Random Color Generator

#56fad7 Color

Color Codes
Hex Code #56fad7
RGB Code rgb(86, 250, 215)
HSL Code hsl(167, 94%, 66%)

#56fad7 Color Syntax

rgb()

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

 main {
    background-color: rgb(86, 250, 215);
   }

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(167, 94%, 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 #56fad7

RGB Code Hex Code Preview
rgb(86, 250, 215, 10%) #56fad71a  
rgb(86, 250, 215, 20%) #56fad733  
rgb(86, 250, 215, 40%) #56fad74C  
rgb(86, 250, 215, 60%) #56fad799  
rgb(86, 250, 215, 80%) #56fad7CC  
rgb(86, 250, 215, 100%) #56fad7FF  

Saturated and desaturated colors of #56fad7

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

#56fad7 Color Usage In CSS

 body {
    color: #56fad7;
    }
 p {
    color: rgb(86, 250, 215);
    }
 header {
    border-bottom:1px solid #56fad7;
    }
Recent Random Colors