Random Color Generator

#d2ba94 Color

Color Codes
Hex Code #d2ba94
RGB Code rgb(210, 186, 148)
HSL Code hsl(37, 41%, 70%)

#d2ba94 Color Syntax

rgb()

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

 main {
    background-color: rgb(210, 186, 148);
   }

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(37, 41%, 70%);
  }

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

RGB Code Hex Code Preview
rgb(210, 186, 148, 10%) #d2ba941a  
rgb(210, 186, 148, 20%) #d2ba9433  
rgb(210, 186, 148, 40%) #d2ba944C  
rgb(210, 186, 148, 60%) #d2ba9499  
rgb(210, 186, 148, 80%) #d2ba94CC  
rgb(210, 186, 148, 100%) #d2ba94FF  

Saturated and desaturated colors of #d2ba94

HSL Code Preview
hsl(37, 10%, 70%)  
hsl(37, 20%, 70%)  
hsl(37, 40%, 70%)  
hsl(37, 60%, 70%)  
hsl(37, 80%, 70%)  
hsl(37, 100%, 70%)  

#d2ba94 Color Usage In CSS

 body {
    color: #d2ba94;
    }
 p {
    color: rgb(210, 186, 148);
    }
 header {
    border-bottom:1px solid #d2ba94;
    }
Recent Random Colors