Random Color Generator

#73b48a Color

Color Codes
Hex Code #73b48a
RGB Code rgb(115, 180, 138)
HSL Code hsl(141, 30%, 58%)

#73b48a Color Syntax

rgb()

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

 main {
    background-color: rgb(115, 180, 138);
   }

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(141, 30%, 58%);
  }

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 #73b48a

RGB Code Hex Code Preview
rgb(115, 180, 138, 10%) #73b48a1a  
rgb(115, 180, 138, 20%) #73b48a33  
rgb(115, 180, 138, 40%) #73b48a4C  
rgb(115, 180, 138, 60%) #73b48a99  
rgb(115, 180, 138, 80%) #73b48aCC  
rgb(115, 180, 138, 100%) #73b48aFF  

Saturated and desaturated colors of #73b48a

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

#73b48a Color Usage In CSS

 body {
    color: #73b48a;
    }
 p {
    color: rgb(115, 180, 138);
    }
 header {
    border-bottom:1px solid #73b48a;
    }
Recent Random Colors