Random Color Generator

#076133 Color

Color Codes
Hex Code #076133
RGB Code rgb(07, 97, 51)
HSL Code hsl(149, 87%, 20%)

#076133 Color Syntax

rgb()

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

 main {
    background-color: rgb(07, 97, 51);
   }

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(149, 87%, 20%);
  }

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 #076133

RGB Code Hex Code Preview
rgb(07, 97, 51, 10%) #0761331a  
rgb(07, 97, 51, 20%) #07613333  
rgb(07, 97, 51, 40%) #0761334C  
rgb(07, 97, 51, 60%) #07613399  
rgb(07, 97, 51, 80%) #076133CC  
rgb(07, 97, 51, 100%) #076133FF  

Saturated and desaturated colors of #076133

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

#076133 Color Usage In CSS

 body {
    color: #076133;
    }
 p {
    color: rgb(07, 97, 51);
    }
 header {
    border-bottom:1px solid #076133;
    }
Recent Random Colors