Random Color Generator

#06801f Color

Color Codes
Hex Code #06801f
RGB Code rgb(06, 128, 31)
HSL Code hsl(132, 91%, 26%)

#06801f Color Syntax

rgb()

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

 main {
    background-color: rgb(06, 128, 31);
   }

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, 91%, 26%);
  }

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 #06801f

RGB Code Hex Code Preview
rgb(06, 128, 31, 10%) #06801f1a  
rgb(06, 128, 31, 20%) #06801f33  
rgb(06, 128, 31, 40%) #06801f4C  
rgb(06, 128, 31, 60%) #06801f99  
rgb(06, 128, 31, 80%) #06801fCC  
rgb(06, 128, 31, 100%) #06801fFF  

Saturated and desaturated colors of #06801f

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

#06801f Color Usage In CSS

 body {
    color: #06801f;
    }
 p {
    color: rgb(06, 128, 31);
    }
 header {
    border-bottom:1px solid #06801f;
    }
Recent Random Colors