Random Color Generator

#61c2d0 Color

Color Codes
Hex Code #61c2d0
RGB Code rgb(97, 194, 208)
HSL Code hsl(188, 54%, 60%)

#61c2d0 Color Syntax

rgb()

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

 main {
    background-color: rgb(97, 194, 208);
   }

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(188, 54%, 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 #61c2d0

RGB Code Hex Code Preview
rgb(97, 194, 208, 10%) #61c2d01a  
rgb(97, 194, 208, 20%) #61c2d033  
rgb(97, 194, 208, 40%) #61c2d04C  
rgb(97, 194, 208, 60%) #61c2d099  
rgb(97, 194, 208, 80%) #61c2d0CC  
rgb(97, 194, 208, 100%) #61c2d0FF  

Saturated and desaturated colors of #61c2d0

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

#61c2d0 Color Usage In CSS

 body {
    color: #61c2d0;
    }
 p {
    color: rgb(97, 194, 208);
    }
 header {
    border-bottom:1px solid #61c2d0;
    }
Recent Random Colors