Random Color Generator

#ce3931 Color

Color Codes
Hex Code #ce3931
RGB Code rgb(206, 57, 49)
HSL Code hsl(3, 62%, 50%)

#ce3931 Color Syntax

rgb()

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

 main {
    background-color: rgb(206, 57, 49);
   }

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(3, 62%, 50%);
  }

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

RGB Code Hex Code Preview
rgb(206, 57, 49, 10%) #ce39311a  
rgb(206, 57, 49, 20%) #ce393133  
rgb(206, 57, 49, 40%) #ce39314C  
rgb(206, 57, 49, 60%) #ce393199  
rgb(206, 57, 49, 80%) #ce3931CC  
rgb(206, 57, 49, 100%) #ce3931FF  

Saturated and desaturated colors of #ce3931

HSL Code Preview
hsl(3, 10%, 50%)  
hsl(3, 20%, 50%)  
hsl(3, 40%, 50%)  
hsl(3, 60%, 50%)  
hsl(3, 80%, 50%)  
hsl(3, 100%, 50%)  

#ce3931 Color Usage In CSS

 body {
    color: #ce3931;
    }
 p {
    color: rgb(206, 57, 49);
    }
 header {
    border-bottom:1px solid #ce3931;
    }
Recent Random Colors