Random Color Generator

#75d6a0 Color

Color Codes
Hex Code #75d6a0
RGB Code rgb(117, 214, 160)
HSL Code hsl(147, 54%, 65%)

#75d6a0 Color Syntax

rgb()

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

 main {
    background-color: rgb(117, 214, 160);
   }

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(147, 54%, 65%);
  }

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

RGB Code Hex Code Preview
rgb(117, 214, 160, 10%) #75d6a01a  
rgb(117, 214, 160, 20%) #75d6a033  
rgb(117, 214, 160, 40%) #75d6a04C  
rgb(117, 214, 160, 60%) #75d6a099  
rgb(117, 214, 160, 80%) #75d6a0CC  
rgb(117, 214, 160, 100%) #75d6a0FF  

Saturated and desaturated colors of #75d6a0

HSL Code Preview
hsl(147, 10%, 65%)  
hsl(147, 20%, 65%)  
hsl(147, 40%, 65%)  
hsl(147, 60%, 65%)  
hsl(147, 80%, 65%)  
hsl(147, 100%, 65%)  

#75d6a0 Color Usage In CSS

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