Random Color Generator

#06c3fd Color

Color Codes
Hex Code #06c3fd
RGB Code rgb(06, 195, 253)
HSL Code hsl(194, 98%, 51%)

#06c3fd Color Syntax

rgb()

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

 main {
    background-color: rgb(06, 195, 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(194, 98%, 51%);
  }

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

RGB Code Hex Code Preview
rgb(06, 195, 253, 10%) #06c3fd1a  
rgb(06, 195, 253, 20%) #06c3fd33  
rgb(06, 195, 253, 40%) #06c3fd4C  
rgb(06, 195, 253, 60%) #06c3fd99  
rgb(06, 195, 253, 80%) #06c3fdCC  
rgb(06, 195, 253, 100%) #06c3fdFF  

Saturated and desaturated colors of #06c3fd

HSL Code Preview
hsl(194, 10%, 51%)  
hsl(194, 20%, 51%)  
hsl(194, 40%, 51%)  
hsl(194, 60%, 51%)  
hsl(194, 80%, 51%)  
hsl(194, 100%, 51%)  

#06c3fd Color Usage In CSS

 body {
    color: #06c3fd;
    }
 p {
    color: rgb(06, 195, 253);
    }
 header {
    border-bottom:1px solid #06c3fd;
    }
Recent Random Colors