#e6a806 Color
Color Codes | |
---|---|
Hex Code | #e6a806 |
RGB Code | rgb(230, 168, 06) |
HSL Code | hsl(43, 95%, 46%) |
#e6a806 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(230, 168, 06); }
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(43, 95%, 46%); }
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 #e6a806
RGB Code | Hex Code | Preview |
---|---|---|
rgb(230, 168, 06, 10%) | #e6a8061a | |
rgb(230, 168, 06, 20%) | #e6a80633 | |
rgb(230, 168, 06, 40%) | #e6a8064C | |
rgb(230, 168, 06, 60%) | #e6a80699 | |
rgb(230, 168, 06, 80%) | #e6a806CC | |
rgb(230, 168, 06, 100%) | #e6a806FF |
Saturated and desaturated colors of #e6a806
HSL Code | Preview |
---|---|
hsl(43, 10%, 46%) | |
hsl(43, 20%, 46%) | |
hsl(43, 40%, 46%) | |
hsl(43, 60%, 46%) | |
hsl(43, 80%, 46%) | |
hsl(43, 100%, 46%) |
#e6a806 Color Usage In CSS
body { color: #e6a806; } p { color: rgb(230, 168, 06); } header { border-bottom:1px solid #e6a806; }