Random Color Generator

#2e5a3c Color

Color Codes
Hex Code #2e5a3c
RGB Code rgb(46, 90, 60)
HSL Code hsl(139, 32%, 27%)

#2e5a3c Color Syntax

rgb()

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

 main {
    background-color: rgb(46, 90, 60);
   }

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(139, 32%, 27%);
  }

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

RGB Code Hex Code Preview
rgb(46, 90, 60, 10%) #2e5a3c1a  
rgb(46, 90, 60, 20%) #2e5a3c33  
rgb(46, 90, 60, 40%) #2e5a3c4C  
rgb(46, 90, 60, 60%) #2e5a3c99  
rgb(46, 90, 60, 80%) #2e5a3cCC  
rgb(46, 90, 60, 100%) #2e5a3cFF  

Saturated and desaturated colors of #2e5a3c

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

#2e5a3c Color Usage In CSS

 body {
    color: #2e5a3c;
    }
 p {
    color: rgb(46, 90, 60);
    }
 header {
    border-bottom:1px solid #2e5a3c;
    }
Recent Random Colors