Random Color Generator

#fbc683 Color

Color Codes
Hex Code #fbc683
RGB Code rgb(251, 198, 131)
HSL Code hsl(34, 94%, 75%)

#fbc683 Color Syntax

rgb()

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

 main {
    background-color: rgb(251, 198, 131);
   }

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(34, 94%, 75%);
  }

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

RGB Code Hex Code Preview
rgb(251, 198, 131, 10%) #fbc6831a  
rgb(251, 198, 131, 20%) #fbc68333  
rgb(251, 198, 131, 40%) #fbc6834C  
rgb(251, 198, 131, 60%) #fbc68399  
rgb(251, 198, 131, 80%) #fbc683CC  
rgb(251, 198, 131, 100%) #fbc683FF  

Saturated and desaturated colors of #fbc683

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

#fbc683 Color Usage In CSS

 body {
    color: #fbc683;
    }
 p {
    color: rgb(251, 198, 131);
    }
 header {
    border-bottom:1px solid #fbc683;
    }
Recent Random Colors