Random Color Generator

#78edca Color

Color Codes
Hex Code #78edca
RGB Code rgb(120, 237, 202)
HSL Code hsl(162, 76%, 70%)

#78edca Color Syntax

rgb()

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

 main {
    background-color: rgb(120, 237, 202);
   }

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(162, 76%, 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 #78edca

RGB Code Hex Code Preview
rgb(120, 237, 202, 10%) #78edca1a  
rgb(120, 237, 202, 20%) #78edca33  
rgb(120, 237, 202, 40%) #78edca4C  
rgb(120, 237, 202, 60%) #78edca99  
rgb(120, 237, 202, 80%) #78edcaCC  
rgb(120, 237, 202, 100%) #78edcaFF  

Saturated and desaturated colors of #78edca

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

#78edca Color Usage In CSS

 body {
    color: #78edca;
    }
 p {
    color: rgb(120, 237, 202);
    }
 header {
    border-bottom:1px solid #78edca;
    }
Recent Random Colors