Random Color Generator

#06ded8 Color

Color Codes
Hex Code #06ded8
RGB Code rgb(06, 222, 216)
HSL Code hsl(178, 95%, 45%)

#06ded8 Color Syntax

rgb()

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

 main {
    background-color: rgb(06, 222, 216);
   }

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(178, 95%, 45%);
  }

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 #06ded8

RGB Code Hex Code Preview
rgb(06, 222, 216, 10%) #06ded81a  
rgb(06, 222, 216, 20%) #06ded833  
rgb(06, 222, 216, 40%) #06ded84C  
rgb(06, 222, 216, 60%) #06ded899  
rgb(06, 222, 216, 80%) #06ded8CC  
rgb(06, 222, 216, 100%) #06ded8FF  

Saturated and desaturated colors of #06ded8

HSL Code Preview
hsl(178, 10%, 45%)  
hsl(178, 20%, 45%)  
hsl(178, 40%, 45%)  
hsl(178, 60%, 45%)  
hsl(178, 80%, 45%)  
hsl(178, 100%, 45%)  

#06ded8 Color Usage In CSS

 body {
    color: #06ded8;
    }
 p {
    color: rgb(06, 222, 216);
    }
 header {
    border-bottom:1px solid #06ded8;
    }
Recent Random Colors