Random Color Generator

#48f3c7 Color

Color Codes
Hex Code #48f3c7
RGB Code rgb(72, 243, 199)
HSL Code hsl(165, 88%, 62%)

#48f3c7 Color Syntax

rgb()

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

 main {
    background-color: rgb(72, 243, 199);
   }

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(165, 88%, 62%);
  }

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 #48f3c7

RGB Code Hex Code Preview
rgb(72, 243, 199, 10%) #48f3c71a  
rgb(72, 243, 199, 20%) #48f3c733  
rgb(72, 243, 199, 40%) #48f3c74C  
rgb(72, 243, 199, 60%) #48f3c799  
rgb(72, 243, 199, 80%) #48f3c7CC  
rgb(72, 243, 199, 100%) #48f3c7FF  

Saturated and desaturated colors of #48f3c7

HSL Code Preview
hsl(165, 10%, 62%)  
hsl(165, 20%, 62%)  
hsl(165, 40%, 62%)  
hsl(165, 60%, 62%)  
hsl(165, 80%, 62%)  
hsl(165, 100%, 62%)  

#48f3c7 Color Usage In CSS

 body {
    color: #48f3c7;
    }
 p {
    color: rgb(72, 243, 199);
    }
 header {
    border-bottom:1px solid #48f3c7;
    }
Recent Random Colors