Random Color Generator

#cb69cd Color

Color Codes
Hex Code #cb69cd
RGB Code rgb(203, 105, 205)
HSL Code hsl(299, 50%, 61%)

#cb69cd Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 105, 205);
   }

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(299, 50%, 61%);
  }

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

RGB Code Hex Code Preview
rgb(203, 105, 205, 10%) #cb69cd1a  
rgb(203, 105, 205, 20%) #cb69cd33  
rgb(203, 105, 205, 40%) #cb69cd4C  
rgb(203, 105, 205, 60%) #cb69cd99  
rgb(203, 105, 205, 80%) #cb69cdCC  
rgb(203, 105, 205, 100%) #cb69cdFF  

Saturated and desaturated colors of #cb69cd

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

#cb69cd Color Usage In CSS

 body {
    color: #cb69cd;
    }
 p {
    color: rgb(203, 105, 205);
    }
 header {
    border-bottom:1px solid #cb69cd;
    }
Recent Random Colors