Random Color Generator

#c91b65 Color

Color Codes
Hex Code #c91b65
RGB Code rgb(201, 27, 101)
HSL Code hsl(334, 76%, 45%)

#c91b65 Color Syntax

rgb()

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

 main {
    background-color: rgb(201, 27, 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(334, 76%, 45%);
  }

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

RGB Code Hex Code Preview
rgb(201, 27, 101, 10%) #c91b651a  
rgb(201, 27, 101, 20%) #c91b6533  
rgb(201, 27, 101, 40%) #c91b654C  
rgb(201, 27, 101, 60%) #c91b6599  
rgb(201, 27, 101, 80%) #c91b65CC  
rgb(201, 27, 101, 100%) #c91b65FF  

Saturated and desaturated colors of #c91b65

HSL Code Preview
hsl(334, 10%, 45%)  
hsl(334, 20%, 45%)  
hsl(334, 40%, 45%)  
hsl(334, 60%, 45%)  
hsl(334, 80%, 45%)  
hsl(334, 100%, 45%)  

#c91b65 Color Usage In CSS

 body {
    color: #c91b65;
    }
 p {
    color: rgb(201, 27, 101);
    }
 header {
    border-bottom:1px solid #c91b65;
    }
Recent Random Colors