Random Color Generator

#6faef0 Color

Color Codes
Hex Code #6faef0
RGB Code rgb(111, 174, 240)
HSL Code hsl(211, 81%, 69%)

#6faef0 Color Syntax

rgb()

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

 main {
    background-color: rgb(111, 174, 240);
   }

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(211, 81%, 69%);
  }

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 #6faef0

RGB Code Hex Code Preview
rgb(111, 174, 240, 10%) #6faef01a  
rgb(111, 174, 240, 20%) #6faef033  
rgb(111, 174, 240, 40%) #6faef04C  
rgb(111, 174, 240, 60%) #6faef099  
rgb(111, 174, 240, 80%) #6faef0CC  
rgb(111, 174, 240, 100%) #6faef0FF  

Saturated and desaturated colors of #6faef0

HSL Code Preview
hsl(211, 10%, 69%)  
hsl(211, 20%, 69%)  
hsl(211, 40%, 69%)  
hsl(211, 60%, 69%)  
hsl(211, 80%, 69%)  
hsl(211, 100%, 69%)  

#6faef0 Color Usage In CSS

 body {
    color: #6faef0;
    }
 p {
    color: rgb(111, 174, 240);
    }
 header {
    border-bottom:1px solid #6faef0;
    }
Recent Random Colors