Random Color Generator

#56d6fa Color

Color Codes
Hex Code #56d6fa
RGB Code rgb(86, 214, 250)
HSL Code hsl(193, 94%, 66%)

#56d6fa Color Syntax

rgb()

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

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

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(193, 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 #56d6fa

RGB Code Hex Code Preview
rgb(86, 214, 250, 10%) #56d6fa1a  
rgb(86, 214, 250, 20%) #56d6fa33  
rgb(86, 214, 250, 40%) #56d6fa4C  
rgb(86, 214, 250, 60%) #56d6fa99  
rgb(86, 214, 250, 80%) #56d6faCC  
rgb(86, 214, 250, 100%) #56d6faFF  

Saturated and desaturated colors of #56d6fa

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

#56d6fa Color Usage In CSS

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