Random Color Generator

#cbadd9 Color

Color Codes
Hex Code #cbadd9
RGB Code rgb(203, 173, 217)
HSL Code hsl(281, 37%, 76%)

#cbadd9 Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 173, 217);
   }

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(281, 37%, 76%);
  }

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

RGB Code Hex Code Preview
rgb(203, 173, 217, 10%) #cbadd91a  
rgb(203, 173, 217, 20%) #cbadd933  
rgb(203, 173, 217, 40%) #cbadd94C  
rgb(203, 173, 217, 60%) #cbadd999  
rgb(203, 173, 217, 80%) #cbadd9CC  
rgb(203, 173, 217, 100%) #cbadd9FF  

Saturated and desaturated colors of #cbadd9

HSL Code Preview
hsl(281, 10%, 76%)  
hsl(281, 20%, 76%)  
hsl(281, 40%, 76%)  
hsl(281, 60%, 76%)  
hsl(281, 80%, 76%)  
hsl(281, 100%, 76%)  

#cbadd9 Color Usage In CSS

 body {
    color: #cbadd9;
    }
 p {
    color: rgb(203, 173, 217);
    }
 header {
    border-bottom:1px solid #cbadd9;
    }
Recent Random Colors