#2e3c12 Color
Color Codes | |
---|---|
Hex Code | #2e3c12 |
RGB Code | rgb(46, 60, 18) |
HSL Code | hsl(80, 54%, 15%) |
#2e3c12 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(46, 60, 18); }
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(80, 54%, 15%); }
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 #2e3c12
RGB Code | Hex Code | Preview |
---|---|---|
rgb(46, 60, 18, 10%) | #2e3c121a | |
rgb(46, 60, 18, 20%) | #2e3c1233 | |
rgb(46, 60, 18, 40%) | #2e3c124C | |
rgb(46, 60, 18, 60%) | #2e3c1299 | |
rgb(46, 60, 18, 80%) | #2e3c12CC | |
rgb(46, 60, 18, 100%) | #2e3c12FF |
Saturated and desaturated colors of #2e3c12
HSL Code | Preview |
---|---|
hsl(80, 10%, 15%) | |
hsl(80, 20%, 15%) | |
hsl(80, 40%, 15%) | |
hsl(80, 60%, 15%) | |
hsl(80, 80%, 15%) | |
hsl(80, 100%, 15%) |
#2e3c12 Color Usage In CSS
body { color: #2e3c12; } p { color: rgb(46, 60, 18); } header { border-bottom:1px solid #2e3c12; }