Random Color Generator

#28c349 Color

Color Codes
Hex Code #28c349
RGB Code rgb(40, 195, 73)
HSL Code hsl(133, 66%, 46%)

#28c349 Color Syntax

rgb()

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

 main {
    background-color: rgb(40, 195, 73);
   }

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(133, 66%, 46%);
  }

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 #28c349

RGB Code Hex Code Preview
rgb(40, 195, 73, 10%) #28c3491a  
rgb(40, 195, 73, 20%) #28c34933  
rgb(40, 195, 73, 40%) #28c3494C  
rgb(40, 195, 73, 60%) #28c34999  
rgb(40, 195, 73, 80%) #28c349CC  
rgb(40, 195, 73, 100%) #28c349FF  

Saturated and desaturated colors of #28c349

HSL Code Preview
hsl(133, 10%, 46%)  
hsl(133, 20%, 46%)  
hsl(133, 40%, 46%)  
hsl(133, 60%, 46%)  
hsl(133, 80%, 46%)  
hsl(133, 100%, 46%)  

#28c349 Color Usage In CSS

 body {
    color: #28c349;
    }
 p {
    color: rgb(40, 195, 73);
    }
 header {
    border-bottom:1px solid #28c349;
    }
Recent Random Colors