Random Color Generator

#35cabf Color

Color Codes
Hex Code #35cabf
RGB Code rgb(53, 202, 191)
HSL Code hsl(176, 58%, 50%)

#35cabf Color Syntax

rgb()

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

 main {
    background-color: rgb(53, 202, 191);
   }

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(176, 58%, 50%);
  }

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 #35cabf

RGB Code Hex Code Preview
rgb(53, 202, 191, 10%) #35cabf1a  
rgb(53, 202, 191, 20%) #35cabf33  
rgb(53, 202, 191, 40%) #35cabf4C  
rgb(53, 202, 191, 60%) #35cabf99  
rgb(53, 202, 191, 80%) #35cabfCC  
rgb(53, 202, 191, 100%) #35cabfFF  

Saturated and desaturated colors of #35cabf

HSL Code Preview
hsl(176, 10%, 50%)  
hsl(176, 20%, 50%)  
hsl(176, 40%, 50%)  
hsl(176, 60%, 50%)  
hsl(176, 80%, 50%)  
hsl(176, 100%, 50%)  

#35cabf Color Usage In CSS

 body {
    color: #35cabf;
    }
 p {
    color: rgb(53, 202, 191);
    }
 header {
    border-bottom:1px solid #35cabf;
    }
Recent Random Colors