#673fb9 Color
Color Codes | |
---|---|
Hex Code | #673fb9 |
RGB Code | rgb(103, 63, 185) |
HSL Code | hsl(260, 49%, 49%) |
#673fb9 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(103, 63, 185); }
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(260, 49%, 49%); }
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 #673fb9
RGB Code | Hex Code | Preview |
---|---|---|
rgb(103, 63, 185, 10%) | #673fb91a | |
rgb(103, 63, 185, 20%) | #673fb933 | |
rgb(103, 63, 185, 40%) | #673fb94C | |
rgb(103, 63, 185, 60%) | #673fb999 | |
rgb(103, 63, 185, 80%) | #673fb9CC | |
rgb(103, 63, 185, 100%) | #673fb9FF |
Saturated and desaturated colors of #673fb9
HSL Code | Preview |
---|---|
hsl(260, 10%, 49%) | |
hsl(260, 20%, 49%) | |
hsl(260, 40%, 49%) | |
hsl(260, 60%, 49%) | |
hsl(260, 80%, 49%) | |
hsl(260, 100%, 49%) |
#673fb9 Color Usage In CSS
body { color: #673fb9; } p { color: rgb(103, 63, 185); } header { border-bottom:1px solid #673fb9; }