Random Color Generator

#b2f3ed Color

Color Codes
Hex Code #b2f3ed
RGB Code rgb(178, 243, 237)
HSL Code hsl(174, 73%, 83%)

#b2f3ed Color Syntax

rgb()

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

 main {
    background-color: rgb(178, 243, 237);
   }

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(174, 73%, 83%);
  }

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 #b2f3ed

RGB Code Hex Code Preview
rgb(178, 243, 237, 10%) #b2f3ed1a  
rgb(178, 243, 237, 20%) #b2f3ed33  
rgb(178, 243, 237, 40%) #b2f3ed4C  
rgb(178, 243, 237, 60%) #b2f3ed99  
rgb(178, 243, 237, 80%) #b2f3edCC  
rgb(178, 243, 237, 100%) #b2f3edFF  

Saturated and desaturated colors of #b2f3ed

HSL Code Preview
hsl(174, 10%, 83%)  
hsl(174, 20%, 83%)  
hsl(174, 40%, 83%)  
hsl(174, 60%, 83%)  
hsl(174, 80%, 83%)  
hsl(174, 100%, 83%)  

#b2f3ed Color Usage In CSS

 body {
    color: #b2f3ed;
    }
 p {
    color: rgb(178, 243, 237);
    }
 header {
    border-bottom:1px solid #b2f3ed;
    }
Recent Random Colors