Random Color Generator

#ca7475 Color

Color Codes
Hex Code #ca7475
RGB Code rgb(202, 116, 117)
HSL Code hsl(359, 45%, 62%)

#ca7475 Color Syntax

rgb()

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

 main {
    background-color: rgb(202, 116, 117);
   }

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(359, 45%, 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 #ca7475

RGB Code Hex Code Preview
rgb(202, 116, 117, 10%) #ca74751a  
rgb(202, 116, 117, 20%) #ca747533  
rgb(202, 116, 117, 40%) #ca74754C  
rgb(202, 116, 117, 60%) #ca747599  
rgb(202, 116, 117, 80%) #ca7475CC  
rgb(202, 116, 117, 100%) #ca7475FF  

Saturated and desaturated colors of #ca7475

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

#ca7475 Color Usage In CSS

 body {
    color: #ca7475;
    }
 p {
    color: rgb(202, 116, 117);
    }
 header {
    border-bottom:1px solid #ca7475;
    }
Recent Random Colors