Random Color Generator

#d5523b Color

Color Codes
Hex Code #d5523b
RGB Code rgb(213, 82, 59)
HSL Code hsl(9, 65%, 53%)

#d5523b Color Syntax

rgb()

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

 main {
    background-color: rgb(213, 82, 59);
   }

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(9, 65%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(213, 82, 59, 10%) #d5523b1a  
rgb(213, 82, 59, 20%) #d5523b33  
rgb(213, 82, 59, 40%) #d5523b4C  
rgb(213, 82, 59, 60%) #d5523b99  
rgb(213, 82, 59, 80%) #d5523bCC  
rgb(213, 82, 59, 100%) #d5523bFF  

Saturated and desaturated colors of #d5523b

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

#d5523b Color Usage In CSS

 body {
    color: #d5523b;
    }
 p {
    color: rgb(213, 82, 59);
    }
 header {
    border-bottom:1px solid #d5523b;
    }
Recent Random Colors