Random Color Generator

#ca8317 Color

Color Codes
Hex Code #ca8317
RGB Code rgb(202, 131, 23)
HSL Code hsl(36, 80%, 44%)

#ca8317 Color Syntax

rgb()

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

 main {
    background-color: rgb(202, 131, 23);
   }

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(36, 80%, 44%);
  }

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

RGB Code Hex Code Preview
rgb(202, 131, 23, 10%) #ca83171a  
rgb(202, 131, 23, 20%) #ca831733  
rgb(202, 131, 23, 40%) #ca83174C  
rgb(202, 131, 23, 60%) #ca831799  
rgb(202, 131, 23, 80%) #ca8317CC  
rgb(202, 131, 23, 100%) #ca8317FF  

Saturated and desaturated colors of #ca8317

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

#ca8317 Color Usage In CSS

 body {
    color: #ca8317;
    }
 p {
    color: rgb(202, 131, 23);
    }
 header {
    border-bottom:1px solid #ca8317;
    }
Recent Random Colors