Random Color Generator

#0ef291 Color

Color Codes
Hex Code #0ef291
RGB Code rgb(14, 242, 145)
HSL Code hsl(154, 90%, 50%)

#0ef291 Color Syntax

rgb()

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

 main {
    background-color: rgb(14, 242, 145);
   }

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(154, 90%, 50%);
  }

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

RGB Code Hex Code Preview
rgb(14, 242, 145, 10%) #0ef2911a  
rgb(14, 242, 145, 20%) #0ef29133  
rgb(14, 242, 145, 40%) #0ef2914C  
rgb(14, 242, 145, 60%) #0ef29199  
rgb(14, 242, 145, 80%) #0ef291CC  
rgb(14, 242, 145, 100%) #0ef291FF  

Saturated and desaturated colors of #0ef291

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

#0ef291 Color Usage In CSS

 body {
    color: #0ef291;
    }
 p {
    color: rgb(14, 242, 145);
    }
 header {
    border-bottom:1px solid #0ef291;
    }
Recent Random Colors