Random Color Generator

#81faed Color

Color Codes
Hex Code #81faed
RGB Code rgb(129, 250, 237)
HSL Code hsl(174, 92%, 74%)

#81faed Color Syntax

rgb()

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

 main {
    background-color: rgb(129, 250, 237);
   }

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(174, 92%, 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 #81faed

RGB Code Hex Code Preview
rgb(129, 250, 237, 10%) #81faed1a  
rgb(129, 250, 237, 20%) #81faed33  
rgb(129, 250, 237, 40%) #81faed4C  
rgb(129, 250, 237, 60%) #81faed99  
rgb(129, 250, 237, 80%) #81faedCC  
rgb(129, 250, 237, 100%) #81faedFF  

Saturated and desaturated colors of #81faed

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

#81faed Color Usage In CSS

 body {
    color: #81faed;
    }
 p {
    color: rgb(129, 250, 237);
    }
 header {
    border-bottom:1px solid #81faed;
    }
Recent Random Colors