Random Color Generator

#381723 Color

Color Codes
Hex Code #381723
RGB Code rgb(56, 23, 35)
HSL Code hsl(338, 42%, 15%)

#381723 Color Syntax

rgb()

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

 main {
    background-color: rgb(56, 23, 35);
   }

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(338, 42%, 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 #381723

RGB Code Hex Code Preview
rgb(56, 23, 35, 10%) #3817231a  
rgb(56, 23, 35, 20%) #38172333  
rgb(56, 23, 35, 40%) #3817234C  
rgb(56, 23, 35, 60%) #38172399  
rgb(56, 23, 35, 80%) #381723CC  
rgb(56, 23, 35, 100%) #381723FF  

Saturated and desaturated colors of #381723

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

#381723 Color Usage In CSS

 body {
    color: #381723;
    }
 p {
    color: rgb(56, 23, 35);
    }
 header {
    border-bottom:1px solid #381723;
    }
Recent Random Colors