#363d12 Color
Color Codes | |
---|---|
Hex Code | #363d12 |
RGB Code | rgb(54, 61, 18) |
HSL Code | hsl(70, 54%, 15%) |
#363d12 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(54, 61, 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(70, 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 #363d12
RGB Code | Hex Code | Preview |
---|---|---|
rgb(54, 61, 18, 10%) | #363d121a | |
rgb(54, 61, 18, 20%) | #363d1233 | |
rgb(54, 61, 18, 40%) | #363d124C | |
rgb(54, 61, 18, 60%) | #363d1299 | |
rgb(54, 61, 18, 80%) | #363d12CC | |
rgb(54, 61, 18, 100%) | #363d12FF |
Saturated and desaturated colors of #363d12
HSL Code | Preview |
---|---|
hsl(70, 10%, 15%) | |
hsl(70, 20%, 15%) | |
hsl(70, 40%, 15%) | |
hsl(70, 60%, 15%) | |
hsl(70, 80%, 15%) | |
hsl(70, 100%, 15%) |
#363d12 Color Usage In CSS
body { color: #363d12; } p { color: rgb(54, 61, 18); } header { border-bottom:1px solid #363d12; }