Random Color Generator

#75e2cf Color

Color Codes
Hex Code #75e2cf
RGB Code rgb(117, 226, 207)
HSL Code hsl(170, 65%, 67%)

#75e2cf Color Syntax

rgb()

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

 main {
    background-color: rgb(117, 226, 207);
   }

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(170, 65%, 67%);
  }

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 #75e2cf

RGB Code Hex Code Preview
rgb(117, 226, 207, 10%) #75e2cf1a  
rgb(117, 226, 207, 20%) #75e2cf33  
rgb(117, 226, 207, 40%) #75e2cf4C  
rgb(117, 226, 207, 60%) #75e2cf99  
rgb(117, 226, 207, 80%) #75e2cfCC  
rgb(117, 226, 207, 100%) #75e2cfFF  

Saturated and desaturated colors of #75e2cf

HSL Code Preview
hsl(170, 10%, 67%)  
hsl(170, 20%, 67%)  
hsl(170, 40%, 67%)  
hsl(170, 60%, 67%)  
hsl(170, 80%, 67%)  
hsl(170, 100%, 67%)  

#75e2cf Color Usage In CSS

 body {
    color: #75e2cf;
    }
 p {
    color: rgb(117, 226, 207);
    }
 header {
    border-bottom:1px solid #75e2cf;
    }
Recent Random Colors