#89698b Color
Color Codes | |
---|---|
Hex Code | #89698b |
RGB Code | rgb(137, 105, 139) |
HSL Code | hsl(296, 14%, 48%) |
#89698b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(137, 105, 139); }
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(296, 14%, 48%); }
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 #89698b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(137, 105, 139, 10%) | #89698b1a | |
rgb(137, 105, 139, 20%) | #89698b33 | |
rgb(137, 105, 139, 40%) | #89698b4C | |
rgb(137, 105, 139, 60%) | #89698b99 | |
rgb(137, 105, 139, 80%) | #89698bCC | |
rgb(137, 105, 139, 100%) | #89698bFF |
Saturated and desaturated colors of #89698b
HSL Code | Preview |
---|---|
hsl(296, 10%, 48%) | |
hsl(296, 20%, 48%) | |
hsl(296, 40%, 48%) | |
hsl(296, 60%, 48%) | |
hsl(296, 80%, 48%) | |
hsl(296, 100%, 48%) |
#89698b Color Usage In CSS
body { color: #89698b; } p { color: rgb(137, 105, 139); } header { border-bottom:1px solid #89698b; }