Random Color Generator

#84e7fd Color

Color Codes
Hex Code #84e7fd
RGB Code rgb(132, 231, 253)
HSL Code hsl(191, 97%, 75%)

#84e7fd Color Syntax

rgb()

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

 main {
    background-color: rgb(132, 231, 253);
   }

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(191, 97%, 75%);
  }

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 #84e7fd

RGB Code Hex Code Preview
rgb(132, 231, 253, 10%) #84e7fd1a  
rgb(132, 231, 253, 20%) #84e7fd33  
rgb(132, 231, 253, 40%) #84e7fd4C  
rgb(132, 231, 253, 60%) #84e7fd99  
rgb(132, 231, 253, 80%) #84e7fdCC  
rgb(132, 231, 253, 100%) #84e7fdFF  

Saturated and desaturated colors of #84e7fd

HSL Code Preview
hsl(191, 10%, 75%)  
hsl(191, 20%, 75%)  
hsl(191, 40%, 75%)  
hsl(191, 60%, 75%)  
hsl(191, 80%, 75%)  
hsl(191, 100%, 75%)  

#84e7fd Color Usage In CSS

 body {
    color: #84e7fd;
    }
 p {
    color: rgb(132, 231, 253);
    }
 header {
    border-bottom:1px solid #84e7fd;
    }
Recent Random Colors