Random Color Generator

#66b7ca Color

Color Codes
Hex Code #66b7ca
RGB Code rgb(102, 183, 202)
HSL Code hsl(191, 49%, 60%)

#66b7ca Color Syntax

rgb()

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

 main {
    background-color: rgb(102, 183, 202);
   }

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(191, 49%, 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 #66b7ca

RGB Code Hex Code Preview
rgb(102, 183, 202, 10%) #66b7ca1a  
rgb(102, 183, 202, 20%) #66b7ca33  
rgb(102, 183, 202, 40%) #66b7ca4C  
rgb(102, 183, 202, 60%) #66b7ca99  
rgb(102, 183, 202, 80%) #66b7caCC  
rgb(102, 183, 202, 100%) #66b7caFF  

Saturated and desaturated colors of #66b7ca

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

#66b7ca Color Usage In CSS

 body {
    color: #66b7ca;
    }
 p {
    color: rgb(102, 183, 202);
    }
 header {
    border-bottom:1px solid #66b7ca;
    }
Recent Random Colors