Random Color Generator

#04b34c Color

Color Codes
Hex Code #04b34c
RGB Code rgb(04, 179, 76)
HSL Code hsl(145, 96%, 36%)

#04b34c Color Syntax

rgb()

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

 main {
    background-color: rgb(04, 179, 76);
   }

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(145, 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 #04b34c

RGB Code Hex Code Preview
rgb(04, 179, 76, 10%) #04b34c1a  
rgb(04, 179, 76, 20%) #04b34c33  
rgb(04, 179, 76, 40%) #04b34c4C  
rgb(04, 179, 76, 60%) #04b34c99  
rgb(04, 179, 76, 80%) #04b34cCC  
rgb(04, 179, 76, 100%) #04b34cFF  

Saturated and desaturated colors of #04b34c

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

#04b34c Color Usage In CSS

 body {
    color: #04b34c;
    }
 p {
    color: rgb(04, 179, 76);
    }
 header {
    border-bottom:1px solid #04b34c;
    }
Recent Random Colors