Random Color Generator

#35182c Color

Color Codes
Hex Code #35182c
RGB Code rgb(53, 24, 44)
HSL Code hsl(319, 38%, 15%)

#35182c Color Syntax

rgb()

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

 main {
    background-color: rgb(53, 24, 44);
   }

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(319, 38%, 15%);
  }

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 #35182c

RGB Code Hex Code Preview
rgb(53, 24, 44, 10%) #35182c1a  
rgb(53, 24, 44, 20%) #35182c33  
rgb(53, 24, 44, 40%) #35182c4C  
rgb(53, 24, 44, 60%) #35182c99  
rgb(53, 24, 44, 80%) #35182cCC  
rgb(53, 24, 44, 100%) #35182cFF  

Saturated and desaturated colors of #35182c

HSL Code Preview
hsl(319, 10%, 15%)  
hsl(319, 20%, 15%)  
hsl(319, 40%, 15%)  
hsl(319, 60%, 15%)  
hsl(319, 80%, 15%)  
hsl(319, 100%, 15%)  

#35182c Color Usage In CSS

 body {
    color: #35182c;
    }
 p {
    color: rgb(53, 24, 44);
    }
 header {
    border-bottom:1px solid #35182c;
    }
Recent Random Colors