Random Color Generator

#d45103 Color

Color Codes
Hex Code #d45103
RGB Code rgb(212, 81, 03)
HSL Code hsl(22, 97%, 42%)

#d45103 Color Syntax

rgb()

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

 main {
    background-color: rgb(212, 81, 03);
   }

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(22, 97%, 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 #d45103

RGB Code Hex Code Preview
rgb(212, 81, 03, 10%) #d451031a  
rgb(212, 81, 03, 20%) #d4510333  
rgb(212, 81, 03, 40%) #d451034C  
rgb(212, 81, 03, 60%) #d4510399  
rgb(212, 81, 03, 80%) #d45103CC  
rgb(212, 81, 03, 100%) #d45103FF  

Saturated and desaturated colors of #d45103

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

#d45103 Color Usage In CSS

 body {
    color: #d45103;
    }
 p {
    color: rgb(212, 81, 03);
    }
 header {
    border-bottom:1px solid #d45103;
    }
Recent Random Colors