Random Color Generator

#52380f Color

Color Codes
Hex Code #52380f
RGB Code rgb(82, 56, 15)
HSL Code hsl(37, 69%, 19%)

#52380f Color Syntax

rgb()

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

 main {
    background-color: rgb(82, 56, 15);
   }

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(37, 69%, 19%);
  }

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 #52380f

RGB Code Hex Code Preview
rgb(82, 56, 15, 10%) #52380f1a  
rgb(82, 56, 15, 20%) #52380f33  
rgb(82, 56, 15, 40%) #52380f4C  
rgb(82, 56, 15, 60%) #52380f99  
rgb(82, 56, 15, 80%) #52380fCC  
rgb(82, 56, 15, 100%) #52380fFF  

Saturated and desaturated colors of #52380f

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

#52380f Color Usage In CSS

 body {
    color: #52380f;
    }
 p {
    color: rgb(82, 56, 15);
    }
 header {
    border-bottom:1px solid #52380f;
    }
Recent Random Colors