Random Color Generator

#348f5d Color

Color Codes
Hex Code #348f5d
RGB Code rgb(52, 143, 93)
HSL Code hsl(147, 47%, 38%)

#348f5d Color Syntax

rgb()

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

 main {
    background-color: rgb(52, 143, 93);
   }

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(147, 47%, 38%);
  }

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 #348f5d

RGB Code Hex Code Preview
rgb(52, 143, 93, 10%) #348f5d1a  
rgb(52, 143, 93, 20%) #348f5d33  
rgb(52, 143, 93, 40%) #348f5d4C  
rgb(52, 143, 93, 60%) #348f5d99  
rgb(52, 143, 93, 80%) #348f5dCC  
rgb(52, 143, 93, 100%) #348f5dFF  

Saturated and desaturated colors of #348f5d

HSL Code Preview
hsl(147, 10%, 38%)  
hsl(147, 20%, 38%)  
hsl(147, 40%, 38%)  
hsl(147, 60%, 38%)  
hsl(147, 80%, 38%)  
hsl(147, 100%, 38%)  

#348f5d Color Usage In CSS

 body {
    color: #348f5d;
    }
 p {
    color: rgb(52, 143, 93);
    }
 header {
    border-bottom:1px solid #348f5d;
    }
Recent Random Colors