Random Color Generator

#375831 Color

Color Codes
Hex Code #375831
RGB Code rgb(55, 88, 49)
HSL Code hsl(111, 28%, 27%)

#375831 Color Syntax

rgb()

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

 main {
    background-color: rgb(55, 88, 49);
   }

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(111, 28%, 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 #375831

RGB Code Hex Code Preview
rgb(55, 88, 49, 10%) #3758311a  
rgb(55, 88, 49, 20%) #37583133  
rgb(55, 88, 49, 40%) #3758314C  
rgb(55, 88, 49, 60%) #37583199  
rgb(55, 88, 49, 80%) #375831CC  
rgb(55, 88, 49, 100%) #375831FF  

Saturated and desaturated colors of #375831

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

#375831 Color Usage In CSS

 body {
    color: #375831;
    }
 p {
    color: rgb(55, 88, 49);
    }
 header {
    border-bottom:1px solid #375831;
    }
Recent Random Colors