#290d11 Color
Color Codes | |
---|---|
Hex Code | #290d11 |
RGB Code | rgb(41, 13, 17) |
HSL Code | hsl(351, 52%, 11%) |
#290d11 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(41, 13, 17); }
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(351, 52%, 11%); }
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 #290d11
RGB Code | Hex Code | Preview |
---|---|---|
rgb(41, 13, 17, 10%) | #290d111a | |
rgb(41, 13, 17, 20%) | #290d1133 | |
rgb(41, 13, 17, 40%) | #290d114C | |
rgb(41, 13, 17, 60%) | #290d1199 | |
rgb(41, 13, 17, 80%) | #290d11CC | |
rgb(41, 13, 17, 100%) | #290d11FF |
Saturated and desaturated colors of #290d11
HSL Code | Preview |
---|---|
hsl(351, 10%, 11%) | |
hsl(351, 20%, 11%) | |
hsl(351, 40%, 11%) | |
hsl(351, 60%, 11%) | |
hsl(351, 80%, 11%) | |
hsl(351, 100%, 11%) |
#290d11 Color Usage In CSS
body { color: #290d11; } p { color: rgb(41, 13, 17); } header { border-bottom:1px solid #290d11; }