Random Color Generator

#c23e14 Color

Color Codes
Hex Code #c23e14
RGB Code rgb(194, 62, 20)
HSL Code hsl(14, 81%, 42%)

#c23e14 Color Syntax

rgb()

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

 main {
    background-color: rgb(194, 62, 20);
   }

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(14, 81%, 42%);
  }

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

RGB Code Hex Code Preview
rgb(194, 62, 20, 10%) #c23e141a  
rgb(194, 62, 20, 20%) #c23e1433  
rgb(194, 62, 20, 40%) #c23e144C  
rgb(194, 62, 20, 60%) #c23e1499  
rgb(194, 62, 20, 80%) #c23e14CC  
rgb(194, 62, 20, 100%) #c23e14FF  

Saturated and desaturated colors of #c23e14

HSL Code Preview
hsl(14, 10%, 42%)  
hsl(14, 20%, 42%)  
hsl(14, 40%, 42%)  
hsl(14, 60%, 42%)  
hsl(14, 80%, 42%)  
hsl(14, 100%, 42%)  

#c23e14 Color Usage In CSS

 body {
    color: #c23e14;
    }
 p {
    color: rgb(194, 62, 20);
    }
 header {
    border-bottom:1px solid #c23e14;
    }
Recent Random Colors