Random Color Generator

#ccaeeb Color

Color Codes
Hex Code #ccaeeb
RGB Code rgb(204, 174, 235)
HSL Code hsl(270, 60%, 80%)

#ccaeeb Color Syntax

rgb()

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

 main {
    background-color: rgb(204, 174, 235);
   }

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(270, 60%, 80%);
  }

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

RGB Code Hex Code Preview
rgb(204, 174, 235, 10%) #ccaeeb1a  
rgb(204, 174, 235, 20%) #ccaeeb33  
rgb(204, 174, 235, 40%) #ccaeeb4C  
rgb(204, 174, 235, 60%) #ccaeeb99  
rgb(204, 174, 235, 80%) #ccaeebCC  
rgb(204, 174, 235, 100%) #ccaeebFF  

Saturated and desaturated colors of #ccaeeb

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

#ccaeeb Color Usage In CSS

 body {
    color: #ccaeeb;
    }
 p {
    color: rgb(204, 174, 235);
    }
 header {
    border-bottom:1px solid #ccaeeb;
    }
Recent Random Colors