Random Color Generator

#b04269 Color

Color Codes
Hex Code #b04269
RGB Code rgb(176, 66, 105)
HSL Code hsl(339, 45%, 47%)

#b04269 Color Syntax

rgb()

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

 main {
    background-color: rgb(176, 66, 105);
   }

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(339, 45%, 47%);
  }

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

RGB Code Hex Code Preview
rgb(176, 66, 105, 10%) #b042691a  
rgb(176, 66, 105, 20%) #b0426933  
rgb(176, 66, 105, 40%) #b042694C  
rgb(176, 66, 105, 60%) #b0426999  
rgb(176, 66, 105, 80%) #b04269CC  
rgb(176, 66, 105, 100%) #b04269FF  

Saturated and desaturated colors of #b04269

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

#b04269 Color Usage In CSS

 body {
    color: #b04269;
    }
 p {
    color: rgb(176, 66, 105);
    }
 header {
    border-bottom:1px solid #b04269;
    }
Recent Random Colors