Random Color Generator

#da3107 Color

Color Codes
Hex Code #da3107
RGB Code rgb(218, 49, 07)
HSL Code hsl(12, 94%, 44%)

#da3107 Color Syntax

rgb()

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

 main {
    background-color: rgb(218, 49, 07);
   }

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(12, 94%, 44%);
  }

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

RGB Code Hex Code Preview
rgb(218, 49, 07, 10%) #da31071a  
rgb(218, 49, 07, 20%) #da310733  
rgb(218, 49, 07, 40%) #da31074C  
rgb(218, 49, 07, 60%) #da310799  
rgb(218, 49, 07, 80%) #da3107CC  
rgb(218, 49, 07, 100%) #da3107FF  

Saturated and desaturated colors of #da3107

HSL Code Preview
hsl(12, 10%, 44%)  
hsl(12, 20%, 44%)  
hsl(12, 40%, 44%)  
hsl(12, 60%, 44%)  
hsl(12, 80%, 44%)  
hsl(12, 100%, 44%)  

#da3107 Color Usage In CSS

 body {
    color: #da3107;
    }
 p {
    color: rgb(218, 49, 07);
    }
 header {
    border-bottom:1px solid #da3107;
    }
Recent Random Colors