Random Color Generator

#ca571b Color

Color Codes
Hex Code #ca571b
RGB Code rgb(202, 87, 27)
HSL Code hsl(21, 76%, 45%)

#ca571b Color Syntax

rgb()

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

 main {
    background-color: rgb(202, 87, 27);
   }

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(21, 76%, 45%);
  }

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

RGB Code Hex Code Preview
rgb(202, 87, 27, 10%) #ca571b1a  
rgb(202, 87, 27, 20%) #ca571b33  
rgb(202, 87, 27, 40%) #ca571b4C  
rgb(202, 87, 27, 60%) #ca571b99  
rgb(202, 87, 27, 80%) #ca571bCC  
rgb(202, 87, 27, 100%) #ca571bFF  

Saturated and desaturated colors of #ca571b

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

#ca571b Color Usage In CSS

 body {
    color: #ca571b;
    }
 p {
    color: rgb(202, 87, 27);
    }
 header {
    border-bottom:1px solid #ca571b;
    }
Recent Random Colors