Random Color Generator

#bcaf68 Color

Color Codes
Hex Code #bcaf68
RGB Code rgb(188, 175, 104)
HSL Code hsl(51, 39%, 57%)

#bcaf68 Color Syntax

rgb()

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

 main {
    background-color: rgb(188, 175, 104);
   }

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(51, 39%, 57%);
  }

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

RGB Code Hex Code Preview
rgb(188, 175, 104, 10%) #bcaf681a  
rgb(188, 175, 104, 20%) #bcaf6833  
rgb(188, 175, 104, 40%) #bcaf684C  
rgb(188, 175, 104, 60%) #bcaf6899  
rgb(188, 175, 104, 80%) #bcaf68CC  
rgb(188, 175, 104, 100%) #bcaf68FF  

Saturated and desaturated colors of #bcaf68

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

#bcaf68 Color Usage In CSS

 body {
    color: #bcaf68;
    }
 p {
    color: rgb(188, 175, 104);
    }
 header {
    border-bottom:1px solid #bcaf68;
    }
Recent Random Colors