Random Color Generator

#c1b634 Color

Color Codes
Hex Code #c1b634
RGB Code rgb(193, 182, 52)
HSL Code hsl(55, 58%, 48%)

#c1b634 Color Syntax

rgb()

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

 main {
    background-color: rgb(193, 182, 52);
   }

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(55, 58%, 48%);
  }

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

RGB Code Hex Code Preview
rgb(193, 182, 52, 10%) #c1b6341a  
rgb(193, 182, 52, 20%) #c1b63433  
rgb(193, 182, 52, 40%) #c1b6344C  
rgb(193, 182, 52, 60%) #c1b63499  
rgb(193, 182, 52, 80%) #c1b634CC  
rgb(193, 182, 52, 100%) #c1b634FF  

Saturated and desaturated colors of #c1b634

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

#c1b634 Color Usage In CSS

 body {
    color: #c1b634;
    }
 p {
    color: rgb(193, 182, 52);
    }
 header {
    border-bottom:1px solid #c1b634;
    }
Recent Random Colors