Random Color Generator

#ca6f0d Color

Color Codes
Hex Code #ca6f0d
RGB Code rgb(202, 111, 13)
HSL Code hsl(31, 88%, 42%)

#ca6f0d Color Syntax

rgb()

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

 main {
    background-color: rgb(202, 111, 13);
   }

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(31, 88%, 42%);
  }

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

RGB Code Hex Code Preview
rgb(202, 111, 13, 10%) #ca6f0d1a  
rgb(202, 111, 13, 20%) #ca6f0d33  
rgb(202, 111, 13, 40%) #ca6f0d4C  
rgb(202, 111, 13, 60%) #ca6f0d99  
rgb(202, 111, 13, 80%) #ca6f0dCC  
rgb(202, 111, 13, 100%) #ca6f0dFF  

Saturated and desaturated colors of #ca6f0d

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

#ca6f0d Color Usage In CSS

 body {
    color: #ca6f0d;
    }
 p {
    color: rgb(202, 111, 13);
    }
 header {
    border-bottom:1px solid #ca6f0d;
    }
Recent Random Colors