Random Color Generator

#d28c55 Color

Color Codes
Hex Code #d28c55
RGB Code rgb(210, 140, 85)
HSL Code hsl(26, 58%, 58%)

#d28c55 Color Syntax

rgb()

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

 main {
    background-color: rgb(210, 140, 85);
   }

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(26, 58%, 58%);
  }

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

RGB Code Hex Code Preview
rgb(210, 140, 85, 10%) #d28c551a  
rgb(210, 140, 85, 20%) #d28c5533  
rgb(210, 140, 85, 40%) #d28c554C  
rgb(210, 140, 85, 60%) #d28c5599  
rgb(210, 140, 85, 80%) #d28c55CC  
rgb(210, 140, 85, 100%) #d28c55FF  

Saturated and desaturated colors of #d28c55

HSL Code Preview
hsl(26, 10%, 58%)  
hsl(26, 20%, 58%)  
hsl(26, 40%, 58%)  
hsl(26, 60%, 58%)  
hsl(26, 80%, 58%)  
hsl(26, 100%, 58%)  

#d28c55 Color Usage In CSS

 body {
    color: #d28c55;
    }
 p {
    color: rgb(210, 140, 85);
    }
 header {
    border-bottom:1px solid #d28c55;
    }
Recent Random Colors