#c3463f Color
Color Codes | |
---|---|
Hex Code | #c3463f |
RGB Code | rgb(195, 70, 63) |
HSL Code | hsl(3, 52%, 51%) |
#c3463f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(195, 70, 63); }
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(3, 52%, 51%); }
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 #c3463f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(195, 70, 63, 10%) | #c3463f1a | |
rgb(195, 70, 63, 20%) | #c3463f33 | |
rgb(195, 70, 63, 40%) | #c3463f4C | |
rgb(195, 70, 63, 60%) | #c3463f99 | |
rgb(195, 70, 63, 80%) | #c3463fCC | |
rgb(195, 70, 63, 100%) | #c3463fFF |
Saturated and desaturated colors of #c3463f
HSL Code | Preview |
---|---|
hsl(3, 10%, 51%) | |
hsl(3, 20%, 51%) | |
hsl(3, 40%, 51%) | |
hsl(3, 60%, 51%) | |
hsl(3, 80%, 51%) | |
hsl(3, 100%, 51%) |
#c3463f Color Usage In CSS
body { color: #c3463f; } p { color: rgb(195, 70, 63); } header { border-bottom:1px solid #c3463f; }