Random Color Generator

#56bfe1 Color

Color Codes
Hex Code #56bfe1
RGB Code rgb(86, 191, 225)
HSL Code hsl(195, 70%, 61%)

#56bfe1 Color Syntax

rgb()

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

 main {
    background-color: rgb(86, 191, 225);
   }

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(195, 70%, 61%);
  }

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

RGB Code Hex Code Preview
rgb(86, 191, 225, 10%) #56bfe11a  
rgb(86, 191, 225, 20%) #56bfe133  
rgb(86, 191, 225, 40%) #56bfe14C  
rgb(86, 191, 225, 60%) #56bfe199  
rgb(86, 191, 225, 80%) #56bfe1CC  
rgb(86, 191, 225, 100%) #56bfe1FF  

Saturated and desaturated colors of #56bfe1

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

#56bfe1 Color Usage In CSS

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