Random Color Generator

#04b56a Color

Color Codes
Hex Code #04b56a
RGB Code rgb(04, 181, 106)
HSL Code hsl(155, 96%, 36%)

#04b56a Color Syntax

rgb()

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

 main {
    background-color: rgb(04, 181, 106);
   }

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(155, 96%, 36%);
  }

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 #04b56a

RGB Code Hex Code Preview
rgb(04, 181, 106, 10%) #04b56a1a  
rgb(04, 181, 106, 20%) #04b56a33  
rgb(04, 181, 106, 40%) #04b56a4C  
rgb(04, 181, 106, 60%) #04b56a99  
rgb(04, 181, 106, 80%) #04b56aCC  
rgb(04, 181, 106, 100%) #04b56aFF  

Saturated and desaturated colors of #04b56a

HSL Code Preview
hsl(155, 10%, 36%)  
hsl(155, 20%, 36%)  
hsl(155, 40%, 36%)  
hsl(155, 60%, 36%)  
hsl(155, 80%, 36%)  
hsl(155, 100%, 36%)  

#04b56a Color Usage In CSS

 body {
    color: #04b56a;
    }
 p {
    color: rgb(04, 181, 106);
    }
 header {
    border-bottom:1px solid #04b56a;
    }
Recent Random Colors