Random Color Generator

#2baa72 Color

Color Codes
Hex Code #2baa72
RGB Code rgb(43, 170, 114)
HSL Code hsl(154, 60%, 42%)

#2baa72 Color Syntax

rgb()

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

 main {
    background-color: rgb(43, 170, 114);
   }

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(154, 60%, 42%);
  }

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 #2baa72

RGB Code Hex Code Preview
rgb(43, 170, 114, 10%) #2baa721a  
rgb(43, 170, 114, 20%) #2baa7233  
rgb(43, 170, 114, 40%) #2baa724C  
rgb(43, 170, 114, 60%) #2baa7299  
rgb(43, 170, 114, 80%) #2baa72CC  
rgb(43, 170, 114, 100%) #2baa72FF  

Saturated and desaturated colors of #2baa72

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

#2baa72 Color Usage In CSS

 body {
    color: #2baa72;
    }
 p {
    color: rgb(43, 170, 114);
    }
 header {
    border-bottom:1px solid #2baa72;
    }
Recent Random Colors