Random Color Generator

#bb970c Color

Color Codes
Hex Code #bb970c
RGB Code rgb(187, 151, 12)
HSL Code hsl(48, 88%, 39%)

#bb970c Color Syntax

rgb()

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

 main {
    background-color: rgb(187, 151, 12);
   }

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(48, 88%, 39%);
  }

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

RGB Code Hex Code Preview
rgb(187, 151, 12, 10%) #bb970c1a  
rgb(187, 151, 12, 20%) #bb970c33  
rgb(187, 151, 12, 40%) #bb970c4C  
rgb(187, 151, 12, 60%) #bb970c99  
rgb(187, 151, 12, 80%) #bb970cCC  
rgb(187, 151, 12, 100%) #bb970cFF  

Saturated and desaturated colors of #bb970c

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

#bb970c Color Usage In CSS

 body {
    color: #bb970c;
    }
 p {
    color: rgb(187, 151, 12);
    }
 header {
    border-bottom:1px solid #bb970c;
    }
Recent Random Colors