#c26239 Color
Color Codes | |
---|---|
Hex Code | #c26239 |
RGB Code | rgb(194, 98, 57) |
HSL Code | hsl(18, 55%, 49%) |
#c26239 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(194, 98, 57); }
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(18, 55%, 49%); }
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 #c26239
RGB Code | Hex Code | Preview |
---|---|---|
rgb(194, 98, 57, 10%) | #c262391a | |
rgb(194, 98, 57, 20%) | #c2623933 | |
rgb(194, 98, 57, 40%) | #c262394C | |
rgb(194, 98, 57, 60%) | #c2623999 | |
rgb(194, 98, 57, 80%) | #c26239CC | |
rgb(194, 98, 57, 100%) | #c26239FF |
Saturated and desaturated colors of #c26239
HSL Code | Preview |
---|---|
hsl(18, 10%, 49%) | |
hsl(18, 20%, 49%) | |
hsl(18, 40%, 49%) | |
hsl(18, 60%, 49%) | |
hsl(18, 80%, 49%) | |
hsl(18, 100%, 49%) |
#c26239 Color Usage In CSS
body { color: #c26239; } p { color: rgb(194, 98, 57); } header { border-bottom:1px solid #c26239; }