#cf6800 Color
Color Codes | |
---|---|
Hex Code | #cf6800 |
RGB Code | rgb(207, 104, 00) |
HSL Code | hsl(30, 100%, 41%) |
#cf6800 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(207, 104, 00); }
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(30, 100%, 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 #cf6800
RGB Code | Hex Code | Preview |
---|---|---|
rgb(207, 104, 00, 10%) | #cf68001a | |
rgb(207, 104, 00, 20%) | #cf680033 | |
rgb(207, 104, 00, 40%) | #cf68004C | |
rgb(207, 104, 00, 60%) | #cf680099 | |
rgb(207, 104, 00, 80%) | #cf6800CC | |
rgb(207, 104, 00, 100%) | #cf6800FF |
Saturated and desaturated colors of #cf6800
HSL Code | Preview |
---|---|
hsl(30, 10%, 41%) | |
hsl(30, 20%, 41%) | |
hsl(30, 40%, 41%) | |
hsl(30, 60%, 41%) | |
hsl(30, 80%, 41%) | |
hsl(30, 100%, 41%) |
#cf6800 Color Usage In CSS
body { color: #cf6800; } p { color: rgb(207, 104, 00); } header { border-bottom:1px solid #cf6800; }