Random Color Generator

#56d2de Color

Color Codes
Hex Code #56d2de
RGB Code rgb(86, 210, 222)
HSL Code hsl(185, 67%, 60%)

#56d2de Color Syntax

rgb()

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

 main {
    background-color: rgb(86, 210, 222);
   }

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(185, 67%, 60%);
  }

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 #56d2de

RGB Code Hex Code Preview
rgb(86, 210, 222, 10%) #56d2de1a  
rgb(86, 210, 222, 20%) #56d2de33  
rgb(86, 210, 222, 40%) #56d2de4C  
rgb(86, 210, 222, 60%) #56d2de99  
rgb(86, 210, 222, 80%) #56d2deCC  
rgb(86, 210, 222, 100%) #56d2deFF  

Saturated and desaturated colors of #56d2de

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

#56d2de Color Usage In CSS

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