Random Color Generator

#fcb338 Color

Color Codes
Hex Code #fcb338
RGB Code rgb(252, 179, 56)
HSL Code hsl(38, 97%, 60%)

#fcb338 Color Syntax

rgb()

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

 main {
    background-color: rgb(252, 179, 56);
   }

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(38, 97%, 60%);
  }

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

RGB Code Hex Code Preview
rgb(252, 179, 56, 10%) #fcb3381a  
rgb(252, 179, 56, 20%) #fcb33833  
rgb(252, 179, 56, 40%) #fcb3384C  
rgb(252, 179, 56, 60%) #fcb33899  
rgb(252, 179, 56, 80%) #fcb338CC  
rgb(252, 179, 56, 100%) #fcb338FF  

Saturated and desaturated colors of #fcb338

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

#fcb338 Color Usage In CSS

 body {
    color: #fcb338;
    }
 p {
    color: rgb(252, 179, 56);
    }
 header {
    border-bottom:1px solid #fcb338;
    }
Recent Random Colors