#695484 Color
Color Codes | |
---|---|
Hex Code | #695484 |
RGB Code | rgb(105, 84, 132) |
HSL Code | hsl(266, 22%, 42%) |
#695484 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(105, 84, 132); }
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(266, 22%, 42%); }
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 #695484
RGB Code | Hex Code | Preview |
---|---|---|
rgb(105, 84, 132, 10%) | #6954841a | |
rgb(105, 84, 132, 20%) | #69548433 | |
rgb(105, 84, 132, 40%) | #6954844C | |
rgb(105, 84, 132, 60%) | #69548499 | |
rgb(105, 84, 132, 80%) | #695484CC | |
rgb(105, 84, 132, 100%) | #695484FF |
Saturated and desaturated colors of #695484
HSL Code | Preview |
---|---|
hsl(266, 10%, 42%) | |
hsl(266, 20%, 42%) | |
hsl(266, 40%, 42%) | |
hsl(266, 60%, 42%) | |
hsl(266, 80%, 42%) | |
hsl(266, 100%, 42%) |
#695484 Color Usage In CSS
body { color: #695484; } p { color: rgb(105, 84, 132); } header { border-bottom:1px solid #695484; }