Random Color Generator

#b38096 Color

Color Codes
Hex Code #b38096
RGB Code rgb(179, 128, 150)
HSL Code hsl(334, 25%, 60%)

#b38096 Color Syntax

rgb()

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

 main {
    background-color: rgb(179, 128, 150);
   }

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(334, 25%, 60%);
  }

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

RGB Code Hex Code Preview
rgb(179, 128, 150, 10%) #b380961a  
rgb(179, 128, 150, 20%) #b3809633  
rgb(179, 128, 150, 40%) #b380964C  
rgb(179, 128, 150, 60%) #b3809699  
rgb(179, 128, 150, 80%) #b38096CC  
rgb(179, 128, 150, 100%) #b38096FF  

Saturated and desaturated colors of #b38096

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

#b38096 Color Usage In CSS

 body {
    color: #b38096;
    }
 p {
    color: rgb(179, 128, 150);
    }
 header {
    border-bottom:1px solid #b38096;
    }
Recent Random Colors