Random Color Generator

#cb95e9 Color

Color Codes
Hex Code #cb95e9
RGB Code rgb(203, 149, 233)
HSL Code hsl(279, 66%, 75%)

#cb95e9 Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 149, 233);
   }

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(279, 66%, 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 #cb95e9

RGB Code Hex Code Preview
rgb(203, 149, 233, 10%) #cb95e91a  
rgb(203, 149, 233, 20%) #cb95e933  
rgb(203, 149, 233, 40%) #cb95e94C  
rgb(203, 149, 233, 60%) #cb95e999  
rgb(203, 149, 233, 80%) #cb95e9CC  
rgb(203, 149, 233, 100%) #cb95e9FF  

Saturated and desaturated colors of #cb95e9

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

#cb95e9 Color Usage In CSS

 body {
    color: #cb95e9;
    }
 p {
    color: rgb(203, 149, 233);
    }
 header {
    border-bottom:1px solid #cb95e9;
    }
Recent Random Colors