Random Color Generator

#ddb150 Color

Color Codes
Hex Code #ddb150
RGB Code rgb(221, 177, 80)
HSL Code hsl(41, 67%, 59%)

#ddb150 Color Syntax

rgb()

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

 main {
    background-color: rgb(221, 177, 80);
   }

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(41, 67%, 59%);
  }

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

RGB Code Hex Code Preview
rgb(221, 177, 80, 10%) #ddb1501a  
rgb(221, 177, 80, 20%) #ddb15033  
rgb(221, 177, 80, 40%) #ddb1504C  
rgb(221, 177, 80, 60%) #ddb15099  
rgb(221, 177, 80, 80%) #ddb150CC  
rgb(221, 177, 80, 100%) #ddb150FF  

Saturated and desaturated colors of #ddb150

HSL Code Preview
hsl(41, 10%, 59%)  
hsl(41, 20%, 59%)  
hsl(41, 40%, 59%)  
hsl(41, 60%, 59%)  
hsl(41, 80%, 59%)  
hsl(41, 100%, 59%)  

#ddb150 Color Usage In CSS

 body {
    color: #ddb150;
    }
 p {
    color: rgb(221, 177, 80);
    }
 header {
    border-bottom:1px solid #ddb150;
    }
Recent Random Colors