Random Color Generator

#d75130 Color

Color Codes
Hex Code #d75130
RGB Code rgb(215, 81, 48)
HSL Code hsl(12, 68%, 52%)

#d75130 Color Syntax

rgb()

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

 main {
    background-color: rgb(215, 81, 48);
   }

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, 68%, 52%);
  }

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

RGB Code Hex Code Preview
rgb(215, 81, 48, 10%) #d751301a  
rgb(215, 81, 48, 20%) #d7513033  
rgb(215, 81, 48, 40%) #d751304C  
rgb(215, 81, 48, 60%) #d7513099  
rgb(215, 81, 48, 80%) #d75130CC  
rgb(215, 81, 48, 100%) #d75130FF  

Saturated and desaturated colors of #d75130

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

#d75130 Color Usage In CSS

 body {
    color: #d75130;
    }
 p {
    color: rgb(215, 81, 48);
    }
 header {
    border-bottom:1px solid #d75130;
    }
Recent Random Colors