Random Color Generator

#37835a Color

Color Codes
Hex Code #37835a
RGB Code rgb(55, 131, 90)
HSL Code hsl(148, 41%, 36%)

#37835a Color Syntax

rgb()

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

 main {
    background-color: rgb(55, 131, 90);
   }

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(148, 41%, 36%);
  }

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 #37835a

RGB Code Hex Code Preview
rgb(55, 131, 90, 10%) #37835a1a  
rgb(55, 131, 90, 20%) #37835a33  
rgb(55, 131, 90, 40%) #37835a4C  
rgb(55, 131, 90, 60%) #37835a99  
rgb(55, 131, 90, 80%) #37835aCC  
rgb(55, 131, 90, 100%) #37835aFF  

Saturated and desaturated colors of #37835a

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

#37835a Color Usage In CSS

 body {
    color: #37835a;
    }
 p {
    color: rgb(55, 131, 90);
    }
 header {
    border-bottom:1px solid #37835a;
    }
Recent Random Colors