Random Color Generator

#c8bd04 Color

Color Codes
Hex Code #c8bd04
RGB Code rgb(200, 189, 04)
HSL Code hsl(57, 96%, 40%)

#c8bd04 Color Syntax

rgb()

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

 main {
    background-color: rgb(200, 189, 04);
   }

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(57, 96%, 40%);
  }

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

RGB Code Hex Code Preview
rgb(200, 189, 04, 10%) #c8bd041a  
rgb(200, 189, 04, 20%) #c8bd0433  
rgb(200, 189, 04, 40%) #c8bd044C  
rgb(200, 189, 04, 60%) #c8bd0499  
rgb(200, 189, 04, 80%) #c8bd04CC  
rgb(200, 189, 04, 100%) #c8bd04FF  

Saturated and desaturated colors of #c8bd04

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

#c8bd04 Color Usage In CSS

 body {
    color: #c8bd04;
    }
 p {
    color: rgb(200, 189, 04);
    }
 header {
    border-bottom:1px solid #c8bd04;
    }
Recent Random Colors