Random Color Generator

#84b099 Color

Color Codes
Hex Code #84b099
RGB Code rgb(132, 176, 153)
HSL Code hsl(149, 22%, 60%)

#84b099 Color Syntax

rgb()

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

 main {
    background-color: rgb(132, 176, 153);
   }

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, 22%, 60%);
  }

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 #84b099

RGB Code Hex Code Preview
rgb(132, 176, 153, 10%) #84b0991a  
rgb(132, 176, 153, 20%) #84b09933  
rgb(132, 176, 153, 40%) #84b0994C  
rgb(132, 176, 153, 60%) #84b09999  
rgb(132, 176, 153, 80%) #84b099CC  
rgb(132, 176, 153, 100%) #84b099FF  

Saturated and desaturated colors of #84b099

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

#84b099 Color Usage In CSS

 body {
    color: #84b099;
    }
 p {
    color: rgb(132, 176, 153);
    }
 header {
    border-bottom:1px solid #84b099;
    }
Recent Random Colors