Random Color Generator

#d97b04 Color

Color Codes
Hex Code #d97b04
RGB Code rgb(217, 123, 04)
HSL Code hsl(34, 96%, 43%)

#d97b04 Color Syntax

rgb()

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

 main {
    background-color: rgb(217, 123, 04);
   }

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, 96%, 43%);
  }

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

RGB Code Hex Code Preview
rgb(217, 123, 04, 10%) #d97b041a  
rgb(217, 123, 04, 20%) #d97b0433  
rgb(217, 123, 04, 40%) #d97b044C  
rgb(217, 123, 04, 60%) #d97b0499  
rgb(217, 123, 04, 80%) #d97b04CC  
rgb(217, 123, 04, 100%) #d97b04FF  

Saturated and desaturated colors of #d97b04

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

#d97b04 Color Usage In CSS

 body {
    color: #d97b04;
    }
 p {
    color: rgb(217, 123, 04);
    }
 header {
    border-bottom:1px solid #d97b04;
    }
Recent Random Colors