Random Color Generator

#7cfe85 Color

Color Codes
Hex Code #7cfe85
RGB Code rgb(124, 254, 133)
HSL Code hsl(124, 98%, 74%)

#7cfe85 Color Syntax

rgb()

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

 main {
    background-color: rgb(124, 254, 133);
   }

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(124, 98%, 74%);
  }

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 #7cfe85

RGB Code Hex Code Preview
rgb(124, 254, 133, 10%) #7cfe851a  
rgb(124, 254, 133, 20%) #7cfe8533  
rgb(124, 254, 133, 40%) #7cfe854C  
rgb(124, 254, 133, 60%) #7cfe8599  
rgb(124, 254, 133, 80%) #7cfe85CC  
rgb(124, 254, 133, 100%) #7cfe85FF  

Saturated and desaturated colors of #7cfe85

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

#7cfe85 Color Usage In CSS

 body {
    color: #7cfe85;
    }
 p {
    color: rgb(124, 254, 133);
    }
 header {
    border-bottom:1px solid #7cfe85;
    }
Recent Random Colors