Random Color Generator

#06bcb4 Color

Color Codes
Hex Code #06bcb4
RGB Code rgb(06, 188, 180)
HSL Code hsl(177, 94%, 38%)

#06bcb4 Color Syntax

rgb()

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

 main {
    background-color: rgb(06, 188, 180);
   }

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(177, 94%, 38%);
  }

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

RGB Code Hex Code Preview
rgb(06, 188, 180, 10%) #06bcb41a  
rgb(06, 188, 180, 20%) #06bcb433  
rgb(06, 188, 180, 40%) #06bcb44C  
rgb(06, 188, 180, 60%) #06bcb499  
rgb(06, 188, 180, 80%) #06bcb4CC  
rgb(06, 188, 180, 100%) #06bcb4FF  

Saturated and desaturated colors of #06bcb4

HSL Code Preview
hsl(177, 10%, 38%)  
hsl(177, 20%, 38%)  
hsl(177, 40%, 38%)  
hsl(177, 60%, 38%)  
hsl(177, 80%, 38%)  
hsl(177, 100%, 38%)  

#06bcb4 Color Usage In CSS

 body {
    color: #06bcb4;
    }
 p {
    color: rgb(06, 188, 180);
    }
 header {
    border-bottom:1px solid #06bcb4;
    }
Recent Random Colors