Random Color Generator

#c49ce2 Color

Color Codes
Hex Code #c49ce2
RGB Code rgb(196, 156, 226)
HSL Code hsl(274, 55%, 75%)

#c49ce2 Color Syntax

rgb()

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

 main {
    background-color: rgb(196, 156, 226);
   }

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(274, 55%, 75%);
  }

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

RGB Code Hex Code Preview
rgb(196, 156, 226, 10%) #c49ce21a  
rgb(196, 156, 226, 20%) #c49ce233  
rgb(196, 156, 226, 40%) #c49ce24C  
rgb(196, 156, 226, 60%) #c49ce299  
rgb(196, 156, 226, 80%) #c49ce2CC  
rgb(196, 156, 226, 100%) #c49ce2FF  

Saturated and desaturated colors of #c49ce2

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

#c49ce2 Color Usage In CSS

 body {
    color: #c49ce2;
    }
 p {
    color: rgb(196, 156, 226);
    }
 header {
    border-bottom:1px solid #c49ce2;
    }
Recent Random Colors