Random Color Generator

#d68212 Color

Color Codes
Hex Code #d68212
RGB Code rgb(214, 130, 18)
HSL Code hsl(34, 84%, 45%)

#d68212 Color Syntax

rgb()

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

 main {
    background-color: rgb(214, 130, 18);
   }

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(34, 84%, 45%);
  }

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

RGB Code Hex Code Preview
rgb(214, 130, 18, 10%) #d682121a  
rgb(214, 130, 18, 20%) #d6821233  
rgb(214, 130, 18, 40%) #d682124C  
rgb(214, 130, 18, 60%) #d6821299  
rgb(214, 130, 18, 80%) #d68212CC  
rgb(214, 130, 18, 100%) #d68212FF  

Saturated and desaturated colors of #d68212

HSL Code Preview
hsl(34, 10%, 45%)  
hsl(34, 20%, 45%)  
hsl(34, 40%, 45%)  
hsl(34, 60%, 45%)  
hsl(34, 80%, 45%)  
hsl(34, 100%, 45%)  

#d68212 Color Usage In CSS

 body {
    color: #d68212;
    }
 p {
    color: rgb(214, 130, 18);
    }
 header {
    border-bottom:1px solid #d68212;
    }
Recent Random Colors