Random Color Generator

#85f084 Color

Color Codes
Hex Code #85f084
RGB Code rgb(133, 240, 132)
HSL Code hsl(119, 78%, 73%)

#85f084 Color Syntax

rgb()

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

 main {
    background-color: rgb(133, 240, 132);
   }

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(119, 78%, 73%);
  }

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 #85f084

RGB Code Hex Code Preview
rgb(133, 240, 132, 10%) #85f0841a  
rgb(133, 240, 132, 20%) #85f08433  
rgb(133, 240, 132, 40%) #85f0844C  
rgb(133, 240, 132, 60%) #85f08499  
rgb(133, 240, 132, 80%) #85f084CC  
rgb(133, 240, 132, 100%) #85f084FF  

Saturated and desaturated colors of #85f084

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

#85f084 Color Usage In CSS

 body {
    color: #85f084;
    }
 p {
    color: rgb(133, 240, 132);
    }
 header {
    border-bottom:1px solid #85f084;
    }
Recent Random Colors