#cf6236 Color
Color Codes | |
---|---|
Hex Code | #cf6236 |
RGB Code | rgb(207, 98, 54) |
HSL Code | hsl(17, 61%, 51%) |
#cf6236 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(207, 98, 54); }
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, 61%, 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 #cf6236
RGB Code | Hex Code | Preview |
---|---|---|
rgb(207, 98, 54, 10%) | #cf62361a | |
rgb(207, 98, 54, 20%) | #cf623633 | |
rgb(207, 98, 54, 40%) | #cf62364C | |
rgb(207, 98, 54, 60%) | #cf623699 | |
rgb(207, 98, 54, 80%) | #cf6236CC | |
rgb(207, 98, 54, 100%) | #cf6236FF |
Saturated and desaturated colors of #cf6236
HSL Code | Preview |
---|---|
hsl(17, 10%, 51%) | |
hsl(17, 20%, 51%) | |
hsl(17, 40%, 51%) | |
hsl(17, 60%, 51%) | |
hsl(17, 80%, 51%) | |
hsl(17, 100%, 51%) |
#cf6236 Color Usage In CSS
body { color: #cf6236; } p { color: rgb(207, 98, 54); } header { border-bottom:1px solid #cf6236; }