Random Color Generator

#ce3c38 Color

Color Codes
Hex Code #ce3c38
RGB Code rgb(206, 60, 56)
HSL Code hsl(2, 60%, 51%)

#ce3c38 Color Syntax

rgb()

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

 main {
    background-color: rgb(206, 60, 56);
   }

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(2, 60%, 51%);
  }

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

RGB Code Hex Code Preview
rgb(206, 60, 56, 10%) #ce3c381a  
rgb(206, 60, 56, 20%) #ce3c3833  
rgb(206, 60, 56, 40%) #ce3c384C  
rgb(206, 60, 56, 60%) #ce3c3899  
rgb(206, 60, 56, 80%) #ce3c38CC  
rgb(206, 60, 56, 100%) #ce3c38FF  

Saturated and desaturated colors of #ce3c38

HSL Code Preview
hsl(2, 10%, 51%)  
hsl(2, 20%, 51%)  
hsl(2, 40%, 51%)  
hsl(2, 60%, 51%)  
hsl(2, 80%, 51%)  
hsl(2, 100%, 51%)  

#ce3c38 Color Usage In CSS

 body {
    color: #ce3c38;
    }
 p {
    color: rgb(206, 60, 56);
    }
 header {
    border-bottom:1px solid #ce3c38;
    }
Recent Random Colors