#cf6502 Color
Color Codes | |
---|---|
Hex Code | #cf6502 |
RGB Code | rgb(207, 101, 02) |
HSL Code | hsl(29, 98%, 41%) |
#cf6502 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(207, 101, 02); }
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(29, 98%, 41%); }
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 #cf6502
RGB Code | Hex Code | Preview |
---|---|---|
rgb(207, 101, 02, 10%) | #cf65021a | |
rgb(207, 101, 02, 20%) | #cf650233 | |
rgb(207, 101, 02, 40%) | #cf65024C | |
rgb(207, 101, 02, 60%) | #cf650299 | |
rgb(207, 101, 02, 80%) | #cf6502CC | |
rgb(207, 101, 02, 100%) | #cf6502FF |
Saturated and desaturated colors of #cf6502
HSL Code | Preview |
---|---|
hsl(29, 10%, 41%) | |
hsl(29, 20%, 41%) | |
hsl(29, 40%, 41%) | |
hsl(29, 60%, 41%) | |
hsl(29, 80%, 41%) | |
hsl(29, 100%, 41%) |
#cf6502 Color Usage In CSS
body { color: #cf6502; } p { color: rgb(207, 101, 02); } header { border-bottom:1px solid #cf6502; }