Random Color Generator

#d7a361 Color

Color Codes
Hex Code #d7a361
RGB Code rgb(215, 163, 97)
HSL Code hsl(34, 60%, 61%)

#d7a361 Color Syntax

rgb()

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

 main {
    background-color: rgb(215, 163, 97);
   }

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, 60%, 61%);
  }

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

RGB Code Hex Code Preview
rgb(215, 163, 97, 10%) #d7a3611a  
rgb(215, 163, 97, 20%) #d7a36133  
rgb(215, 163, 97, 40%) #d7a3614C  
rgb(215, 163, 97, 60%) #d7a36199  
rgb(215, 163, 97, 80%) #d7a361CC  
rgb(215, 163, 97, 100%) #d7a361FF  

Saturated and desaturated colors of #d7a361

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

#d7a361 Color Usage In CSS

 body {
    color: #d7a361;
    }
 p {
    color: rgb(215, 163, 97);
    }
 header {
    border-bottom:1px solid #d7a361;
    }
Recent Random Colors