#c2441c Color
Color Codes | |
---|---|
Hex Code | #c2441c |
RGB Code | rgb(194, 68, 28) |
HSL Code | hsl(14, 75%, 44%) |
#c2441c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(194, 68, 28); }
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(14, 75%, 44%); }
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 #c2441c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(194, 68, 28, 10%) | #c2441c1a | |
rgb(194, 68, 28, 20%) | #c2441c33 | |
rgb(194, 68, 28, 40%) | #c2441c4C | |
rgb(194, 68, 28, 60%) | #c2441c99 | |
rgb(194, 68, 28, 80%) | #c2441cCC | |
rgb(194, 68, 28, 100%) | #c2441cFF |
Saturated and desaturated colors of #c2441c
HSL Code | Preview |
---|---|
hsl(14, 10%, 44%) | |
hsl(14, 20%, 44%) | |
hsl(14, 40%, 44%) | |
hsl(14, 60%, 44%) | |
hsl(14, 80%, 44%) | |
hsl(14, 100%, 44%) |
#c2441c Color Usage In CSS
body { color: #c2441c; } p { color: rgb(194, 68, 28); } header { border-bottom:1px solid #c2441c; }