Random Color Generator

#34d754 Color

Color Codes
Hex Code #34d754
RGB Code rgb(52, 215, 84)
HSL Code hsl(132, 67%, 52%)

#34d754 Color Syntax

rgb()

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

 main {
    background-color: rgb(52, 215, 84);
   }

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(132, 67%, 52%);
  }

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 #34d754

RGB Code Hex Code Preview
rgb(52, 215, 84, 10%) #34d7541a  
rgb(52, 215, 84, 20%) #34d75433  
rgb(52, 215, 84, 40%) #34d7544C  
rgb(52, 215, 84, 60%) #34d75499  
rgb(52, 215, 84, 80%) #34d754CC  
rgb(52, 215, 84, 100%) #34d754FF  

Saturated and desaturated colors of #34d754

HSL Code Preview
hsl(132, 10%, 52%)  
hsl(132, 20%, 52%)  
hsl(132, 40%, 52%)  
hsl(132, 60%, 52%)  
hsl(132, 80%, 52%)  
hsl(132, 100%, 52%)  

#34d754 Color Usage In CSS

 body {
    color: #34d754;
    }
 p {
    color: rgb(52, 215, 84);
    }
 header {
    border-bottom:1px solid #34d754;
    }
Recent Random Colors