#9598d0 Color
Color Codes | |
---|---|
Hex Code | #9598d0 |
RGB Code | rgb(149, 152, 208) |
HSL Code | hsl(237, 39%, 70%) |
#9598d0 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(149, 152, 208); }
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(237, 39%, 70%); }
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 #9598d0
RGB Code | Hex Code | Preview |
---|---|---|
rgb(149, 152, 208, 10%) | #9598d01a | |
rgb(149, 152, 208, 20%) | #9598d033 | |
rgb(149, 152, 208, 40%) | #9598d04C | |
rgb(149, 152, 208, 60%) | #9598d099 | |
rgb(149, 152, 208, 80%) | #9598d0CC | |
rgb(149, 152, 208, 100%) | #9598d0FF |
Saturated and desaturated colors of #9598d0
HSL Code | Preview |
---|---|
hsl(237, 10%, 70%) | |
hsl(237, 20%, 70%) | |
hsl(237, 40%, 70%) | |
hsl(237, 60%, 70%) | |
hsl(237, 80%, 70%) | |
hsl(237, 100%, 70%) |
#9598d0 Color Usage In CSS
body { color: #9598d0; } p { color: rgb(149, 152, 208); } header { border-bottom:1px solid #9598d0; }