Random Color Generator

#fa6844 Color

Color Codes
Hex Code #fa6844
RGB Code rgb(250, 104, 68)
HSL Code hsl(12, 95%, 62%)

#fa6844 Color Syntax

rgb()

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

 main {
    background-color: rgb(250, 104, 68);
   }

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(12, 95%, 62%);
  }

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

RGB Code Hex Code Preview
rgb(250, 104, 68, 10%) #fa68441a  
rgb(250, 104, 68, 20%) #fa684433  
rgb(250, 104, 68, 40%) #fa68444C  
rgb(250, 104, 68, 60%) #fa684499  
rgb(250, 104, 68, 80%) #fa6844CC  
rgb(250, 104, 68, 100%) #fa6844FF  

Saturated and desaturated colors of #fa6844

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

#fa6844 Color Usage In CSS

 body {
    color: #fa6844;
    }
 p {
    color: rgb(250, 104, 68);
    }
 header {
    border-bottom:1px solid #fa6844;
    }
Recent Random Colors