Random Color Generator

#94d385 Color

Color Codes
Hex Code #94d385
RGB Code rgb(148, 211, 133)
HSL Code hsl(108, 47%, 67%)

#94d385 Color Syntax

rgb()

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

 main {
    background-color: rgb(148, 211, 133);
   }

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(108, 47%, 67%);
  }

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 #94d385

RGB Code Hex Code Preview
rgb(148, 211, 133, 10%) #94d3851a  
rgb(148, 211, 133, 20%) #94d38533  
rgb(148, 211, 133, 40%) #94d3854C  
rgb(148, 211, 133, 60%) #94d38599  
rgb(148, 211, 133, 80%) #94d385CC  
rgb(148, 211, 133, 100%) #94d385FF  

Saturated and desaturated colors of #94d385

HSL Code Preview
hsl(108, 10%, 67%)  
hsl(108, 20%, 67%)  
hsl(108, 40%, 67%)  
hsl(108, 60%, 67%)  
hsl(108, 80%, 67%)  
hsl(108, 100%, 67%)  

#94d385 Color Usage In CSS

 body {
    color: #94d385;
    }
 p {
    color: rgb(148, 211, 133);
    }
 header {
    border-bottom:1px solid #94d385;
    }
Recent Random Colors