Random Color Generator

#cc1b3d Color

Color Codes
Hex Code #cc1b3d
RGB Code rgb(204, 27, 61)
HSL Code hsl(348, 77%, 45%)

#cc1b3d Color Syntax

rgb()

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

 main {
    background-color: rgb(204, 27, 61);
   }

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(348, 77%, 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 #cc1b3d

RGB Code Hex Code Preview
rgb(204, 27, 61, 10%) #cc1b3d1a  
rgb(204, 27, 61, 20%) #cc1b3d33  
rgb(204, 27, 61, 40%) #cc1b3d4C  
rgb(204, 27, 61, 60%) #cc1b3d99  
rgb(204, 27, 61, 80%) #cc1b3dCC  
rgb(204, 27, 61, 100%) #cc1b3dFF  

Saturated and desaturated colors of #cc1b3d

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

#cc1b3d Color Usage In CSS

 body {
    color: #cc1b3d;
    }
 p {
    color: rgb(204, 27, 61);
    }
 header {
    border-bottom:1px solid #cc1b3d;
    }
Recent Random Colors