Random Color Generator

#f3a485 Color

Color Codes
Hex Code #f3a485
RGB Code rgb(243, 164, 133)
HSL Code hsl(17, 82%, 74%)

#f3a485 Color Syntax

rgb()

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

 main {
    background-color: rgb(243, 164, 133);
   }

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(17, 82%, 74%);
  }

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

RGB Code Hex Code Preview
rgb(243, 164, 133, 10%) #f3a4851a  
rgb(243, 164, 133, 20%) #f3a48533  
rgb(243, 164, 133, 40%) #f3a4854C  
rgb(243, 164, 133, 60%) #f3a48599  
rgb(243, 164, 133, 80%) #f3a485CC  
rgb(243, 164, 133, 100%) #f3a485FF  

Saturated and desaturated colors of #f3a485

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

#f3a485 Color Usage In CSS

 body {
    color: #f3a485;
    }
 p {
    color: rgb(243, 164, 133);
    }
 header {
    border-bottom:1px solid #f3a485;
    }
Recent Random Colors