Random Color Generator

#da8b31 Color

Color Codes
Hex Code #da8b31
RGB Code rgb(218, 139, 49)
HSL Code hsl(32, 70%, 52%)

#da8b31 Color Syntax

rgb()

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

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

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(32, 70%, 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 #da8b31

RGB Code Hex Code Preview
rgb(218, 139, 49, 10%) #da8b311a  
rgb(218, 139, 49, 20%) #da8b3133  
rgb(218, 139, 49, 40%) #da8b314C  
rgb(218, 139, 49, 60%) #da8b3199  
rgb(218, 139, 49, 80%) #da8b31CC  
rgb(218, 139, 49, 100%) #da8b31FF  

Saturated and desaturated colors of #da8b31

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

#da8b31 Color Usage In CSS

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