Random Color Generator

#dc8058 Color

Color Codes
Hex Code #dc8058
RGB Code rgb(220, 128, 88)
HSL Code hsl(18, 65%, 60%)

#dc8058 Color Syntax

rgb()

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

 main {
    background-color: rgb(220, 128, 88);
   }

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(18, 65%, 60%);
  }

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

RGB Code Hex Code Preview
rgb(220, 128, 88, 10%) #dc80581a  
rgb(220, 128, 88, 20%) #dc805833  
rgb(220, 128, 88, 40%) #dc80584C  
rgb(220, 128, 88, 60%) #dc805899  
rgb(220, 128, 88, 80%) #dc8058CC  
rgb(220, 128, 88, 100%) #dc8058FF  

Saturated and desaturated colors of #dc8058

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

#dc8058 Color Usage In CSS

 body {
    color: #dc8058;
    }
 p {
    color: rgb(220, 128, 88);
    }
 header {
    border-bottom:1px solid #dc8058;
    }
Recent Random Colors