#735de2 Color
Color Codes | |
---|---|
Hex Code | #735de2 |
RGB Code | rgb(115, 93, 226) |
HSL Code | hsl(250, 70%, 63%) |
#735de2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(115, 93, 226); }
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(250, 70%, 63%); }
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 #735de2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(115, 93, 226, 10%) | #735de21a | |
rgb(115, 93, 226, 20%) | #735de233 | |
rgb(115, 93, 226, 40%) | #735de24C | |
rgb(115, 93, 226, 60%) | #735de299 | |
rgb(115, 93, 226, 80%) | #735de2CC | |
rgb(115, 93, 226, 100%) | #735de2FF |
Saturated and desaturated colors of #735de2
HSL Code | Preview |
---|---|
hsl(250, 10%, 63%) | |
hsl(250, 20%, 63%) | |
hsl(250, 40%, 63%) | |
hsl(250, 60%, 63%) | |
hsl(250, 80%, 63%) | |
hsl(250, 100%, 63%) |
#735de2 Color Usage In CSS
body { color: #735de2; } p { color: rgb(115, 93, 226); } header { border-bottom:1px solid #735de2; }