Random Color Generator

#d48f33 Color

Color Codes
Hex Code #d48f33
RGB Code rgb(212, 143, 51)
HSL Code hsl(34, 65%, 52%)

#d48f33 Color Syntax

rgb()

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

 main {
    background-color: rgb(212, 143, 51);
   }

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, 65%, 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 #d48f33

RGB Code Hex Code Preview
rgb(212, 143, 51, 10%) #d48f331a  
rgb(212, 143, 51, 20%) #d48f3333  
rgb(212, 143, 51, 40%) #d48f334C  
rgb(212, 143, 51, 60%) #d48f3399  
rgb(212, 143, 51, 80%) #d48f33CC  
rgb(212, 143, 51, 100%) #d48f33FF  

Saturated and desaturated colors of #d48f33

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

#d48f33 Color Usage In CSS

 body {
    color: #d48f33;
    }
 p {
    color: rgb(212, 143, 51);
    }
 header {
    border-bottom:1px solid #d48f33;
    }
Recent Random Colors