Random Color Generator

#0ae35a Color

Color Codes
Hex Code #0ae35a
RGB Code rgb(10, 227, 90)
HSL Code hsl(142, 92%, 46%)

#0ae35a Color Syntax

rgb()

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

 main {
    background-color: rgb(10, 227, 90);
   }

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(142, 92%, 46%);
  }

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 #0ae35a

RGB Code Hex Code Preview
rgb(10, 227, 90, 10%) #0ae35a1a  
rgb(10, 227, 90, 20%) #0ae35a33  
rgb(10, 227, 90, 40%) #0ae35a4C  
rgb(10, 227, 90, 60%) #0ae35a99  
rgb(10, 227, 90, 80%) #0ae35aCC  
rgb(10, 227, 90, 100%) #0ae35aFF  

Saturated and desaturated colors of #0ae35a

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

#0ae35a Color Usage In CSS

 body {
    color: #0ae35a;
    }
 p {
    color: rgb(10, 227, 90);
    }
 header {
    border-bottom:1px solid #0ae35a;
    }
Recent Random Colors