Random Color Generator

#385f47 Color

Color Codes
Hex Code #385f47
RGB Code rgb(56, 95, 71)
HSL Code hsl(143, 26%, 30%)

#385f47 Color Syntax

rgb()

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

 main {
    background-color: rgb(56, 95, 71);
   }

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(143, 26%, 30%);
  }

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 #385f47

RGB Code Hex Code Preview
rgb(56, 95, 71, 10%) #385f471a  
rgb(56, 95, 71, 20%) #385f4733  
rgb(56, 95, 71, 40%) #385f474C  
rgb(56, 95, 71, 60%) #385f4799  
rgb(56, 95, 71, 80%) #385f47CC  
rgb(56, 95, 71, 100%) #385f47FF  

Saturated and desaturated colors of #385f47

HSL Code Preview
hsl(143, 10%, 30%)  
hsl(143, 20%, 30%)  
hsl(143, 40%, 30%)  
hsl(143, 60%, 30%)  
hsl(143, 80%, 30%)  
hsl(143, 100%, 30%)  

#385f47 Color Usage In CSS

 body {
    color: #385f47;
    }
 p {
    color: rgb(56, 95, 71);
    }
 header {
    border-bottom:1px solid #385f47;
    }
Recent Random Colors