Random Color Generator

#cafaff Color

Color Codes
Hex Code #cafaff
RGB Code rgb(202, 250, 255)
HSL Code hsl(186, 100%, 90%)

#cafaff Color Syntax

rgb()

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

 main {
    background-color: rgb(202, 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(186, 100%, 90%);
  }

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 #cafaff

RGB Code Hex Code Preview
rgb(202, 250, 255, 10%) #cafaff1a  
rgb(202, 250, 255, 20%) #cafaff33  
rgb(202, 250, 255, 40%) #cafaff4C  
rgb(202, 250, 255, 60%) #cafaff99  
rgb(202, 250, 255, 80%) #cafaffCC  
rgb(202, 250, 255, 100%) #cafaffFF  

Saturated and desaturated colors of #cafaff

HSL Code Preview
hsl(186, 10%, 90%)  
hsl(186, 20%, 90%)  
hsl(186, 40%, 90%)  
hsl(186, 60%, 90%)  
hsl(186, 80%, 90%)  
hsl(186, 100%, 90%)  

#cafaff Color Usage In CSS

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