Random Color Generator

#56235a Color

Color Codes
Hex Code #56235a
RGB Code rgb(86, 35, 90)
HSL Code hsl(296, 44%, 25%)

#56235a Color Syntax

rgb()

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

 main {
    background-color: rgb(86, 35, 90);
   }

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(296, 44%, 25%);
  }

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 #56235a

RGB Code Hex Code Preview
rgb(86, 35, 90, 10%) #56235a1a  
rgb(86, 35, 90, 20%) #56235a33  
rgb(86, 35, 90, 40%) #56235a4C  
rgb(86, 35, 90, 60%) #56235a99  
rgb(86, 35, 90, 80%) #56235aCC  
rgb(86, 35, 90, 100%) #56235aFF  

Saturated and desaturated colors of #56235a

HSL Code Preview
hsl(296, 10%, 25%)  
hsl(296, 20%, 25%)  
hsl(296, 40%, 25%)  
hsl(296, 60%, 25%)  
hsl(296, 80%, 25%)  
hsl(296, 100%, 25%)  

#56235a Color Usage In CSS

 body {
    color: #56235a;
    }
 p {
    color: rgb(86, 35, 90);
    }
 header {
    border-bottom:1px solid #56235a;
    }
Recent Random Colors