#908881 Color
Color Codes | |
---|---|
Hex Code | #908881 |
RGB Code | rgb(144, 136, 129) |
HSL Code | hsl(28, 6%, 54%) |
#908881 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(144, 136, 129); }
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(28, 6%, 54%); }
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 #908881
RGB Code | Hex Code | Preview |
---|---|---|
rgb(144, 136, 129, 10%) | #9088811a | |
rgb(144, 136, 129, 20%) | #90888133 | |
rgb(144, 136, 129, 40%) | #9088814C | |
rgb(144, 136, 129, 60%) | #90888199 | |
rgb(144, 136, 129, 80%) | #908881CC | |
rgb(144, 136, 129, 100%) | #908881FF |
Saturated and desaturated colors of #908881
HSL Code | Preview |
---|---|
hsl(28, 10%, 54%) | |
hsl(28, 20%, 54%) | |
hsl(28, 40%, 54%) | |
hsl(28, 60%, 54%) | |
hsl(28, 80%, 54%) | |
hsl(28, 100%, 54%) |
#908881 Color Usage In CSS
body { color: #908881; } p { color: rgb(144, 136, 129); } header { border-bottom:1px solid #908881; }