Random Color Generator

#c5aeda Color

Color Codes
Hex Code #c5aeda
RGB Code rgb(197, 174, 218)
HSL Code hsl(271, 37%, 77%)

#c5aeda Color Syntax

rgb()

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

 main {
    background-color: rgb(197, 174, 218);
   }

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(271, 37%, 77%);
  }

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

RGB Code Hex Code Preview
rgb(197, 174, 218, 10%) #c5aeda1a  
rgb(197, 174, 218, 20%) #c5aeda33  
rgb(197, 174, 218, 40%) #c5aeda4C  
rgb(197, 174, 218, 60%) #c5aeda99  
rgb(197, 174, 218, 80%) #c5aedaCC  
rgb(197, 174, 218, 100%) #c5aedaFF  

Saturated and desaturated colors of #c5aeda

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

#c5aeda Color Usage In CSS

 body {
    color: #c5aeda;
    }
 p {
    color: rgb(197, 174, 218);
    }
 header {
    border-bottom:1px solid #c5aeda;
    }
Recent Random Colors