Random Color Generator

#3ae3ea Color

Color Codes
Hex Code #3ae3ea
RGB Code rgb(58, 227, 234)
HSL Code hsl(182, 81%, 57%)

#3ae3ea Color Syntax

rgb()

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

 main {
    background-color: rgb(58, 227, 234);
   }

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(182, 81%, 57%);
  }

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 #3ae3ea

RGB Code Hex Code Preview
rgb(58, 227, 234, 10%) #3ae3ea1a  
rgb(58, 227, 234, 20%) #3ae3ea33  
rgb(58, 227, 234, 40%) #3ae3ea4C  
rgb(58, 227, 234, 60%) #3ae3ea99  
rgb(58, 227, 234, 80%) #3ae3eaCC  
rgb(58, 227, 234, 100%) #3ae3eaFF  

Saturated and desaturated colors of #3ae3ea

HSL Code Preview
hsl(182, 10%, 57%)  
hsl(182, 20%, 57%)  
hsl(182, 40%, 57%)  
hsl(182, 60%, 57%)  
hsl(182, 80%, 57%)  
hsl(182, 100%, 57%)  

#3ae3ea Color Usage In CSS

 body {
    color: #3ae3ea;
    }
 p {
    color: rgb(58, 227, 234);
    }
 header {
    border-bottom:1px solid #3ae3ea;
    }
Recent Random Colors