Random Color Generator

#2dfaff Color

Color Codes
Hex Code #2dfaff
RGB Code rgb(45, 250, 255)
HSL Code hsl(181, 100%, 59%)

#2dfaff Color Syntax

rgb()

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

 main {
    background-color: rgb(45, 250, 255);
   }

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(181, 100%, 59%);
  }

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 #2dfaff

RGB Code Hex Code Preview
rgb(45, 250, 255, 10%) #2dfaff1a  
rgb(45, 250, 255, 20%) #2dfaff33  
rgb(45, 250, 255, 40%) #2dfaff4C  
rgb(45, 250, 255, 60%) #2dfaff99  
rgb(45, 250, 255, 80%) #2dfaffCC  
rgb(45, 250, 255, 100%) #2dfaffFF  

Saturated and desaturated colors of #2dfaff

HSL Code Preview
hsl(181, 10%, 59%)  
hsl(181, 20%, 59%)  
hsl(181, 40%, 59%)  
hsl(181, 60%, 59%)  
hsl(181, 80%, 59%)  
hsl(181, 100%, 59%)  

#2dfaff Color Usage In CSS

 body {
    color: #2dfaff;
    }
 p {
    color: rgb(45, 250, 255);
    }
 header {
    border-bottom:1px solid #2dfaff;
    }
Recent Random Colors