Random Color Generator

#61a591 Color

Color Codes
Hex Code #61a591
RGB Code rgb(97, 165, 145)
HSL Code hsl(162, 27%, 51%)

#61a591 Color Syntax

rgb()

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

 main {
    background-color: rgb(97, 165, 145);
   }

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(162, 27%, 51%);
  }

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 #61a591

RGB Code Hex Code Preview
rgb(97, 165, 145, 10%) #61a5911a  
rgb(97, 165, 145, 20%) #61a59133  
rgb(97, 165, 145, 40%) #61a5914C  
rgb(97, 165, 145, 60%) #61a59199  
rgb(97, 165, 145, 80%) #61a591CC  
rgb(97, 165, 145, 100%) #61a591FF  

Saturated and desaturated colors of #61a591

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

#61a591 Color Usage In CSS

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