Random Color Generator

#cd68bd Color

Color Codes
Hex Code #cd68bd
RGB Code rgb(205, 104, 189)
HSL Code hsl(310, 50%, 61%)

#cd68bd Color Syntax

rgb()

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

 main {
    background-color: rgb(205, 104, 189);
   }

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(310, 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 #cd68bd

RGB Code Hex Code Preview
rgb(205, 104, 189, 10%) #cd68bd1a  
rgb(205, 104, 189, 20%) #cd68bd33  
rgb(205, 104, 189, 40%) #cd68bd4C  
rgb(205, 104, 189, 60%) #cd68bd99  
rgb(205, 104, 189, 80%) #cd68bdCC  
rgb(205, 104, 189, 100%) #cd68bdFF  

Saturated and desaturated colors of #cd68bd

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

#cd68bd Color Usage In CSS

 body {
    color: #cd68bd;
    }
 p {
    color: rgb(205, 104, 189);
    }
 header {
    border-bottom:1px solid #cd68bd;
    }
Recent Random Colors