Random Color Generator

#97cfaf Color

Color Codes
Hex Code #97cfaf
RGB Code rgb(151, 207, 175)
HSL Code hsl(146, 37%, 70%)

#97cfaf Color Syntax

rgb()

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

 main {
    background-color: rgb(151, 207, 175);
   }

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(146, 37%, 70%);
  }

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 #97cfaf

RGB Code Hex Code Preview
rgb(151, 207, 175, 10%) #97cfaf1a  
rgb(151, 207, 175, 20%) #97cfaf33  
rgb(151, 207, 175, 40%) #97cfaf4C  
rgb(151, 207, 175, 60%) #97cfaf99  
rgb(151, 207, 175, 80%) #97cfafCC  
rgb(151, 207, 175, 100%) #97cfafFF  

Saturated and desaturated colors of #97cfaf

HSL Code Preview
hsl(146, 10%, 70%)  
hsl(146, 20%, 70%)  
hsl(146, 40%, 70%)  
hsl(146, 60%, 70%)  
hsl(146, 80%, 70%)  
hsl(146, 100%, 70%)  

#97cfaf Color Usage In CSS

 body {
    color: #97cfaf;
    }
 p {
    color: rgb(151, 207, 175);
    }
 header {
    border-bottom:1px solid #97cfaf;
    }
Recent Random Colors