Random Color Generator

#cb4d65 Color

Color Codes
Hex Code #cb4d65
RGB Code rgb(203, 77, 101)
HSL Code hsl(349, 55%, 55%)

#cb4d65 Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 77, 101);
   }

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

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

RGB Code Hex Code Preview
rgb(203, 77, 101, 10%) #cb4d651a  
rgb(203, 77, 101, 20%) #cb4d6533  
rgb(203, 77, 101, 40%) #cb4d654C  
rgb(203, 77, 101, 60%) #cb4d6599  
rgb(203, 77, 101, 80%) #cb4d65CC  
rgb(203, 77, 101, 100%) #cb4d65FF  

Saturated and desaturated colors of #cb4d65

HSL Code Preview
hsl(349, 10%, 55%)  
hsl(349, 20%, 55%)  
hsl(349, 40%, 55%)  
hsl(349, 60%, 55%)  
hsl(349, 80%, 55%)  
hsl(349, 100%, 55%)  

#cb4d65 Color Usage In CSS

 body {
    color: #cb4d65;
    }
 p {
    color: rgb(203, 77, 101);
    }
 header {
    border-bottom:1px solid #cb4d65;
    }
Recent Random Colors