#7369fb Color
Color Codes | |
---|---|
Hex Code | #7369fb |
RGB Code | rgb(115, 105, 251) |
HSL Code | hsl(244, 95%, 70%) |
#7369fb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(115, 105, 251); }
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(244, 95%, 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 #7369fb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(115, 105, 251, 10%) | #7369fb1a | |
rgb(115, 105, 251, 20%) | #7369fb33 | |
rgb(115, 105, 251, 40%) | #7369fb4C | |
rgb(115, 105, 251, 60%) | #7369fb99 | |
rgb(115, 105, 251, 80%) | #7369fbCC | |
rgb(115, 105, 251, 100%) | #7369fbFF |
Saturated and desaturated colors of #7369fb
HSL Code | Preview |
---|---|
hsl(244, 10%, 70%) | |
hsl(244, 20%, 70%) | |
hsl(244, 40%, 70%) | |
hsl(244, 60%, 70%) | |
hsl(244, 80%, 70%) | |
hsl(244, 100%, 70%) |
#7369fb Color Usage In CSS
body { color: #7369fb; } p { color: rgb(115, 105, 251); } header { border-bottom:1px solid #7369fb; }