Random Color Generator

#3afcb1 Color

Color Codes
Hex Code #3afcb1
RGB Code rgb(58, 252, 177)
HSL Code hsl(157, 97%, 61%)

#3afcb1 Color Syntax

rgb()

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

 main {
    background-color: rgb(58, 252, 177);
   }

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(157, 97%, 61%);
  }

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

RGB Code Hex Code Preview
rgb(58, 252, 177, 10%) #3afcb11a  
rgb(58, 252, 177, 20%) #3afcb133  
rgb(58, 252, 177, 40%) #3afcb14C  
rgb(58, 252, 177, 60%) #3afcb199  
rgb(58, 252, 177, 80%) #3afcb1CC  
rgb(58, 252, 177, 100%) #3afcb1FF  

Saturated and desaturated colors of #3afcb1

HSL Code Preview
hsl(157, 10%, 61%)  
hsl(157, 20%, 61%)  
hsl(157, 40%, 61%)  
hsl(157, 60%, 61%)  
hsl(157, 80%, 61%)  
hsl(157, 100%, 61%)  

#3afcb1 Color Usage In CSS

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